diff options
author | Mike Marshall <hubcap@omnibond.com> | 2016-01-13 11:29:05 -0500 |
---|---|---|
committer | Mike Marshall <hubcap@omnibond.com> | 2016-01-13 11:29:05 -0500 |
commit | c817e266e408538290af06b95f07f6ee2b7d507a (patch) | |
tree | bcb473e6b5642133e6038e2b72df9b12d446dab9 /fs/orangefs/orangefs-cache.c | |
parent | b3ae4755f561cffd23192cd1fb9648649aa7405e (diff) |
Orangefs: rename orangefs_kernel_op_s.aio_ref_count to just ref_count.
The op structure's ref_count member hasn't got anything to do with
asynchronous I/O.
Signed-off-by: Mike Marshall <hubcap@omnibond.com>
Diffstat (limited to 'fs/orangefs/orangefs-cache.c')
-rw-r--r-- | fs/orangefs/orangefs-cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/orangefs/orangefs-cache.c b/fs/orangefs/orangefs-cache.c index b40f5d74aa97..dd4335ff8c10 100644 --- a/fs/orangefs/orangefs-cache.c +++ b/fs/orangefs/orangefs-cache.c @@ -120,7 +120,7 @@ struct orangefs_kernel_op_s *op_alloc(__s32 type) init_waitqueue_head(&new_op->waitq); init_waitqueue_head(&new_op->io_completion_waitq); - atomic_set(&new_op->aio_ref_count, 0); + atomic_set(&new_op->ref_count, 0); orangefs_op_initialize(new_op); |