NFSv4.1: Pin the inode and super block in asynchronous layoutcommit
authorTrond Myklebust <trond.myklebust@primarydata.com>
Thu, 5 Feb 2015 21:50:30 +0000 (16:50 -0500)
committerTrond Myklebust <trond.myklebust@primarydata.com>
Fri, 6 Feb 2015 03:16:33 +0000 (22:16 -0500)
If we're sending an asynchronous layoutcommit, then we need to ensure
that the inode and the super block remain pinned.

Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
Reviewed-by: Peng Tao <tao.peng@primarydata.com>
fs/nfs/nfs4proc.c
include/linux/nfs_xdr.h

index dd892a4e7eb307f353232c520637b0d711f7f97f..e092b8540e2e162b88b66c36c0e4e92668ea3cb8 100644 (file)
@@ -7989,6 +7989,7 @@ static void nfs4_layoutcommit_release(void *calldata)
        nfs_post_op_update_inode_force_wcc(data->args.inode,
                                           data->res.fattr);
        put_rpccred(data->cred);
+       nfs_iput_and_deactive(data->inode);
        kfree(data);
 }
 
@@ -8013,7 +8014,6 @@ nfs4_proc_layoutcommit(struct nfs4_layoutcommit_data *data, bool sync)
                .rpc_message = &msg,
                .callback_ops = &nfs4_layoutcommit_ops,
                .callback_data = data,
-               .flags = RPC_TASK_ASYNC,
        };
        struct rpc_task *task;
        int status = 0;
@@ -8024,18 +8024,21 @@ nfs4_proc_layoutcommit(struct nfs4_layoutcommit_data *data, bool sync)
                data->args.lastbytewritten,
                data->args.inode->i_ino);
 
+       if (!sync) {
+               data->inode = nfs_igrab_and_active(data->args.inode);
+               if (data->inode == NULL) {
+                       nfs4_layoutcommit_release(data);
+                       return -EAGAIN;
+               }
+               task_setup_data.flags = RPC_TASK_ASYNC;
+       }
        nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1);
        task = rpc_run_task(&task_setup_data);
        if (IS_ERR(task))
                return PTR_ERR(task);
-       if (sync == false)
-               goto out;
-       status = nfs4_wait_for_completion_rpc_task(task);
-       if (status != 0)
-               goto out;
-       status = task->tk_status;
+       if (sync)
+               status = task->tk_status;
        trace_nfs4_layoutcommit(data->args.inode, status);
-out:
        dprintk("%s: status %d\n", __func__, status);
        rpc_put_task(task);
        return status;
index 2c35e2affa6f0b5705acd729c3fb27f618568307..bb0d56f737e01b818fe87602d9f0ba0fb0da62de 100644 (file)
@@ -285,6 +285,7 @@ struct nfs4_layoutcommit_data {
        struct nfs_fattr fattr;
        struct list_head lseg_list;
        struct rpc_cred *cred;
+       struct inode *inode;
        struct nfs4_layoutcommit_args args;
        struct nfs4_layoutcommit_res res;
 };