Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
mariux64
/
linux
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
2
Pull requests
0
Actions
Projects
0
Wiki
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security
Insights
Files
f0dd7bf
Documentation
LICENSES
arch
block
certs
crypto
drivers
fs
include
init
ipc
kernel
lib
mm
net
6lowpan
802
8021q
9p
appletalk
atm
ax25
batman-adv
bluetooth
bpf
bpfilter
bridge
caif
can
ceph
core
dcb
dccp
decnet
dns_resolver
dsa
ethernet
ethtool
hsr
ieee802154
ife
ipv4
ipv6
iucv
kcm
key
l2tp
l3mdev
lapb
llc
mac80211
mac802154
mpls
mptcp
ncsi
netfilter
netlabel
netlink
netrom
nfc
nsh
openvswitch
packet
phonet
psample
qrtr
rds
rfkill
rose
rxrpc
sched
sctp
smc
Kconfig
Makefile
af_smc.c
smc.h
smc_cdc.c
smc_cdc.h
smc_clc.c
smc_clc.h
smc_close.c
smc_close.h
smc_core.c
smc_core.h
smc_diag.c
smc_ib.c
smc_ib.h
smc_ism.c
smc_ism.h
smc_llc.c
smc_llc.h
smc_netlink.c
smc_netlink.h
smc_netns.h
smc_pnet.c
smc_pnet.h
smc_rx.c
smc_rx.h
smc_stats.c
smc_stats.h
smc_tx.c
smc_tx.h
smc_wr.c
smc_wr.h
strparser
sunrpc
switchdev
tipc
tls
unix
vmw_vsock
wireless
x25
xdp
xfrm
Kconfig
Makefile
compat.c
devres.c
socket.c
sysctl_net.c
samples
scripts
security
sound
tools
usr
virt
.clang-format
.cocciconfig
.get_maintainer.ignore
.gitattributes
.gitignore
.mailmap
COPYING
CREDITS
Kbuild
Kconfig
MAINTAINERS
Makefile
README
Breadcrumbs
linux
/
net
/
smc
/
smc_stats.h
Blame
Blame
Latest commit
History
History
255 lines (223 loc) · 6.46 KB
Breadcrumbs
linux
/
net
/
smc
/
smc_stats.h
Top
File metadata and controls
Code
Blame
255 lines (223 loc) · 6.46 KB
Raw
/* SPDX-License-Identifier: GPL-2.0 */ /* * Shared Memory Communications over RDMA (SMC-R) and RoCE * * Macros for SMC statistics * * Copyright IBM Corp. 2021 * * Author(s): Guvenc Gulce */ #ifndef NET_SMC_SMC_STATS_H_ #define NET_SMC_SMC_STATS_H_ #include <linux/init.h> #include <linux/mutex.h> #include <linux/percpu.h> #include <linux/ctype.h> #include <linux/smc.h> #include "smc_clc.h" #define SMC_MAX_FBACK_RSN_CNT 30 extern struct smc_stats __percpu *smc_stats; /* per cpu counters for SMC */ extern struct smc_stats_reason fback_rsn; extern struct mutex smc_stat_fback_rsn; enum { SMC_BUF_8K, SMC_BUF_16K, SMC_BUF_32K, SMC_BUF_64K, SMC_BUF_128K, SMC_BUF_256K, SMC_BUF_512K, SMC_BUF_1024K, SMC_BUF_G_1024K, SMC_BUF_MAX, }; struct smc_stats_fback { int fback_code; u16 count; }; struct smc_stats_reason { struct smc_stats_fback srv[SMC_MAX_FBACK_RSN_CNT]; struct smc_stats_fback clnt[SMC_MAX_FBACK_RSN_CNT]; u64 srv_fback_cnt; u64 clnt_fback_cnt; }; struct smc_stats_rmbcnt { u64 buf_size_small_peer_cnt; u64 buf_size_small_cnt; u64 buf_full_peer_cnt; u64 buf_full_cnt; u64 reuse_cnt; u64 alloc_cnt; u64 dgrade_cnt; }; struct smc_stats_memsize { u64 buf[SMC_BUF_MAX]; }; struct smc_stats_tech { struct smc_stats_memsize tx_rmbsize; struct smc_stats_memsize rx_rmbsize; struct smc_stats_memsize tx_pd; struct smc_stats_memsize rx_pd; struct smc_stats_rmbcnt rmb_tx; struct smc_stats_rmbcnt rmb_rx; u64 clnt_v1_succ_cnt; u64 clnt_v2_succ_cnt; u64 srv_v1_succ_cnt; u64 srv_v2_succ_cnt; u64 sendpage_cnt; u64 urg_data_cnt; u64 splice_cnt; u64 cork_cnt; u64 ndly_cnt; u64 rx_bytes; u64 tx_bytes; u64 rx_cnt; u64 tx_cnt; }; struct smc_stats { struct smc_stats_tech smc[2]; u64 clnt_hshake_err_cnt; u64 srv_hshake_err_cnt; }; #define SMC_STAT_PAYLOAD_SUB(_tech, key, _len, _rc) \ do { \ typeof(_tech) t = (_tech); \ typeof(_len) l = (_len); \ int _pos = fls64((l) >> 13); \ typeof(_rc) r = (_rc); \ int m = SMC_BUF_MAX - 1; \ this_cpu_inc((*smc_stats).smc[t].key ## _cnt); \ if (r <= 0) \ break; \ _pos = (_pos < m) ? ((l == 1 << (_pos + 12)) ? _pos - 1 : _pos) : m; \ this_cpu_inc((*smc_stats).smc[t].key ## _pd.buf[_pos]); \ this_cpu_add((*smc_stats).smc[t].key ## _bytes, r); \ } \ while (0) #define SMC_STAT_TX_PAYLOAD(_smc, length, rcode) \ do { \ typeof(_smc) __smc = _smc; \ typeof(length) _len = (length); \ typeof(rcode) _rc = (rcode); \ bool is_smcd = !__smc->conn.lnk; \ if (is_smcd) \ SMC_STAT_PAYLOAD_SUB(SMC_TYPE_D, tx, _len, _rc); \ else \ SMC_STAT_PAYLOAD_SUB(SMC_TYPE_R, tx, _len, _rc); \ } \ while (0) #define SMC_STAT_RX_PAYLOAD(_smc, length, rcode) \ do { \ typeof(_smc) __smc = _smc; \ typeof(length) _len = (length); \ typeof(rcode) _rc = (rcode); \ bool is_smcd = !__smc->conn.lnk; \ if (is_smcd) \ SMC_STAT_PAYLOAD_SUB(SMC_TYPE_D, rx, _len, _rc); \ else \ SMC_STAT_PAYLOAD_SUB(SMC_TYPE_R, rx, _len, _rc); \ } \ while (0) #define SMC_STAT_RMB_SIZE_SUB(_tech, k, _len) \ do { \ typeof(_len) _l = (_len); \ typeof(_tech) t = (_tech); \ int _pos = fls((_l) >> 13); \ int m = SMC_BUF_MAX - 1; \ _pos = (_pos < m) ? ((_l == 1 << (_pos + 12)) ? _pos - 1 : _pos) : m; \ this_cpu_inc((*smc_stats).smc[t].k ## _rmbsize.buf[_pos]); \ } \ while (0) #define SMC_STAT_RMB_SUB(type, t, key) \ this_cpu_inc((*smc_stats).smc[t].rmb ## _ ## key.type ## _cnt) #define SMC_STAT_RMB_SIZE(_is_smcd, _is_rx, _len) \ do { \ typeof(_is_smcd) is_d = (_is_smcd); \ typeof(_is_rx) is_r = (_is_rx); \ typeof(_len) l = (_len); \ if ((is_d) && (is_r)) \ SMC_STAT_RMB_SIZE_SUB(SMC_TYPE_D, rx, l); \ if ((is_d) && !(is_r)) \ SMC_STAT_RMB_SIZE_SUB(SMC_TYPE_D, tx, l); \ if (!(is_d) && (is_r)) \ SMC_STAT_RMB_SIZE_SUB(SMC_TYPE_R, rx, l); \ if (!(is_d) && !(is_r)) \ SMC_STAT_RMB_SIZE_SUB(SMC_TYPE_R, tx, l); \ } \ while (0) #define SMC_STAT_RMB(type, _is_smcd, _is_rx) \ do { \ typeof(_is_smcd) is_d = (_is_smcd); \ typeof(_is_rx) is_r = (_is_rx); \ if ((is_d) && (is_r)) \ SMC_STAT_RMB_SUB(type, SMC_TYPE_D, rx); \ if ((is_d) && !(is_r)) \ SMC_STAT_RMB_SUB(type, SMC_TYPE_D, tx); \ if (!(is_d) && (is_r)) \ SMC_STAT_RMB_SUB(type, SMC_TYPE_R, rx); \ if (!(is_d) && !(is_r)) \ SMC_STAT_RMB_SUB(type, SMC_TYPE_R, tx); \ } \ while (0) #define SMC_STAT_BUF_REUSE(is_smcd, is_rx) \ SMC_STAT_RMB(reuse, is_smcd, is_rx) #define SMC_STAT_RMB_ALLOC(is_smcd, is_rx) \ SMC_STAT_RMB(alloc, is_smcd, is_rx) #define SMC_STAT_RMB_DOWNGRADED(is_smcd, is_rx) \ SMC_STAT_RMB(dgrade, is_smcd, is_rx) #define SMC_STAT_RMB_TX_PEER_FULL(is_smcd) \ SMC_STAT_RMB(buf_full_peer, is_smcd, false) #define SMC_STAT_RMB_TX_FULL(is_smcd) \ SMC_STAT_RMB(buf_full, is_smcd, false) #define SMC_STAT_RMB_TX_PEER_SIZE_SMALL(is_smcd) \ SMC_STAT_RMB(buf_size_small_peer, is_smcd, false) #define SMC_STAT_RMB_TX_SIZE_SMALL(is_smcd) \ SMC_STAT_RMB(buf_size_small, is_smcd, false) #define SMC_STAT_RMB_RX_SIZE_SMALL(is_smcd) \ SMC_STAT_RMB(buf_size_small, is_smcd, true) #define SMC_STAT_RMB_RX_FULL(is_smcd) \ SMC_STAT_RMB(buf_full, is_smcd, true) #define SMC_STAT_INC(is_smcd, type) \ do { \ if ((is_smcd)) \ this_cpu_inc(smc_stats->smc[SMC_TYPE_D].type); \ else \ this_cpu_inc(smc_stats->smc[SMC_TYPE_R].type); \ } \ while (0) #define SMC_STAT_CLNT_SUCC_INC(_aclc) \ do { \ typeof(_aclc) acl = (_aclc); \ bool is_v2 = (acl->hdr.version == SMC_V2); \ bool is_smcd = (acl->hdr.typev1 == SMC_TYPE_D); \ if (is_v2 && is_smcd) \ this_cpu_inc(smc_stats->smc[SMC_TYPE_D].clnt_v2_succ_cnt); \ else if (is_v2 && !is_smcd) \ this_cpu_inc(smc_stats->smc[SMC_TYPE_R].clnt_v2_succ_cnt); \ else if (!is_v2 && is_smcd) \ this_cpu_inc(smc_stats->smc[SMC_TYPE_D].clnt_v1_succ_cnt); \ else if (!is_v2 && !is_smcd) \ this_cpu_inc(smc_stats->smc[SMC_TYPE_R].clnt_v1_succ_cnt); \ } \ while (0) #define SMC_STAT_SERV_SUCC_INC(_ini) \ do { \ typeof(_ini) i = (_ini); \ bool is_v2 = (i->smcd_version & SMC_V2); \ bool is_smcd = (i->is_smcd); \ if (is_v2 && is_smcd) \ this_cpu_inc(smc_stats->smc[SMC_TYPE_D].srv_v2_succ_cnt); \ else if (is_v2 && !is_smcd) \ this_cpu_inc(smc_stats->smc[SMC_TYPE_R].srv_v2_succ_cnt); \ else if (!is_v2 && is_smcd) \ this_cpu_inc(smc_stats->smc[SMC_TYPE_D].srv_v1_succ_cnt); \ else if (!is_v2 && !is_smcd) \ this_cpu_inc(smc_stats->smc[SMC_TYPE_R].srv_v1_succ_cnt); \ } \ while (0) int smc_nl_get_stats(struct sk_buff *skb, struct netlink_callback *cb); int smc_nl_get_fback_stats(struct sk_buff *skb, struct netlink_callback *cb); int smc_stats_init(void) __init; void smc_stats_exit(void); #endif /* NET_SMC_SMC_STATS_H_ */
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
You can’t perform that action at this time.