]> Git Repo - linux.git/commitdiff
firewire: WQ_NON_REENTRANT is meaningless and going away
authorTejun Heo <[email protected]>
Tue, 30 Jul 2013 12:40:23 +0000 (08:40 -0400)
committerStefan Richter <[email protected]>
Tue, 30 Jul 2013 13:46:18 +0000 (15:46 +0200)
dbf2576e37 ("workqueue: make all workqueues non-reentrant") made
WQ_NON_REENTRANT no-op and the flag is going away.  Remove its usages.

This patch doesn't introduce any behavior changes.

Signed-off-by: Tejun Heo <[email protected]>
Signed-off-by: Stefan Richter <[email protected]>
drivers/firewire/core-transaction.c

index 28a94c7ec6e5bad3af57ed258e0615266ab7b135..e5af0e3a26ec9345a9a775e77ab76b78db94ba25 100644 (file)
@@ -1262,8 +1262,7 @@ static int __init fw_core_init(void)
 {
        int ret;
 
-       fw_workqueue = alloc_workqueue("firewire",
-                                      WQ_NON_REENTRANT | WQ_MEM_RECLAIM, 0);
+       fw_workqueue = alloc_workqueue("firewire", WQ_MEM_RECLAIM, 0);
        if (!fw_workqueue)
                return -ENOMEM;
 
This page took 0.055382 seconds and 4 git commands to generate.