diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2012-09-10 13:26:49 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2012-09-28 16:03:04 -0400 |
commit | 795a88c968eef031f370973512b42124bacb2f17 (patch) | |
tree | 4a75a204bea7b2ada2155038d7f8aa19d444fc2d | |
parent | 2a369153c82e0c83621b3e71d8f0c53394705bda (diff) |
NFSv4: Convert the nfs4_lock_state->ls_flags to a bit field
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
-rw-r--r-- | fs/nfs/nfs4_fs.h | 4 | ||||
-rw-r--r-- | fs/nfs/nfs4proc.c | 10 | ||||
-rw-r--r-- | fs/nfs/nfs4state.c | 8 |
3 files changed, 11 insertions, 11 deletions
diff --git a/fs/nfs/nfs4_fs.h b/fs/nfs/nfs4_fs.h index d95e25ec357..71d407fd00a 100644 --- a/fs/nfs/nfs4_fs.h +++ b/fs/nfs/nfs4_fs.h | |||
@@ -132,8 +132,8 @@ struct nfs4_lock_owner { | |||
132 | struct nfs4_lock_state { | 132 | struct nfs4_lock_state { |
133 | struct list_head ls_locks; /* Other lock stateids */ | 133 | struct list_head ls_locks; /* Other lock stateids */ |
134 | struct nfs4_state * ls_state; /* Pointer to open state */ | 134 | struct nfs4_state * ls_state; /* Pointer to open state */ |
135 | #define NFS_LOCK_INITIALIZED 1 | 135 | #define NFS_LOCK_INITIALIZED 0 |
136 | int ls_flags; | 136 | unsigned long ls_flags; |
137 | struct nfs_seqid_counter ls_seqid; | 137 | struct nfs_seqid_counter ls_seqid; |
138 | nfs4_stateid ls_stateid; | 138 | nfs4_stateid ls_stateid; |
139 | atomic_t ls_count; | 139 | atomic_t ls_count; |
diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c index f19ea4f0f0c..cf2fd5d0c1b 100644 --- a/fs/nfs/nfs4proc.c +++ b/fs/nfs/nfs4proc.c | |||
@@ -4395,7 +4395,7 @@ static void nfs4_locku_prepare(struct rpc_task *task, void *data) | |||
4395 | 4395 | ||
4396 | if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0) | 4396 | if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0) |
4397 | return; | 4397 | return; |
4398 | if ((calldata->lsp->ls_flags & NFS_LOCK_INITIALIZED) == 0) { | 4398 | if (test_bit(NFS_LOCK_INITIALIZED, &calldata->lsp->ls_flags) == 0) { |
4399 | /* Note: exit _without_ running nfs4_locku_done */ | 4399 | /* Note: exit _without_ running nfs4_locku_done */ |
4400 | task->tk_action = NULL; | 4400 | task->tk_action = NULL; |
4401 | return; | 4401 | return; |
@@ -4589,7 +4589,7 @@ static void nfs4_lock_done(struct rpc_task *task, void *calldata) | |||
4589 | } | 4589 | } |
4590 | if (data->rpc_status == 0) { | 4590 | if (data->rpc_status == 0) { |
4591 | nfs4_stateid_copy(&data->lsp->ls_stateid, &data->res.stateid); | 4591 | nfs4_stateid_copy(&data->lsp->ls_stateid, &data->res.stateid); |
4592 | data->lsp->ls_flags |= NFS_LOCK_INITIALIZED; | 4592 | set_bit(NFS_LOCK_INITIALIZED, &data->lsp->ls_flags); |
4593 | renew_lease(NFS_SERVER(data->ctx->dentry->d_inode), data->timestamp); | 4593 | renew_lease(NFS_SERVER(data->ctx->dentry->d_inode), data->timestamp); |
4594 | } | 4594 | } |
4595 | out: | 4595 | out: |
@@ -4636,7 +4636,7 @@ static void nfs4_handle_setlk_error(struct nfs_server *server, struct nfs4_lock_ | |||
4636 | case -NFS4ERR_BAD_STATEID: | 4636 | case -NFS4ERR_BAD_STATEID: |
4637 | lsp->ls_seqid.flags &= ~NFS_SEQID_CONFIRMED; | 4637 | lsp->ls_seqid.flags &= ~NFS_SEQID_CONFIRMED; |
4638 | if (new_lock_owner != 0 || | 4638 | if (new_lock_owner != 0 || |
4639 | (lsp->ls_flags & NFS_LOCK_INITIALIZED) != 0) | 4639 | test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags) != 0) |
4640 | nfs4_schedule_stateid_recovery(server, lsp->ls_state); | 4640 | nfs4_schedule_stateid_recovery(server, lsp->ls_state); |
4641 | break; | 4641 | break; |
4642 | case -NFS4ERR_STALE_STATEID: | 4642 | case -NFS4ERR_STALE_STATEID: |
@@ -4760,7 +4760,7 @@ static int nfs41_check_expired_locks(struct nfs4_state *state) | |||
4760 | struct nfs_server *server = NFS_SERVER(state->inode); | 4760 | struct nfs_server *server = NFS_SERVER(state->inode); |
4761 | 4761 | ||
4762 | list_for_each_entry(lsp, &state->lock_states, ls_locks) { | 4762 | list_for_each_entry(lsp, &state->lock_states, ls_locks) { |
4763 | if (lsp->ls_flags & NFS_LOCK_INITIALIZED) { | 4763 | if (test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags)) { |
4764 | status = nfs41_test_stateid(server, &lsp->ls_stateid); | 4764 | status = nfs41_test_stateid(server, &lsp->ls_stateid); |
4765 | if (status != NFS_OK) { | 4765 | if (status != NFS_OK) { |
4766 | /* Free the stateid unless the server | 4766 | /* Free the stateid unless the server |
@@ -4768,7 +4768,7 @@ static int nfs41_check_expired_locks(struct nfs4_state *state) | |||
4768 | if (status != -NFS4ERR_BAD_STATEID) | 4768 | if (status != -NFS4ERR_BAD_STATEID) |
4769 | nfs41_free_stateid(server, | 4769 | nfs41_free_stateid(server, |
4770 | &lsp->ls_stateid); | 4770 | &lsp->ls_stateid); |
4771 | lsp->ls_flags &= ~NFS_LOCK_INITIALIZED; | 4771 | clear_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags); |
4772 | ret = status; | 4772 | ret = status; |
4773 | } | 4773 | } |
4774 | } | 4774 | } |
diff --git a/fs/nfs/nfs4state.c b/fs/nfs/nfs4state.c index 03a4e7825f3..fc6cfe68ad1 100644 --- a/fs/nfs/nfs4state.c +++ b/fs/nfs/nfs4state.c | |||
@@ -865,7 +865,7 @@ void nfs4_put_lock_state(struct nfs4_lock_state *lsp) | |||
865 | if (list_empty(&state->lock_states)) | 865 | if (list_empty(&state->lock_states)) |
866 | clear_bit(LK_STATE_IN_USE, &state->flags); | 866 | clear_bit(LK_STATE_IN_USE, &state->flags); |
867 | spin_unlock(&state->state_lock); | 867 | spin_unlock(&state->state_lock); |
868 | if (lsp->ls_flags & NFS_LOCK_INITIALIZED) { | 868 | if (test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags)) { |
869 | if (nfs4_release_lockowner(lsp) == 0) | 869 | if (nfs4_release_lockowner(lsp) == 0) |
870 | return; | 870 | return; |
871 | } | 871 | } |
@@ -929,7 +929,7 @@ static bool nfs4_copy_lock_stateid(nfs4_stateid *dst, struct nfs4_state *state, | |||
929 | fl_pid = lockowner->l_pid; | 929 | fl_pid = lockowner->l_pid; |
930 | spin_lock(&state->state_lock); | 930 | spin_lock(&state->state_lock); |
931 | lsp = __nfs4_find_lock_state(state, fl_owner, fl_pid, NFS4_ANY_LOCK_TYPE); | 931 | lsp = __nfs4_find_lock_state(state, fl_owner, fl_pid, NFS4_ANY_LOCK_TYPE); |
932 | if (lsp != NULL && (lsp->ls_flags & NFS_LOCK_INITIALIZED) != 0) { | 932 | if (lsp != NULL && test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags) != 0) { |
933 | nfs4_stateid_copy(dst, &lsp->ls_stateid); | 933 | nfs4_stateid_copy(dst, &lsp->ls_stateid); |
934 | ret = true; | 934 | ret = true; |
935 | } | 935 | } |
@@ -1297,7 +1297,7 @@ restart: | |||
1297 | if (status >= 0) { | 1297 | if (status >= 0) { |
1298 | spin_lock(&state->state_lock); | 1298 | spin_lock(&state->state_lock); |
1299 | list_for_each_entry(lock, &state->lock_states, ls_locks) { | 1299 | list_for_each_entry(lock, &state->lock_states, ls_locks) { |
1300 | if (!(lock->ls_flags & NFS_LOCK_INITIALIZED)) | 1300 | if (!test_bit(NFS_LOCK_INITIALIZED, &lock->ls_flags)) |
1301 | pr_warn_ratelimited("NFS: " | 1301 | pr_warn_ratelimited("NFS: " |
1302 | "%s: Lock reclaim " | 1302 | "%s: Lock reclaim " |
1303 | "failed!\n", __func__); | 1303 | "failed!\n", __func__); |
@@ -1369,7 +1369,7 @@ static void nfs4_clear_open_state(struct nfs4_state *state) | |||
1369 | spin_lock(&state->state_lock); | 1369 | spin_lock(&state->state_lock); |
1370 | list_for_each_entry(lock, &state->lock_states, ls_locks) { | 1370 | list_for_each_entry(lock, &state->lock_states, ls_locks) { |
1371 | lock->ls_seqid.flags = 0; | 1371 | lock->ls_seqid.flags = 0; |
1372 | lock->ls_flags &= ~NFS_LOCK_INITIALIZED; | 1372 | clear_bit(NFS_LOCK_INITIALIZED, &lock->ls_flags); |
1373 | } | 1373 | } |
1374 | spin_unlock(&state->state_lock); | 1374 | spin_unlock(&state->state_lock); |
1375 | } | 1375 | } |