Re: [patch 01/12] hrtimer: Remove task argument from hrtimer_init_sleeper()

2019-07-26 Thread Thomas Gleixner
On Fri, 26 Jul 2019, Steven Rostedt wrote: > On Fri, 26 Jul 2019 20:30:49 +0200 > Thomas Gleixner wrote: > > > --- a/kernel/time/hrtimer.c > > +++ b/kernel/time/hrtimer.c > > @@ -1639,10 +1639,10 @@ static enum hrtimer_restart hrtimer_wake > > return HRTIMER_NORESTART; > > } > > > > Not

Re: [patch 01/12] hrtimer: Remove task argument from hrtimer_init_sleeper()

2019-07-26 Thread Steven Rostedt
On Fri, 26 Jul 2019 20:30:49 +0200 Thomas Gleixner wrote: > --- a/kernel/time/hrtimer.c > +++ b/kernel/time/hrtimer.c > @@ -1639,10 +1639,10 @@ static enum hrtimer_restart hrtimer_wake > return HRTIMER_NORESTART; > } > Not related to the change of this patch, but I'm surprised that a gl

[patch 01/12] hrtimer: Remove task argument from hrtimer_init_sleeper()

2019-07-26 Thread Thomas Gleixner
All callers hand in 'current' and that's the only task pointer which actually makes sense. Remove the task argument and set current in the function. Signed-off-by: Thomas Gleixner --- block/blk-mq.c |2 +- drivers/staging/android/vsoc.c |2 +- include/linux/hrtimer.h