diff options
author | Akshat Aranya <aranya@nec-labs.com> | 2011-01-14 11:00:47 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-01-14 12:23:36 -0500 |
commit | ba28b93a5227cc69ec811507f7d85ac25fa20fe2 (patch) | |
tree | 1ae3a8d6b19528277f5a622705b633a43f5218b8 /fs/fscache | |
parent | acda4721ae876dedab3fef04bbd8020bfa67ff0a (diff) |
FS-Cache: Fix operation handling
fscache_submit_exclusive_op() adds an operation to the pending list if
other operations are pending. Fix the check for pending ops as n_ops
must be greater than 0 at the point it is checked as it is incremented
immediately before under lock.
Signed-off-by: Akshat Aranya <aranya@nec-labs.com>
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/fscache')
-rw-r--r-- | fs/fscache/operation.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/fscache/operation.c b/fs/fscache/operation.c index b9f34eaede09..48a18f184d50 100644 --- a/fs/fscache/operation.c +++ b/fs/fscache/operation.c | |||
@@ -101,7 +101,7 @@ int fscache_submit_exclusive_op(struct fscache_object *object, | |||
101 | object->n_ops++; | 101 | object->n_ops++; |
102 | object->n_exclusive++; /* reads and writes must wait */ | 102 | object->n_exclusive++; /* reads and writes must wait */ |
103 | 103 | ||
104 | if (object->n_ops > 0) { | 104 | if (object->n_ops > 1) { |
105 | atomic_inc(&op->usage); | 105 | atomic_inc(&op->usage); |
106 | list_add_tail(&op->pend_link, &object->pending_ops); | 106 | list_add_tail(&op->pend_link, &object->pending_ops); |
107 | fscache_stat(&fscache_n_op_pend); | 107 | fscache_stat(&fscache_n_op_pend); |