Commit 6e5b587d authored by Andy Adamson's avatar Andy Adamson Committed by Trond Myklebust

NFSv4.1 handle OPEN O_CREATE mdsthreshold

Signed-off-by: default avatarAndy Adamson <andros@netapp.com>
Signed-off-by: default avatarTrond Myklebust <Trond.Myklebust@netapp.com>
parent e3074507
...@@ -2825,6 +2825,7 @@ nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr, ...@@ -2825,6 +2825,7 @@ nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
struct dentry *de = dentry; struct dentry *de = dentry;
struct nfs4_state *state; struct nfs4_state *state;
struct rpc_cred *cred = NULL; struct rpc_cred *cred = NULL;
struct nfs4_threshold **thp = NULL;
fmode_t fmode = 0; fmode_t fmode = 0;
int status = 0; int status = 0;
...@@ -2832,9 +2833,10 @@ nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr, ...@@ -2832,9 +2833,10 @@ nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
cred = ctx->cred; cred = ctx->cred;
de = ctx->dentry; de = ctx->dentry;
fmode = ctx->mode; fmode = ctx->mode;
thp = &ctx->mdsthreshold;
} }
sattr->ia_mode &= ~current_umask(); sattr->ia_mode &= ~current_umask();
state = nfs4_do_open(dir, de, fmode, flags, sattr, cred, NULL); state = nfs4_do_open(dir, de, fmode, flags, sattr, cred, thp);
d_drop(dentry); d_drop(dentry);
if (IS_ERR(state)) { if (IS_ERR(state)) {
status = PTR_ERR(state); status = PTR_ERR(state);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment