2024-06-15 16:02:09 -03:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
/*
|
|
|
|
* Statistics for NFS server.
|
|
|
|
*
|
|
|
|
* Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
|
|
|
|
*/
|
|
|
|
#ifndef _NFSD_STATS_H
|
|
|
|
#define _NFSD_STATS_H
|
|
|
|
|
|
|
|
#include <uapi/linux/nfsd/stats.h>
|
2021-01-06 09:52:35 +02:00
|
|
|
#include <linux/percpu_counter.h>
|
2024-06-15 16:02:09 -03:00
|
|
|
|
2024-11-24 00:23:43 +01:00
|
|
|
struct nfsd_stats {
|
|
|
|
atomic_t th_cnt; /* number of available threads */
|
|
|
|
};
|
|
|
|
|
|
|
|
extern struct nfsd_stats nfsdstats;
|
|
|
|
|
2024-11-24 00:23:43 +01:00
|
|
|
extern struct svc_stat nfsd_svcstats;
|
|
|
|
|
2024-09-05 11:30:50 -04:00
|
|
|
int nfsd_percpu_counters_init(struct percpu_counter *counters, int num);
|
|
|
|
void nfsd_percpu_counters_reset(struct percpu_counter *counters, int num);
|
|
|
|
void nfsd_percpu_counters_destroy(struct percpu_counter *counters, int num);
|
2024-09-05 11:30:59 -04:00
|
|
|
int nfsd_stat_counters_init(struct nfsd_net *nn);
|
|
|
|
void nfsd_stat_counters_destroy(struct nfsd_net *nn);
|
2024-09-05 11:30:58 -04:00
|
|
|
void nfsd_proc_stat_init(struct net *net);
|
|
|
|
void nfsd_proc_stat_shutdown(struct net *net);
|
2021-01-06 09:52:35 +02:00
|
|
|
|
2024-09-05 11:30:59 -04:00
|
|
|
static inline void nfsd_stats_rc_hits_inc(struct nfsd_net *nn)
|
2021-01-06 09:52:35 +02:00
|
|
|
{
|
2024-09-05 11:30:59 -04:00
|
|
|
percpu_counter_inc(&nn->counter[NFSD_STATS_RC_HITS]);
|
2021-01-06 09:52:35 +02:00
|
|
|
}
|
|
|
|
|
2024-09-05 11:30:59 -04:00
|
|
|
static inline void nfsd_stats_rc_misses_inc(struct nfsd_net *nn)
|
2021-01-06 09:52:35 +02:00
|
|
|
{
|
2024-09-05 11:30:59 -04:00
|
|
|
percpu_counter_inc(&nn->counter[NFSD_STATS_RC_MISSES]);
|
2021-01-06 09:52:35 +02:00
|
|
|
}
|
|
|
|
|
2024-09-05 11:30:59 -04:00
|
|
|
static inline void nfsd_stats_rc_nocache_inc(struct nfsd_net *nn)
|
2021-01-06 09:52:35 +02:00
|
|
|
{
|
2024-09-05 11:30:59 -04:00
|
|
|
percpu_counter_inc(&nn->counter[NFSD_STATS_RC_NOCACHE]);
|
2021-01-06 09:52:35 +02:00
|
|
|
}
|
|
|
|
|
2024-09-05 11:30:59 -04:00
|
|
|
static inline void nfsd_stats_fh_stale_inc(struct nfsd_net *nn,
|
|
|
|
struct svc_export *exp)
|
2021-01-06 09:52:35 +02:00
|
|
|
{
|
2024-09-05 11:30:59 -04:00
|
|
|
percpu_counter_inc(&nn->counter[NFSD_STATS_FH_STALE]);
|
2024-09-05 11:30:51 -04:00
|
|
|
if (exp && exp->ex_stats)
|
|
|
|
percpu_counter_inc(&exp->ex_stats->counter[EXP_STATS_FH_STALE]);
|
2021-01-06 09:52:35 +02:00
|
|
|
}
|
|
|
|
|
2024-09-05 11:30:59 -04:00
|
|
|
static inline void nfsd_stats_io_read_add(struct nfsd_net *nn,
|
|
|
|
struct svc_export *exp, s64 amount)
|
2021-01-06 09:52:35 +02:00
|
|
|
{
|
2024-09-05 11:30:59 -04:00
|
|
|
percpu_counter_add(&nn->counter[NFSD_STATS_IO_READ], amount);
|
2024-09-05 11:30:51 -04:00
|
|
|
if (exp && exp->ex_stats)
|
|
|
|
percpu_counter_add(&exp->ex_stats->counter[EXP_STATS_IO_READ], amount);
|
2021-01-06 09:52:35 +02:00
|
|
|
}
|
|
|
|
|
2024-09-05 11:30:59 -04:00
|
|
|
static inline void nfsd_stats_io_write_add(struct nfsd_net *nn,
|
|
|
|
struct svc_export *exp, s64 amount)
|
2021-01-06 09:52:35 +02:00
|
|
|
{
|
2024-09-05 11:30:59 -04:00
|
|
|
percpu_counter_add(&nn->counter[NFSD_STATS_IO_WRITE], amount);
|
2024-09-05 11:30:51 -04:00
|
|
|
if (exp && exp->ex_stats)
|
|
|
|
percpu_counter_add(&exp->ex_stats->counter[EXP_STATS_IO_WRITE], amount);
|
2021-01-06 09:52:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void nfsd_stats_payload_misses_inc(struct nfsd_net *nn)
|
|
|
|
{
|
2024-09-05 11:30:57 -04:00
|
|
|
percpu_counter_inc(&nn->counter[NFSD_STATS_PAYLOAD_MISSES]);
|
2021-01-06 09:52:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void nfsd_stats_drc_mem_usage_add(struct nfsd_net *nn, s64 amount)
|
|
|
|
{
|
2024-09-05 11:30:57 -04:00
|
|
|
percpu_counter_add(&nn->counter[NFSD_STATS_DRC_MEM_USAGE], amount);
|
2021-01-06 09:52:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void nfsd_stats_drc_mem_usage_sub(struct nfsd_net *nn, s64 amount)
|
|
|
|
{
|
2024-09-05 11:30:57 -04:00
|
|
|
percpu_counter_sub(&nn->counter[NFSD_STATS_DRC_MEM_USAGE], amount);
|
2021-01-06 09:52:35 +02:00
|
|
|
}
|
2024-06-15 16:02:09 -03:00
|
|
|
|
|
|
|
#endif /* _NFSD_STATS_H */
|