|
@@ -822,7 +822,7 @@ static struct nfs4_opendata *nfs4_opendata_alloc(struct dentry *dentry,
|
|
|
p->o_arg.open_flags = flags;
|
|
|
p->o_arg.fmode = fmode & (FMODE_READ|FMODE_WRITE);
|
|
|
p->o_arg.clientid = server->nfs_client->cl_clientid;
|
|
|
- p->o_arg.id = sp->so_owner_id;
|
|
|
+ p->o_arg.id = sp->so_seqid.owner_id;
|
|
|
p->o_arg.name = &dentry->d_name;
|
|
|
p->o_arg.server = server;
|
|
|
p->o_arg.bitmask = server->attr_bitmask;
|
|
@@ -1447,7 +1447,7 @@ static void nfs4_open_prepare(struct rpc_task *task, void *calldata)
|
|
|
rcu_read_unlock();
|
|
|
}
|
|
|
/* Update sequence id. */
|
|
|
- data->o_arg.id = sp->so_owner_id;
|
|
|
+ data->o_arg.id = sp->so_seqid.owner_id;
|
|
|
data->o_arg.clientid = sp->so_server->nfs_client->cl_clientid;
|
|
|
if (data->o_arg.claim == NFS4_OPEN_CLAIM_PREVIOUS) {
|
|
|
task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_NOATTR];
|
|
@@ -4032,7 +4032,7 @@ static int _nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock
|
|
|
if (status != 0)
|
|
|
goto out;
|
|
|
lsp = request->fl_u.nfs4_fl.owner;
|
|
|
- arg.lock_owner.id = lsp->ls_id;
|
|
|
+ arg.lock_owner.id = lsp->ls_seqid.owner_id;
|
|
|
arg.lock_owner.s_dev = server->s_dev;
|
|
|
status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
|
|
|
switch (status) {
|
|
@@ -4278,7 +4278,7 @@ static struct nfs4_lockdata *nfs4_alloc_lockdata(struct file_lock *fl,
|
|
|
goto out_free_seqid;
|
|
|
p->arg.lock_stateid = &lsp->ls_stateid;
|
|
|
p->arg.lock_owner.clientid = server->nfs_client->cl_clientid;
|
|
|
- p->arg.lock_owner.id = lsp->ls_id;
|
|
|
+ p->arg.lock_owner.id = lsp->ls_seqid.owner_id;
|
|
|
p->arg.lock_owner.s_dev = server->s_dev;
|
|
|
p->res.lock_seqid = p->arg.lock_seqid;
|
|
|
p->lsp = lsp;
|
|
@@ -4696,7 +4696,7 @@ void nfs4_release_lockowner(const struct nfs4_lock_state *lsp)
|
|
|
if (!args)
|
|
|
return;
|
|
|
args->lock_owner.clientid = server->nfs_client->cl_clientid;
|
|
|
- args->lock_owner.id = lsp->ls_id;
|
|
|
+ args->lock_owner.id = lsp->ls_seqid.owner_id;
|
|
|
args->lock_owner.s_dev = server->s_dev;
|
|
|
msg.rpc_argp = args;
|
|
|
rpc_call_async(server->client, &msg, 0, &nfs4_release_lockowner_ops, args);
|