NFSD: keep track of the number of v4 clients in the system
[ Upstream commit 0926c39515aa065a296e97dfc8790026f1e53f86 ] Add counter nfs4_client_count to keep track of the total number of v4 clients, including courtesy clients, in the system. Signed-off-by: Dai Ngo <dai.ngo@oracle.com> Signed-off-by: Chuck Lever <chuck.lever@oracle.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
90f61df124
commit
65c0a8306a
2 changed files with 10 additions and 2 deletions
fs/nfsd
|
@ -189,6 +189,8 @@ struct nfsd_net {
|
||||||
struct nfsd_fcache_disposal *fcache_disposal;
|
struct nfsd_fcache_disposal *fcache_disposal;
|
||||||
|
|
||||||
siphash_key_t siphash_key;
|
siphash_key_t siphash_key;
|
||||||
|
|
||||||
|
atomic_t nfs4_client_count;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Simple check to find out if a given net was properly initialized */
|
/* Simple check to find out if a given net was properly initialized */
|
||||||
|
|
|
@ -2066,7 +2066,8 @@ STALE_CLIENTID(clientid_t *clid, struct nfsd_net *nn)
|
||||||
* This type of memory management is somewhat inefficient, but we use it
|
* This type of memory management is somewhat inefficient, but we use it
|
||||||
* anyway since SETCLIENTID is not a common operation.
|
* anyway since SETCLIENTID is not a common operation.
|
||||||
*/
|
*/
|
||||||
static struct nfs4_client *alloc_client(struct xdr_netobj name)
|
static struct nfs4_client *alloc_client(struct xdr_netobj name,
|
||||||
|
struct nfsd_net *nn)
|
||||||
{
|
{
|
||||||
struct nfs4_client *clp;
|
struct nfs4_client *clp;
|
||||||
int i;
|
int i;
|
||||||
|
@ -2089,6 +2090,7 @@ static struct nfs4_client *alloc_client(struct xdr_netobj name)
|
||||||
atomic_set(&clp->cl_rpc_users, 0);
|
atomic_set(&clp->cl_rpc_users, 0);
|
||||||
clp->cl_cb_state = NFSD4_CB_UNKNOWN;
|
clp->cl_cb_state = NFSD4_CB_UNKNOWN;
|
||||||
clp->cl_state = NFSD4_ACTIVE;
|
clp->cl_state = NFSD4_ACTIVE;
|
||||||
|
atomic_inc(&nn->nfs4_client_count);
|
||||||
atomic_set(&clp->cl_delegs_in_recall, 0);
|
atomic_set(&clp->cl_delegs_in_recall, 0);
|
||||||
INIT_LIST_HEAD(&clp->cl_idhash);
|
INIT_LIST_HEAD(&clp->cl_idhash);
|
||||||
INIT_LIST_HEAD(&clp->cl_openowners);
|
INIT_LIST_HEAD(&clp->cl_openowners);
|
||||||
|
@ -2196,6 +2198,7 @@ static __be32 mark_client_expired_locked(struct nfs4_client *clp)
|
||||||
static void
|
static void
|
||||||
__destroy_client(struct nfs4_client *clp)
|
__destroy_client(struct nfs4_client *clp)
|
||||||
{
|
{
|
||||||
|
struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
|
||||||
int i;
|
int i;
|
||||||
struct nfs4_openowner *oo;
|
struct nfs4_openowner *oo;
|
||||||
struct nfs4_delegation *dp;
|
struct nfs4_delegation *dp;
|
||||||
|
@ -2239,6 +2242,7 @@ __destroy_client(struct nfs4_client *clp)
|
||||||
nfsd4_shutdown_callback(clp);
|
nfsd4_shutdown_callback(clp);
|
||||||
if (clp->cl_cb_conn.cb_xprt)
|
if (clp->cl_cb_conn.cb_xprt)
|
||||||
svc_xprt_put(clp->cl_cb_conn.cb_xprt);
|
svc_xprt_put(clp->cl_cb_conn.cb_xprt);
|
||||||
|
atomic_add_unless(&nn->nfs4_client_count, -1, 0);
|
||||||
free_client(clp);
|
free_client(clp);
|
||||||
wake_up_all(&expiry_wq);
|
wake_up_all(&expiry_wq);
|
||||||
}
|
}
|
||||||
|
@ -2865,7 +2869,7 @@ static struct nfs4_client *create_client(struct xdr_netobj name,
|
||||||
struct nfsd_net *nn = net_generic(net, nfsd_net_id);
|
struct nfsd_net *nn = net_generic(net, nfsd_net_id);
|
||||||
struct dentry *dentries[ARRAY_SIZE(client_files)];
|
struct dentry *dentries[ARRAY_SIZE(client_files)];
|
||||||
|
|
||||||
clp = alloc_client(name);
|
clp = alloc_client(name, nn);
|
||||||
if (clp == NULL)
|
if (clp == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
|
@ -4357,6 +4361,8 @@ void nfsd4_init_leases_net(struct nfsd_net *nn)
|
||||||
nn->clientid_base = prandom_u32();
|
nn->clientid_base = prandom_u32();
|
||||||
nn->clientid_counter = nn->clientid_base + 1;
|
nn->clientid_counter = nn->clientid_base + 1;
|
||||||
nn->s2s_cp_cl_id = nn->clientid_counter++;
|
nn->s2s_cp_cl_id = nn->clientid_counter++;
|
||||||
|
|
||||||
|
atomic_set(&nn->nfs4_client_count, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void init_nfs4_replay(struct nfs4_replay *rp)
|
static void init_nfs4_replay(struct nfs4_replay *rp)
|
||||||
|
|
Loading…
Add table
Reference in a new issue