Re: [PATCH] wait_event_freezekillable: usefreezer_do_not_count/freezer_count

From: Jeff Layton
Date: Thu Nov 03 2011 - 06:42:33 EST


On Wed, 2 Nov 2011 18:53:27 +0100
Oleg Nesterov <oleg@xxxxxxxxxx> wrote:

> fake_signal_wake_up() should not wake up the TASK_KILLABLE tasks,
> we are going to fix this. This means that wait_event_freezekillable()
> can't rely on wakeup from freezer. Reimplement it using
> freezer_do_not_count/freezer_count. This is not really nice, just
> a simple fix for now.
>
> Signed-off-by: Oleg Nesterov <oleg@xxxxxxxxxx>
> ---
>
> include/linux/freezer.h | 10 +++-------
> 1 file changed, 3 insertions(+), 7 deletions(-)
>
> --- a/include/linux/freezer.h
> +++ b/include/linux/freezer.h
> @@ -143,13 +143,9 @@ static inline void set_freezable_with_si
> #define wait_event_freezekillable(wq, condition) \
> ({ \
> int __retval; \
> - for (;;) { \
> - __retval = wait_event_killable(wq, \
> - (condition) || freezing(current)); \
> - if (__retval || (condition)) \
> - break; \
> - try_to_freeze(); \
> - } \
> + freezer_do_not_count(); \
> + __retval = wait_event_killable(wq, (condition)); \
> + freezer_count(); \
> __retval; \
> })
>
>

I'm not sure we really need this macro anymore since this is much
simpler. I could just move cifs back to using wait_event_killable and
simply wrap it in freezer_do_not_count/freezer_count (with some
comments to explain why we're doing that).

In any event, I plan to test this scheme out today and will let you
know whether it works...

Thanks,
--
Jeff Layton <jlayton@xxxxxxxxxx>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/