nfsd: remove unnecessary atomic ops
authorJ. Bruce Fields <bfields@citi.umich.edu>
Mon, 28 Apr 2008 22:22:50 +0000 (18:22 -0400)
committerJ. Bruce Fields <bfields@citi.umich.edu>
Sun, 18 May 2008 23:12:54 +0000 (19:12 -0400)
These bit operations don't need to be atomic.  They're all done under a
single big mutex anyway.

Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
fs/nfsd/nfs4state.c

index 8799b87..5c97d47 100644 (file)
@@ -1579,8 +1579,8 @@ nfs4_upgrade_open(struct svc_rqst *rqstp, struct svc_fh *cur_fh, struct nfs4_sta
        }
        /* remember the open */
        filp->f_mode |= open->op_share_access;
-       set_bit(open->op_share_access, &stp->st_access_bmap);
-       set_bit(open->op_share_deny, &stp->st_deny_bmap);
+       __set_bit(open->op_share_access, &stp->st_access_bmap);
+       __set_bit(open->op_share_deny, &stp->st_deny_bmap);
 
        return nfs_ok;
 }