Re: [PATCH] freezer: fix return value of freezable_schedule_timeout_killable

From: Rafael J. Wysocki
Date: Tue Dec 27 2011 - 16:50:16 EST


On Saturday, December 24, 2011, Jeff Layton wrote:
> ...it should return the return code from schedule_timeout_killable(),
> not the one from freezer_count().
>
> All of the current callers ignore the return code so the bug is
> harmless but it's worth fixing.
>
> Signed-off-by: Jeff Layton <jlayton@xxxxxxxxxx>

Applied to linux-pm/pm-freezer, will be pushed for 3.3.

Thanks,
Rafael


> ---
> include/linux/freezer.h | 4 +++-
> 1 files changed, 3 insertions(+), 1 deletions(-)
>
> diff --git a/include/linux/freezer.h b/include/linux/freezer.h
> index 30f06c2..96b5b59 100644
> --- a/include/linux/freezer.h
> +++ b/include/linux/freezer.h
> @@ -122,9 +122,11 @@ static inline int freezer_should_skip(struct task_struct *p)
> /* Like schedule_timeout_killable(), but should not block the freezer. */
> #define freezable_schedule_timeout_killable(timeout) \
> ({ \
> + long __retval; \
> freezer_do_not_count(); \
> - schedule_timeout_killable(timeout); \
> + __retval = schedule_timeout_killable(timeout); \
> freezer_count(); \
> + __retval; \
> })
>
> /*
>

--
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/