aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nfs/nfs4proc.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/nfs/nfs4proc.c')
-rw-r--r--fs/nfs/nfs4proc.c19
1 files changed, 17 insertions, 2 deletions
diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c
index 5c917c975432..4818a38f469b 100644
--- a/fs/nfs/nfs4proc.c
+++ b/fs/nfs/nfs4proc.c
@@ -6143,7 +6143,9 @@ static const struct nfs41_state_protection nfs4_sp4_mach_cred_request = {
6143 [0] = 1 << (OP_CLOSE) | 6143 [0] = 1 << (OP_CLOSE) |
6144 1 << (OP_LOCKU), 6144 1 << (OP_LOCKU),
6145 [1] = 1 << (OP_SECINFO - 32) | 6145 [1] = 1 << (OP_SECINFO - 32) |
6146 1 << (OP_SECINFO_NO_NAME - 32) 6146 1 << (OP_SECINFO_NO_NAME - 32) |
6147 1 << (OP_TEST_STATEID - 32) |
6148 1 << (OP_FREE_STATEID - 32)
6147 } 6149 }
6148}; 6150};
6149 6151
@@ -6215,6 +6217,12 @@ static int nfs4_sp4_select_mode(struct nfs_client *clp,
6215 dfprintk(MOUNT, " secinfo mode enabled\n"); 6217 dfprintk(MOUNT, " secinfo mode enabled\n");
6216 set_bit(NFS_SP4_MACH_CRED_SECINFO, &clp->cl_sp4_flags); 6218 set_bit(NFS_SP4_MACH_CRED_SECINFO, &clp->cl_sp4_flags);
6217 } 6219 }
6220
6221 if (test_bit(OP_TEST_STATEID, sp->allow.u.longs) &&
6222 test_bit(OP_FREE_STATEID, sp->allow.u.longs)) {
6223 dfprintk(MOUNT, " stateid mode enabled\n");
6224 set_bit(NFS_SP4_MACH_CRED_STATEID, &clp->cl_sp4_flags);
6225 }
6218 } 6226 }
6219 6227
6220 return 0; 6228 return 0;
@@ -7547,11 +7555,15 @@ static int _nfs41_test_stateid(struct nfs_server *server,
7547 .rpc_resp = &res, 7555 .rpc_resp = &res,
7548 .rpc_cred = cred, 7556 .rpc_cred = cred,
7549 }; 7557 };
7558 struct rpc_clnt *rpc_client = server->client;
7559
7560 nfs4_state_protect(server->nfs_client, NFS_SP4_MACH_CRED_STATEID,
7561 &rpc_client, &msg);
7550 7562
7551 dprintk("NFS call test_stateid %p\n", stateid); 7563 dprintk("NFS call test_stateid %p\n", stateid);
7552 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0); 7564 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0);
7553 nfs4_set_sequence_privileged(&args.seq_args); 7565 nfs4_set_sequence_privileged(&args.seq_args);
7554 status = nfs4_call_sync_sequence(server->client, server, &msg, 7566 status = nfs4_call_sync_sequence(rpc_client, server, &msg,
7555 &args.seq_args, &res.seq_res); 7567 &args.seq_args, &res.seq_res);
7556 if (status != NFS_OK) { 7568 if (status != NFS_OK) {
7557 dprintk("NFS reply test_stateid: failed, %d\n", status); 7569 dprintk("NFS reply test_stateid: failed, %d\n", status);
@@ -7643,6 +7655,9 @@ static struct rpc_task *_nfs41_free_stateid(struct nfs_server *server,
7643 }; 7655 };
7644 struct nfs_free_stateid_data *data; 7656 struct nfs_free_stateid_data *data;
7645 7657
7658 nfs4_state_protect(server->nfs_client, NFS_SP4_MACH_CRED_STATEID,
7659 &task_setup.rpc_client, &msg);
7660
7646 dprintk("NFS call free_stateid %p\n", stateid); 7661 dprintk("NFS call free_stateid %p\n", stateid);
7647 data = kmalloc(sizeof(*data), GFP_NOFS); 7662 data = kmalloc(sizeof(*data), GFP_NOFS);
7648 if (!data) 7663 if (!data)