SLOW_WORK: Fix CIFS to pass THIS_MODULE to slow_work_register_user()
authorDavid Howells <dhowells@redhat.com>
Fri, 20 Nov 2009 21:50:36 +0000 (21:50 +0000)
committerDavid Howells <dhowells@redhat.com>
Fri, 20 Nov 2009 21:50:36 +0000 (21:50 +0000)
commit0109d7e614e016a842569628116f54847a177f6e
treeb94b11990d7a17b4232293bb866299042c948fd2
parent14e69647c868459bcb910f771851ca7c699efd21
SLOW_WORK: Fix CIFS to pass THIS_MODULE to slow_work_register_user()

As of the patch:

SLOW_WORK: Wait for outstanding work items belonging to a module to clear

Wait for outstanding slow work items belonging to a module to clear
when unregistering that module as a user of the facility.  This
prevents the put_ref code of a work item from being taken away before
it returns.

slow_work_register_user() takes a module pointer as an argument.  CIFS must now
pass THIS_MODULE as that argument, lest the following error be observed:

fs/cifs/cifsfs.c: In function 'init_cifs':
fs/cifs/cifsfs.c:1040: error: too few arguments to function 'slow_work_register_user'

Signed-off-by: David Howells <dhowells@redhat.com>
fs/cifs/cifsfs.c