aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nfs
diff options
context:
space:
mode:
authorBenny Halevy <bhalevy@panasas.com>2009-06-18 22:01:23 -0400
committerTrond Myklebust <Trond.Myklebust@netapp.com>2009-06-20 14:55:12 -0400
commit578e4585685410cacd1a4ac86b7e3c12805be918 (patch)
tree57e2a3730e19a6332ad54e6570768f964b781e58 /fs/nfs
parent1f84603c0940d5bed17f7e4d2e0b2a4b8b8f1b81 (diff)
nfs41: Move initialization of nfs4_opendata seq_res to nfs4_init_opendata_res
nfs4_open_recover_helper clears opendata->o_res before calling nfs4_init_opendata_res, thus causing NFSv4.0 OPEN operations to be sent rather than nfsv4.1. Signed-off-by: Benny Halevy <bhalevy@panasas.com> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs')
-rw-r--r--fs/nfs/nfs4proc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c
index 7a750f061c26..92ce43517814 100644
--- a/fs/nfs/nfs4proc.c
+++ b/fs/nfs/nfs4proc.c
@@ -680,6 +680,7 @@ static void nfs4_init_opendata_res(struct nfs4_opendata *p)
680 p->o_res.server = p->o_arg.server; 680 p->o_res.server = p->o_arg.server;
681 nfs_fattr_init(&p->f_attr); 681 nfs_fattr_init(&p->f_attr);
682 nfs_fattr_init(&p->dir_attr); 682 nfs_fattr_init(&p->dir_attr);
683 p->o_res.seq_res.sr_slotid = NFS4_MAX_SLOT_TABLE;
683} 684}
684 685
685static struct nfs4_opendata *nfs4_opendata_alloc(struct path *path, 686static struct nfs4_opendata *nfs4_opendata_alloc(struct path *path,
@@ -711,7 +712,6 @@ static struct nfs4_opendata *nfs4_opendata_alloc(struct path *path,
711 p->o_arg.server = server; 712 p->o_arg.server = server;
712 p->o_arg.bitmask = server->attr_bitmask; 713 p->o_arg.bitmask = server->attr_bitmask;
713 p->o_arg.claim = NFS4_OPEN_CLAIM_NULL; 714 p->o_arg.claim = NFS4_OPEN_CLAIM_NULL;
714 p->o_res.seq_res.sr_slotid = NFS4_MAX_SLOT_TABLE;
715 if (flags & O_EXCL) { 715 if (flags & O_EXCL) {
716 u32 *s = (u32 *) p->o_arg.u.verifier.data; 716 u32 *s = (u32 *) p->o_arg.u.verifier.data;
717 s[0] = jiffies; 717 s[0] = jiffies;