mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-20 19:23:57 +08:00
NFSv4.1: Allow parallel OPEN/OPEN_DOWNGRADE/CLOSE
Remove the serialisation of OPEN/OPEN_DOWNGRADE and CLOSE calls for the case of NFSv4.1 and newer. Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
This commit is contained in:
parent
a67964197c
commit
63f5f796af
@ -44,6 +44,7 @@ enum nfs4_client_state {
|
|||||||
#define NFS4_RENEW_TIMEOUT 0x01
|
#define NFS4_RENEW_TIMEOUT 0x01
|
||||||
#define NFS4_RENEW_DELEGATION_CB 0x02
|
#define NFS4_RENEW_DELEGATION_CB 0x02
|
||||||
|
|
||||||
|
struct nfs_seqid_counter;
|
||||||
struct nfs4_minor_version_ops {
|
struct nfs4_minor_version_ops {
|
||||||
u32 minor_version;
|
u32 minor_version;
|
||||||
unsigned init_caps;
|
unsigned init_caps;
|
||||||
@ -56,6 +57,8 @@ struct nfs4_minor_version_ops {
|
|||||||
struct nfs_fsinfo *);
|
struct nfs_fsinfo *);
|
||||||
void (*free_lock_state)(struct nfs_server *,
|
void (*free_lock_state)(struct nfs_server *,
|
||||||
struct nfs4_lock_state *);
|
struct nfs4_lock_state *);
|
||||||
|
struct nfs_seqid *
|
||||||
|
(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t);
|
||||||
const struct rpc_call_ops *call_sync_ops;
|
const struct rpc_call_ops *call_sync_ops;
|
||||||
const struct nfs4_state_recovery_ops *reboot_recovery_ops;
|
const struct nfs4_state_recovery_ops *reboot_recovery_ops;
|
||||||
const struct nfs4_state_recovery_ops *nograce_recovery_ops;
|
const struct nfs4_state_recovery_ops *nograce_recovery_ops;
|
||||||
|
@ -977,6 +977,7 @@ static struct nfs4_opendata *nfs4_opendata_alloc(struct dentry *dentry,
|
|||||||
struct dentry *parent = dget_parent(dentry);
|
struct dentry *parent = dget_parent(dentry);
|
||||||
struct inode *dir = parent->d_inode;
|
struct inode *dir = parent->d_inode;
|
||||||
struct nfs_server *server = NFS_SERVER(dir);
|
struct nfs_server *server = NFS_SERVER(dir);
|
||||||
|
struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t);
|
||||||
struct nfs4_opendata *p;
|
struct nfs4_opendata *p;
|
||||||
|
|
||||||
p = kzalloc(sizeof(*p), gfp_mask);
|
p = kzalloc(sizeof(*p), gfp_mask);
|
||||||
@ -987,7 +988,8 @@ static struct nfs4_opendata *nfs4_opendata_alloc(struct dentry *dentry,
|
|||||||
if (IS_ERR(p->f_label))
|
if (IS_ERR(p->f_label))
|
||||||
goto err_free_p;
|
goto err_free_p;
|
||||||
|
|
||||||
p->o_arg.seqid = nfs_alloc_seqid(&sp->so_seqid, gfp_mask);
|
alloc_seqid = server->nfs_client->cl_mvops->alloc_seqid;
|
||||||
|
p->o_arg.seqid = alloc_seqid(&sp->so_seqid, gfp_mask);
|
||||||
if (IS_ERR(p->o_arg.seqid))
|
if (IS_ERR(p->o_arg.seqid))
|
||||||
goto err_free_label;
|
goto err_free_label;
|
||||||
nfs_sb_active(dentry->d_sb);
|
nfs_sb_active(dentry->d_sb);
|
||||||
@ -2751,6 +2753,7 @@ static bool nfs4_roc(struct inode *inode)
|
|||||||
int nfs4_do_close(struct nfs4_state *state, gfp_t gfp_mask, int wait)
|
int nfs4_do_close(struct nfs4_state *state, gfp_t gfp_mask, int wait)
|
||||||
{
|
{
|
||||||
struct nfs_server *server = NFS_SERVER(state->inode);
|
struct nfs_server *server = NFS_SERVER(state->inode);
|
||||||
|
struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t);
|
||||||
struct nfs4_closedata *calldata;
|
struct nfs4_closedata *calldata;
|
||||||
struct nfs4_state_owner *sp = state->owner;
|
struct nfs4_state_owner *sp = state->owner;
|
||||||
struct rpc_task *task;
|
struct rpc_task *task;
|
||||||
@ -2778,7 +2781,8 @@ int nfs4_do_close(struct nfs4_state *state, gfp_t gfp_mask, int wait)
|
|||||||
calldata->state = state;
|
calldata->state = state;
|
||||||
calldata->arg.fh = NFS_FH(state->inode);
|
calldata->arg.fh = NFS_FH(state->inode);
|
||||||
/* Serialization for the sequence id */
|
/* Serialization for the sequence id */
|
||||||
calldata->arg.seqid = nfs_alloc_seqid(&state->owner->so_seqid, gfp_mask);
|
alloc_seqid = server->nfs_client->cl_mvops->alloc_seqid;
|
||||||
|
calldata->arg.seqid = alloc_seqid(&state->owner->so_seqid, gfp_mask);
|
||||||
if (IS_ERR(calldata->arg.seqid))
|
if (IS_ERR(calldata->arg.seqid))
|
||||||
goto out_free_calldata;
|
goto out_free_calldata;
|
||||||
calldata->arg.fmode = 0;
|
calldata->arg.fmode = 0;
|
||||||
@ -8414,6 +8418,7 @@ static const struct nfs4_minor_version_ops nfs_v4_0_minor_ops = {
|
|||||||
.match_stateid = nfs4_match_stateid,
|
.match_stateid = nfs4_match_stateid,
|
||||||
.find_root_sec = nfs4_find_root_sec,
|
.find_root_sec = nfs4_find_root_sec,
|
||||||
.free_lock_state = nfs4_release_lockowner,
|
.free_lock_state = nfs4_release_lockowner,
|
||||||
|
.alloc_seqid = nfs_alloc_seqid,
|
||||||
.call_sync_ops = &nfs40_call_sync_ops,
|
.call_sync_ops = &nfs40_call_sync_ops,
|
||||||
.reboot_recovery_ops = &nfs40_reboot_recovery_ops,
|
.reboot_recovery_ops = &nfs40_reboot_recovery_ops,
|
||||||
.nograce_recovery_ops = &nfs40_nograce_recovery_ops,
|
.nograce_recovery_ops = &nfs40_nograce_recovery_ops,
|
||||||
@ -8422,6 +8427,12 @@ static const struct nfs4_minor_version_ops nfs_v4_0_minor_ops = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
#if defined(CONFIG_NFS_V4_1)
|
#if defined(CONFIG_NFS_V4_1)
|
||||||
|
static struct nfs_seqid *
|
||||||
|
nfs_alloc_no_seqid(struct nfs_seqid_counter *arg1, gfp_t arg2)
|
||||||
|
{
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
static const struct nfs4_minor_version_ops nfs_v4_1_minor_ops = {
|
static const struct nfs4_minor_version_ops nfs_v4_1_minor_ops = {
|
||||||
.minor_version = 1,
|
.minor_version = 1,
|
||||||
.init_caps = NFS_CAP_READDIRPLUS
|
.init_caps = NFS_CAP_READDIRPLUS
|
||||||
@ -8435,6 +8446,7 @@ static const struct nfs4_minor_version_ops nfs_v4_1_minor_ops = {
|
|||||||
.match_stateid = nfs41_match_stateid,
|
.match_stateid = nfs41_match_stateid,
|
||||||
.find_root_sec = nfs41_find_root_sec,
|
.find_root_sec = nfs41_find_root_sec,
|
||||||
.free_lock_state = nfs41_free_lock_state,
|
.free_lock_state = nfs41_free_lock_state,
|
||||||
|
.alloc_seqid = nfs_alloc_no_seqid,
|
||||||
.call_sync_ops = &nfs41_call_sync_ops,
|
.call_sync_ops = &nfs41_call_sync_ops,
|
||||||
.reboot_recovery_ops = &nfs41_reboot_recovery_ops,
|
.reboot_recovery_ops = &nfs41_reboot_recovery_ops,
|
||||||
.nograce_recovery_ops = &nfs41_nograce_recovery_ops,
|
.nograce_recovery_ops = &nfs41_nograce_recovery_ops,
|
||||||
@ -8461,6 +8473,7 @@ static const struct nfs4_minor_version_ops nfs_v4_2_minor_ops = {
|
|||||||
.find_root_sec = nfs41_find_root_sec,
|
.find_root_sec = nfs41_find_root_sec,
|
||||||
.free_lock_state = nfs41_free_lock_state,
|
.free_lock_state = nfs41_free_lock_state,
|
||||||
.call_sync_ops = &nfs41_call_sync_ops,
|
.call_sync_ops = &nfs41_call_sync_ops,
|
||||||
|
.alloc_seqid = nfs_alloc_no_seqid,
|
||||||
.reboot_recovery_ops = &nfs41_reboot_recovery_ops,
|
.reboot_recovery_ops = &nfs41_reboot_recovery_ops,
|
||||||
.nograce_recovery_ops = &nfs41_nograce_recovery_ops,
|
.nograce_recovery_ops = &nfs41_nograce_recovery_ops,
|
||||||
.state_renewal_ops = &nfs41_state_renewal_ops,
|
.state_renewal_ops = &nfs41_state_renewal_ops,
|
||||||
|
Loading…
Reference in New Issue
Block a user