It makes sense to call cond_resched() in freezable kthreads. But there is the chicken&egg problem whether to call try_to_freeze() before or after the schedule. This patch adds freezable_cond_resched(). It uses the same trick as freezable_schedule(). It tells the freezer that it might ignore the sleeping process. Note that it might be used only on locations where the freezing is safe. It means that no lock is taken and we are ready to sleep for a very long time. Signed-off-by: Petr Mladek <pmladek@xxxxxxx> --- include/linux/freezer.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/include/linux/freezer.h b/include/linux/freezer.h index 6b7fd9cf5ea2..1446f210dfc6 100644 --- a/include/linux/freezer.h +++ b/include/linux/freezer.h @@ -172,6 +172,14 @@ static inline void freezable_schedule(void) freezer_count(); } +/* Like cond_resched(), but should not block the freezer. */ +static inline void freezable_cond_resched(void) +{ + freezer_do_not_count(); + cond_resched(); + freezer_count(); +} + /* DO NOT ADD ANY NEW CALLERS OF THIS FUNCTION */ static inline void freezable_schedule_unsafe(void) { -- 1.8.5.6 -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html