Skip to content

Commit

Permalink
firewire: WQ_NON_REENTRANT is meaningless and going away
Browse files Browse the repository at this point in the history
dbf2576 ("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 <tj@kernel.org>
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
  • Loading branch information
Tejun Heo authored and Stefan Richter committed Jul 30, 2013
1 parent 0699a73 commit 4e6b931
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions drivers/firewire/core-transaction.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 4e6b931

Please sign in to comment.