All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net-next 0/4] net/smc: Add SMC statistic support
@ 2021-06-07 18:20 Karsten Graul
  2021-06-07 18:20 ` [PATCH net-next 1/4] net/smc: Add SMC statistics support Karsten Graul
                   ` (4 more replies)
  0 siblings, 5 replies; 8+ messages in thread
From: Karsten Graul @ 2021-06-07 18:20 UTC (permalink / raw)
  To: David Miller, Jakub Kicinski
  Cc: Heiko Carstens, Stefan Raspl, netdev, linux-s390

Please apply the following patch series for smc to netdev's net-next tree.

The patchset adds statistic support to the SMC protocol. Per-cpu
variables are used to collect the statistic information for better
performance and for reducing concurrency pitfalls. The code that is
collecting statistic data is implemented in macros to increase code
reuse and readability.
The generic netlink mechanism in SMC is extended to provide the
collected statistics to userspace.
Network namespace awareness is also part of the statistics
implementation.

Guvenc Gulce (4):
  net/smc: Add SMC statistics support
  net/smc: Add netlink support for SMC statistics
  net/smc: Add netlink support for SMC fallback statistics
  net/smc: Make SMC statistics network namespace aware

 include/net/net_namespace.h |   4 +
 include/net/netns/smc.h     |  16 ++
 include/uapi/linux/smc.h    |  83 ++++++++
 net/smc/Makefile            |   2 +-
 net/smc/af_smc.c            | 102 +++++++--
 net/smc/smc_core.c          |  13 +-
 net/smc/smc_netlink.c       |  11 +
 net/smc/smc_netlink.h       |   2 +-
 net/smc/smc_rx.c            |   8 +
 net/smc/smc_stats.c         | 413 ++++++++++++++++++++++++++++++++++++
 net/smc/smc_stats.h         | 266 +++++++++++++++++++++++
 net/smc/smc_tx.c            |  18 +-
 12 files changed, 917 insertions(+), 21 deletions(-)
 create mode 100644 include/net/netns/smc.h
 create mode 100644 net/smc/smc_stats.c
 create mode 100644 net/smc/smc_stats.h

-- 
2.25.1


^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2021-06-11  9:28 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-07 18:20 [PATCH net-next 0/4] net/smc: Add SMC statistic support Karsten Graul
2021-06-07 18:20 ` [PATCH net-next 1/4] net/smc: Add SMC statistics support Karsten Graul
2021-06-07 18:20 ` [PATCH net-next 2/4] net/smc: Add netlink support for SMC statistics Karsten Graul
2021-06-07 18:20 ` [PATCH net-next 3/4] net/smc: Add netlink support for SMC fallback statistics Karsten Graul
2021-06-07 18:20 ` [PATCH net-next 4/4] net/smc: Make SMC statistics network namespace aware Karsten Graul
2021-06-07 20:33 ` [PATCH net-next 0/4] net/smc: Add SMC statistic support David Miller
2021-06-08  8:59   ` Guvenc Gulce
2021-06-11  9:28     ` Karsten Graul

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.