mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-14 15:54:15 +08:00
Merge branch 'for-4.16-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq
Pull workqueue fixes from Tejun Heo: "Two low-impact workqueue commits. One fixes workqueue creation error path and the other removes the unused cancel_work()" * 'for-4.16-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq: workqueue: remove unused cancel_work() workqueue: use put_device() instead of kfree()
This commit is contained in:
commit
c6256ca9c0
@ -456,7 +456,6 @@ extern int schedule_on_each_cpu(work_func_t func);
|
|||||||
int execute_in_process_context(work_func_t fn, struct execute_work *);
|
int execute_in_process_context(work_func_t fn, struct execute_work *);
|
||||||
|
|
||||||
extern bool flush_work(struct work_struct *work);
|
extern bool flush_work(struct work_struct *work);
|
||||||
extern bool cancel_work(struct work_struct *work);
|
|
||||||
extern bool cancel_work_sync(struct work_struct *work);
|
extern bool cancel_work_sync(struct work_struct *work);
|
||||||
|
|
||||||
extern bool flush_delayed_work(struct delayed_work *dwork);
|
extern bool flush_delayed_work(struct delayed_work *dwork);
|
||||||
|
@ -3018,14 +3018,6 @@ static bool __cancel_work(struct work_struct *work, bool is_dwork)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* See cancel_delayed_work()
|
|
||||||
*/
|
|
||||||
bool cancel_work(struct work_struct *work)
|
|
||||||
{
|
|
||||||
return __cancel_work(work, false);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* cancel_delayed_work - cancel a delayed work
|
* cancel_delayed_work - cancel a delayed work
|
||||||
* @dwork: delayed_work to cancel
|
* @dwork: delayed_work to cancel
|
||||||
@ -5337,7 +5329,7 @@ int workqueue_sysfs_register(struct workqueue_struct *wq)
|
|||||||
|
|
||||||
ret = device_register(&wq_dev->dev);
|
ret = device_register(&wq_dev->dev);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
kfree(wq_dev);
|
put_device(&wq_dev->dev);
|
||||||
wq->wq_dev = NULL;
|
wq->wq_dev = NULL;
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user