]> git.kernelconcepts.de Git - karo-tx-linux.git/blobdiff - fs/nfs/nfs4state.c
Merge branch 'master' into devel and apply fixup from Stephen Rothwell:
[karo-tx-linux.git] / fs / nfs / nfs4state.c
index 5d744a52b4e1748dcf7d26a0d7be91143011d795..72ab97ef3d617fdee9d2f538908dcac245f42093 100644 (file)
@@ -641,7 +641,7 @@ void nfs4_put_open_state(struct nfs4_state *state)
 /*
  * Close the current file.
  */
-static void __nfs4_close(struct path *path, struct nfs4_state *state,
+static void __nfs4_close(struct nfs4_state *state,
                fmode_t fmode, gfp_t gfp_mask, int wait)
 {
        struct nfs4_state_owner *owner = state->owner;
@@ -685,18 +685,18 @@ static void __nfs4_close(struct path *path, struct nfs4_state *state,
        } else {
                bool roc = pnfs_roc(state->inode);
 
-               nfs4_do_close(path, state, gfp_mask, wait, roc);
+               nfs4_do_close(state, gfp_mask, wait, roc);
        }
 }
 
-void nfs4_close_state(struct path *path, struct nfs4_state *state, fmode_t fmode)
+void nfs4_close_state(struct nfs4_state *state, fmode_t fmode)
 {
-       __nfs4_close(path, state, fmode, GFP_NOFS, 0);
+       __nfs4_close(state, fmode, GFP_NOFS, 0);
 }
 
-void nfs4_close_sync(struct path *path, struct nfs4_state *state, fmode_t fmode)
+void nfs4_close_sync(struct nfs4_state *state, fmode_t fmode)
 {
-       __nfs4_close(path, state, fmode, GFP_KERNEL, 1);
+       __nfs4_close(state, fmode, GFP_KERNEL, 1);
 }
 
 /*