workqueue: make deferrable delayed_work initializer names consistent
Initalizers for deferrable delayed_work are confused. * __DEFERRED_WORK_INITIALIZER() * DECLARE_DEFERRED_WORK() * INIT_DELAYED_WORK_DEFERRABLE() Rename them to * __DEFERRABLE_WORK_INITIALIZER() * DECLARE_DEFERRABLE_WORK() * INIT_DEFERRABLE_WORK() This patch doesn't cause any functional changes. Signed-off-by: Tejun Heo <tj@kernel.org>
This commit is contained in:
parent
ee64e7f697
commit
203b42f731
18 changed files with 31 additions and 31 deletions
|
@ -1635,7 +1635,7 @@ static int create_cache_proc_entries(struct cache_detail *cd, struct net *net)
|
|||
|
||||
void __init cache_initialize(void)
|
||||
{
|
||||
INIT_DELAYED_WORK_DEFERRABLE(&cache_cleaner, do_cache_clean);
|
||||
INIT_DEFERRABLE_WORK(&cache_cleaner, do_cache_clean);
|
||||
}
|
||||
|
||||
int cache_register_net(struct cache_detail *cd, struct net *net)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue