summaryrefslogtreecommitdiff
path: root/fs/smb/server/stats.h
blob: b60c30c6907708e7bbe306008b169126842d06ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
 *   Copyright (C) 2025, LG Electronics.
 *   Author(s): Hyunchul Lee <hyc.lee@gmail.com>
 *   Copyright (C) 2025, Samsung Electronics.
 *   Author(s): Vedansh Bhardwaj <v.bhardwaj@samsung.com>
 */

#ifndef __KSMBD_STATS_H__
#define __KSMBD_STATS_H__

#define KSMBD_COUNTER_MAX_REQS	19

enum {
	KSMBD_COUNTER_SESSIONS = 0,
	KSMBD_COUNTER_TREE_CONNS,
	KSMBD_COUNTER_REQUESTS,
	KSMBD_COUNTER_READ_BYTES,
	KSMBD_COUNTER_WRITE_BYTES,
	KSMBD_COUNTER_FIRST_REQ,
	KSMBD_COUNTER_LAST_REQ = KSMBD_COUNTER_FIRST_REQ +
				KSMBD_COUNTER_MAX_REQS - 1,
	KSMBD_COUNTER_MAX,
};

#ifdef CONFIG_PROC_FS
extern struct ksmbd_counters ksmbd_counters;

struct ksmbd_counters {
	struct percpu_counter	counters[KSMBD_COUNTER_MAX];
};

static inline void ksmbd_counter_inc(int type)
{
	percpu_counter_inc(&ksmbd_counters.counters[type]);
}

static inline void ksmbd_counter_dec(int type)
{
	percpu_counter_dec(&ksmbd_counters.counters[type]);
}

static inline void ksmbd_counter_add(int type, s64 value)
{
	percpu_counter_add(&ksmbd_counters.counters[type], value);
}

static inline void ksmbd_counter_sub(int type, s64 value)
{
	percpu_counter_sub(&ksmbd_counters.counters[type], value);
}

static inline void ksmbd_counter_inc_reqs(unsigned int cmd)
{
	if (cmd < KSMBD_COUNTER_MAX_REQS)
		percpu_counter_inc(&ksmbd_counters.counters[KSMBD_COUNTER_FIRST_REQ + cmd]);
}

static inline s64 ksmbd_counter_sum(int type)
{
	return percpu_counter_sum_positive(&ksmbd_counters.counters[type]);
}
#else

static inline void ksmbd_counter_inc(int type) {}
static inline void ksmbd_counter_dec(int type) {}
static inline void ksmbd_counter_add(int type, s64 value) {}
static inline void ksmbd_counter_sub(int type, s64 value) {}
static inline void ksmbd_counter_inc_reqs(unsigned int cmd) {}
static inline s64 ksmbd_counter_sum(int type) { return 0; }
#endif

#endif