diff options
author | David Howells <dhowells@redhat.com> | 2009-11-19 13:10:23 -0500 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2009-11-19 13:10:23 -0500 |
commit | 3d7a641e544e428191667e8b1f83f96fa46dbd65 (patch) | |
tree | 172aa672eca96b94f5531885b82abb82b43c7d8a /fs/fscache/operation.c | |
parent | 66b00a7c93ec782d118d2c03bd599cfd041e80a1 (diff) |
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.
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'fs/fscache/operation.c')
-rw-r--r-- | fs/fscache/operation.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/fscache/operation.c b/fs/fscache/operation.c index e7f8d53b8b6b..f1a2857b2ff5 100644 --- a/fs/fscache/operation.c +++ b/fs/fscache/operation.c | |||
@@ -453,6 +453,7 @@ static void fscache_op_execute(struct slow_work *work) | |||
453 | } | 453 | } |
454 | 454 | ||
455 | const struct slow_work_ops fscache_op_slow_work_ops = { | 455 | const struct slow_work_ops fscache_op_slow_work_ops = { |
456 | .owner = THIS_MODULE, | ||
456 | .get_ref = fscache_op_get_ref, | 457 | .get_ref = fscache_op_get_ref, |
457 | .put_ref = fscache_op_put_ref, | 458 | .put_ref = fscache_op_put_ref, |
458 | .execute = fscache_op_execute, | 459 | .execute = fscache_op_execute, |