From: David Howells Date: Mon, 13 Nov 2017 15:36:33 +0000 (+0000) Subject: Merge remote-tracking branch 'tip/timers/core' into afs-next X-Git-Tag: v4.19~2168^2~35 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=81445e63e67a1e98b1c2575fa2b406d4289d2754;p=platform%2Fkernel%2Flinux-rpi.git Merge remote-tracking branch 'tip/timers/core' into afs-next These AFS patches need the timer_reduce() patch from timers/core. Signed-off-by: David Howells --- 81445e63e67a1e98b1c2575fa2b406d4289d2754 diff --cc kernel/workqueue.c index a2dccfe,6e5eed58..3b67c0a --- a/kernel/workqueue.c +++ b/kernel/workqueue.c @@@ -3236,12 -3241,11 +3235,10 @@@ static int init_worker_pool(struct work INIT_LIST_HEAD(&pool->idle_list); hash_init(pool->busy_hash); - setup_deferrable_timer(&pool->idle_timer, idle_worker_timeout, - (unsigned long)pool); + timer_setup(&pool->idle_timer, idle_worker_timeout, TIMER_DEFERRABLE); - setup_timer(&pool->mayday_timer, pool_mayday_timeout, - (unsigned long)pool); + timer_setup(&pool->mayday_timer, pool_mayday_timeout, 0); - mutex_init(&pool->manager_arb); mutex_init(&pool->attach_mutex); INIT_LIST_HEAD(&pool->workers);