Re: [PATCH] sched/wait: introduce wait_event_freezable_hrtimeout

From: Greg Kroah-Hartman
Date: Fri Jan 18 2019 - 02:18:01 EST


On Thu, Jan 17, 2019 at 11:41:35PM +0100, Hugo Lefeuvre wrote:
> introduce wait_event_freezable_hrtimeout, an interruptible and freezable
> version of wait_event_hrtimeout.
>
> simplify handle_vsoc_cond_wait (drivers/staging/android/vsoc.c) using this
> newly added helper and remove useless includes.
>
> Signed-off-by: Hugo Lefeuvre <hle@xxxxxxxxxx>
> ---
> drivers/staging/android/vsoc.c | 69 +++++-----------------------------
> include/linux/wait.h | 25 ++++++++++--

code in drivers/staging/ should be self-contained, and not, if at all
possible, ever force additional changes on "core" kernel code.

Are you sure that the vsoc code can't use one of the current wait
macros? Why is it so special and unique that no one else in the kernel
has ever needed this before it came along?

thanks,

greg k-h