firewire: don't use PREPARE_DELAYED_WORK
authorTejun Heo <tj@kernel.org>
Fri, 7 Mar 2014 15:19:57 +0000 (10:19 -0500)
committerJiri Slaby <jslaby@suse.cz>
Sat, 22 Mar 2014 21:01:56 +0000 (22:01 +0100)
commit0f72d5c490bc4e5b84829cce251266d485663cb6
tree48d72b2f1f847d946fff289be274d73941d8363d
parentb51610cdf9dc5b4e0cc09d7f239afc2d44ffd419
firewire: don't use PREPARE_DELAYED_WORK

commit 70044d71d31d6973665ced5be04ef39ac1c09a48 upstream.

PREPARE_[DELAYED_]WORK() are being phased out.  They have few users
and a nasty surprise in terms of reentrancy guarantee as workqueue
considers work items to be different if they don't have the same work
function.

firewire core-device and sbp2 have been been multiplexing work items
with multiple work functions.  Introduce fw_device_workfn() and
sbp2_lu_workfn() which invoke fw_device->workfn and
sbp2_logical_unit->workfn respectively and always use the two
functions as the work functions and update the users to set the
->workfn fields instead of overriding work functions using
PREPARE_DELAYED_WORK().

This fixes a variety of possible regressions since a2c1c57be8d9
"workqueue: consider work function when searching for busy work items"
due to which fw_workqueue lost its required non-reentrancy property.

Signed-off-by: Tejun Heo <tj@kernel.org>
Acked-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Cc: linux1394-devel@lists.sourceforge.net
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
drivers/firewire/core-device.c
drivers/firewire/sbp2.c
include/linux/firewire.h