mirror of https://gitee.com/openkylin/linux.git
workqueue: remove deprecated WQ_NON_REENTRANT
Tejun Heo has made WQ_NON_REENTRANT useless in the dbf2576e37
("workqueue: make all workqueues non-reentrant"). So remove its
usages and definition.
This patch doesn't introduce any behavior changes.
tj: minor description updates.
Signed-off-by: ZhangZhen <zhenzhang.zhang@huawei.com>
Sigend-off-by: Tejun Heo <tj@kernel.org>
Acked-by: James Chapman <jchapman@katalix.com>
Acked-by: Ulf Hansson <ulf.hansson@linaro.org>
This commit is contained in:
parent
41f50094b2
commit
59ff3eb6d6
|
@ -2607,7 +2607,7 @@ int dw_mci_probe(struct dw_mci *host)
|
||||||
|
|
||||||
tasklet_init(&host->tasklet, dw_mci_tasklet_func, (unsigned long)host);
|
tasklet_init(&host->tasklet, dw_mci_tasklet_func, (unsigned long)host);
|
||||||
host->card_workqueue = alloc_workqueue("dw-mci-card",
|
host->card_workqueue = alloc_workqueue("dw-mci-card",
|
||||||
WQ_MEM_RECLAIM | WQ_NON_REENTRANT, 1);
|
WQ_MEM_RECLAIM, 1);
|
||||||
if (!host->card_workqueue) {
|
if (!host->card_workqueue) {
|
||||||
ret = -ENOMEM;
|
ret = -ENOMEM;
|
||||||
goto err_dmaunmap;
|
goto err_dmaunmap;
|
||||||
|
|
|
@ -284,12 +284,6 @@ static inline unsigned int work_static(struct work_struct *work) { return 0; }
|
||||||
* Documentation/workqueue.txt.
|
* Documentation/workqueue.txt.
|
||||||
*/
|
*/
|
||||||
enum {
|
enum {
|
||||||
/*
|
|
||||||
* All wqs are now non-reentrant making the following flag
|
|
||||||
* meaningless. Will be removed.
|
|
||||||
*/
|
|
||||||
WQ_NON_REENTRANT = 1 << 0, /* DEPRECATED */
|
|
||||||
|
|
||||||
WQ_UNBOUND = 1 << 1, /* not bound to any cpu */
|
WQ_UNBOUND = 1 << 1, /* not bound to any cpu */
|
||||||
WQ_FREEZABLE = 1 << 2, /* freeze during suspend */
|
WQ_FREEZABLE = 1 << 2, /* freeze during suspend */
|
||||||
WQ_MEM_RECLAIM = 1 << 3, /* may be used for memory reclaim */
|
WQ_MEM_RECLAIM = 1 << 3, /* may be used for memory reclaim */
|
||||||
|
|
|
@ -2016,7 +2016,7 @@ static int __init l2tp_init(void)
|
||||||
if (rc)
|
if (rc)
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
l2tp_wq = alloc_workqueue("l2tp", WQ_NON_REENTRANT | WQ_UNBOUND, 0);
|
l2tp_wq = alloc_workqueue("l2tp", WQ_UNBOUND, 0);
|
||||||
if (!l2tp_wq) {
|
if (!l2tp_wq) {
|
||||||
pr_err("alloc_workqueue failed\n");
|
pr_err("alloc_workqueue failed\n");
|
||||||
rc = -ENOMEM;
|
rc = -ENOMEM;
|
||||||
|
|
Loading…
Reference in New Issue