]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
nfs: fix inverted test for delegation in nfs4_reclaim_open_state
authorJeff Layton <jlayton@redhat.com>
Thu, 31 Oct 2013 17:03:04 +0000 (13:03 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 29 Nov 2013 19:28:03 +0000 (11:28 -0800)
commit 1acd1c301f4faae80f4d2c7bbd9a4553b131c0e3 upstream.

commit 6686390bab6a0e0 (NFS: remove incorrect "Lock reclaim failed!"
warning.) added a test for a delegation before checking to see if any
reclaimed locks failed. The test however is backward and is only doing
that check when a delegation is held instead of when one isn't.

Cc: NeilBrown <neilb@suse.de>
Signed-off-by: Jeff Layton <jlayton@redhat.com>
Fixes: 6686390bab6a: NFS: remove incorrect "Lock reclaim failed!" warning.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/nfs/nfs4state.c

index cc14cbb78b7322637ae74f6ad013c9183e7a996a..09448e6367a341aab6077a27aa05014d029c1af2 100644 (file)
@@ -1422,7 +1422,7 @@ restart:
                if (status >= 0) {
                        status = nfs4_reclaim_locks(state, ops);
                        if (status >= 0) {
-                               if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0) {
+                               if (!test_bit(NFS_DELEGATED_STATE, &state->flags)) {
                                        spin_lock(&state->state_lock);
                                        list_for_each_entry(lock, &state->lock_states, ls_locks) {
                                                if (!test_bit(NFS_LOCK_INITIALIZED, &lock->ls_flags))