2023-03-15 23:03:50 +00:00
|
|
|
/* SPDX-License-Identifier: ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) */
|
netdev-genl: create a simple family for netdev stuff
Add a Netlink spec-compatible family for netdevs.
This is a very simple implementation without much
thought going into it.
It allows us to reap all the benefits of Netlink specs,
one can use the generic client to issue the commands:
$ ./cli.py --spec netdev.yaml --dump dev_get
[{'ifindex': 1, 'xdp-features': set()},
{'ifindex': 2, 'xdp-features': {'basic', 'ndo-xmit', 'redirect'}},
{'ifindex': 3, 'xdp-features': {'rx-sg'}}]
the generic python library does not have flags-by-name
support, yet, but we also don't have to carry strings
in the messages, as user space can get the names from
the spec.
Acked-by: Jesper Dangaard Brouer <brouer@redhat.com>
Co-developed-by: Lorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
Co-developed-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Signed-off-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Co-developed-by: Marek Majtyka <alardam@gmail.com>
Signed-off-by: Marek Majtyka <alardam@gmail.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Link: https://lore.kernel.org/r/327ad9c9868becbe1e601b580c962549c8cd81f2.1675245258.git.lorenzo@kernel.org
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2023-02-01 10:24:17 +00:00
|
|
|
/* Do not edit directly, auto-generated from: */
|
|
|
|
/* Documentation/netlink/specs/netdev.yaml */
|
|
|
|
/* YNL-GEN uapi header */
|
|
|
|
|
|
|
|
#ifndef _UAPI_LINUX_NETDEV_H
|
|
|
|
#define _UAPI_LINUX_NETDEV_H
|
|
|
|
|
|
|
|
#define NETDEV_FAMILY_NAME "netdev"
|
|
|
|
#define NETDEV_FAMILY_VERSION 1
|
|
|
|
|
|
|
|
/**
|
|
|
|
* enum netdev_xdp_act
|
2023-07-27 16:30:00 +00:00
|
|
|
* @NETDEV_XDP_ACT_BASIC: XDP features set supported by all drivers
|
netdev-genl: create a simple family for netdev stuff
Add a Netlink spec-compatible family for netdevs.
This is a very simple implementation without much
thought going into it.
It allows us to reap all the benefits of Netlink specs,
one can use the generic client to issue the commands:
$ ./cli.py --spec netdev.yaml --dump dev_get
[{'ifindex': 1, 'xdp-features': set()},
{'ifindex': 2, 'xdp-features': {'basic', 'ndo-xmit', 'redirect'}},
{'ifindex': 3, 'xdp-features': {'rx-sg'}}]
the generic python library does not have flags-by-name
support, yet, but we also don't have to carry strings
in the messages, as user space can get the names from
the spec.
Acked-by: Jesper Dangaard Brouer <brouer@redhat.com>
Co-developed-by: Lorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
Co-developed-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Signed-off-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Co-developed-by: Marek Majtyka <alardam@gmail.com>
Signed-off-by: Marek Majtyka <alardam@gmail.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Link: https://lore.kernel.org/r/327ad9c9868becbe1e601b580c962549c8cd81f2.1675245258.git.lorenzo@kernel.org
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2023-02-01 10:24:17 +00:00
|
|
|
* (XDP_ABORTED, XDP_DROP, XDP_PASS, XDP_TX)
|
|
|
|
* @NETDEV_XDP_ACT_REDIRECT: The netdev supports XDP_REDIRECT
|
|
|
|
* @NETDEV_XDP_ACT_NDO_XMIT: This feature informs if netdev implements
|
|
|
|
* ndo_xdp_xmit callback.
|
|
|
|
* @NETDEV_XDP_ACT_XSK_ZEROCOPY: This feature informs if netdev supports AF_XDP
|
|
|
|
* in zero copy mode.
|
|
|
|
* @NETDEV_XDP_ACT_HW_OFFLOAD: This feature informs if netdev supports XDP hw
|
2023-02-23 07:26:56 +00:00
|
|
|
* offloading.
|
netdev-genl: create a simple family for netdev stuff
Add a Netlink spec-compatible family for netdevs.
This is a very simple implementation without much
thought going into it.
It allows us to reap all the benefits of Netlink specs,
one can use the generic client to issue the commands:
$ ./cli.py --spec netdev.yaml --dump dev_get
[{'ifindex': 1, 'xdp-features': set()},
{'ifindex': 2, 'xdp-features': {'basic', 'ndo-xmit', 'redirect'}},
{'ifindex': 3, 'xdp-features': {'rx-sg'}}]
the generic python library does not have flags-by-name
support, yet, but we also don't have to carry strings
in the messages, as user space can get the names from
the spec.
Acked-by: Jesper Dangaard Brouer <brouer@redhat.com>
Co-developed-by: Lorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
Co-developed-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Signed-off-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Co-developed-by: Marek Majtyka <alardam@gmail.com>
Signed-off-by: Marek Majtyka <alardam@gmail.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Link: https://lore.kernel.org/r/327ad9c9868becbe1e601b580c962549c8cd81f2.1675245258.git.lorenzo@kernel.org
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2023-02-01 10:24:17 +00:00
|
|
|
* @NETDEV_XDP_ACT_RX_SG: This feature informs if netdev implements non-linear
|
|
|
|
* XDP buffer support in the driver napi callback.
|
|
|
|
* @NETDEV_XDP_ACT_NDO_XMIT_SG: This feature informs if netdev implements
|
|
|
|
* non-linear XDP buffer support in ndo_xdp_xmit callback.
|
|
|
|
*/
|
|
|
|
enum netdev_xdp_act {
|
|
|
|
NETDEV_XDP_ACT_BASIC = 1,
|
|
|
|
NETDEV_XDP_ACT_REDIRECT = 2,
|
|
|
|
NETDEV_XDP_ACT_NDO_XMIT = 4,
|
|
|
|
NETDEV_XDP_ACT_XSK_ZEROCOPY = 8,
|
|
|
|
NETDEV_XDP_ACT_HW_OFFLOAD = 16,
|
|
|
|
NETDEV_XDP_ACT_RX_SG = 32,
|
|
|
|
NETDEV_XDP_ACT_NDO_XMIT_SG = 64,
|
2023-03-09 12:25:27 +00:00
|
|
|
|
2023-07-27 16:30:00 +00:00
|
|
|
/* private: */
|
2023-03-09 12:25:27 +00:00
|
|
|
NETDEV_XDP_ACT_MASK = 127,
|
netdev-genl: create a simple family for netdev stuff
Add a Netlink spec-compatible family for netdevs.
This is a very simple implementation without much
thought going into it.
It allows us to reap all the benefits of Netlink specs,
one can use the generic client to issue the commands:
$ ./cli.py --spec netdev.yaml --dump dev_get
[{'ifindex': 1, 'xdp-features': set()},
{'ifindex': 2, 'xdp-features': {'basic', 'ndo-xmit', 'redirect'}},
{'ifindex': 3, 'xdp-features': {'rx-sg'}}]
the generic python library does not have flags-by-name
support, yet, but we also don't have to carry strings
in the messages, as user space can get the names from
the spec.
Acked-by: Jesper Dangaard Brouer <brouer@redhat.com>
Co-developed-by: Lorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
Co-developed-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Signed-off-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Co-developed-by: Marek Majtyka <alardam@gmail.com>
Signed-off-by: Marek Majtyka <alardam@gmail.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Link: https://lore.kernel.org/r/327ad9c9868becbe1e601b580c962549c8cd81f2.1675245258.git.lorenzo@kernel.org
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2023-02-01 10:24:17 +00:00
|
|
|
};
|
|
|
|
|
2023-09-13 17:13:49 +00:00
|
|
|
/**
|
|
|
|
* enum netdev_xdp_rx_metadata
|
|
|
|
* @NETDEV_XDP_RX_METADATA_TIMESTAMP: Device is capable of exposing receive HW
|
|
|
|
* timestamp via bpf_xdp_metadata_rx_timestamp().
|
|
|
|
* @NETDEV_XDP_RX_METADATA_HASH: Device is capable of exposing receive packet
|
|
|
|
* hash via bpf_xdp_metadata_rx_hash().
|
2023-12-05 21:08:38 +00:00
|
|
|
* @NETDEV_XDP_RX_METADATA_VLAN_TAG: Device is capable of exposing receive
|
|
|
|
* packet VLAN tag via bpf_xdp_metadata_rx_vlan_tag().
|
2023-09-13 17:13:49 +00:00
|
|
|
*/
|
|
|
|
enum netdev_xdp_rx_metadata {
|
|
|
|
NETDEV_XDP_RX_METADATA_TIMESTAMP = 1,
|
|
|
|
NETDEV_XDP_RX_METADATA_HASH = 2,
|
2023-12-05 21:08:38 +00:00
|
|
|
NETDEV_XDP_RX_METADATA_VLAN_TAG = 4,
|
2023-09-13 17:13:49 +00:00
|
|
|
};
|
|
|
|
|
2023-11-27 19:03:08 +00:00
|
|
|
/**
|
|
|
|
* enum netdev_xsk_flags
|
|
|
|
* @NETDEV_XSK_FLAGS_TX_TIMESTAMP: HW timestamping egress packets is supported
|
|
|
|
* by the driver.
|
|
|
|
* @NETDEV_XSK_FLAGS_TX_CHECKSUM: L3 checksum HW offload is supported by the
|
|
|
|
* driver.
|
2025-02-16 09:34:26 +00:00
|
|
|
* @NETDEV_XSK_FLAGS_TX_LAUNCH_TIME_FIFO: Launch time HW offload is supported
|
|
|
|
* by the driver.
|
2023-11-27 19:03:08 +00:00
|
|
|
*/
|
|
|
|
enum netdev_xsk_flags {
|
|
|
|
NETDEV_XSK_FLAGS_TX_TIMESTAMP = 1,
|
|
|
|
NETDEV_XSK_FLAGS_TX_CHECKSUM = 2,
|
2025-02-16 09:34:26 +00:00
|
|
|
NETDEV_XSK_FLAGS_TX_LAUNCH_TIME_FIFO = 4,
|
2023-09-13 17:13:49 +00:00
|
|
|
};
|
|
|
|
|
2023-12-01 23:28:29 +00:00
|
|
|
enum netdev_queue_type {
|
|
|
|
NETDEV_QUEUE_TYPE_RX,
|
|
|
|
NETDEV_QUEUE_TYPE_TX,
|
|
|
|
};
|
|
|
|
|
2024-03-06 19:55:07 +00:00
|
|
|
enum netdev_qstats_scope {
|
|
|
|
NETDEV_QSTATS_SCOPE_QUEUE = 1,
|
|
|
|
};
|
|
|
|
|
netdev-genl: create a simple family for netdev stuff
Add a Netlink spec-compatible family for netdevs.
This is a very simple implementation without much
thought going into it.
It allows us to reap all the benefits of Netlink specs,
one can use the generic client to issue the commands:
$ ./cli.py --spec netdev.yaml --dump dev_get
[{'ifindex': 1, 'xdp-features': set()},
{'ifindex': 2, 'xdp-features': {'basic', 'ndo-xmit', 'redirect'}},
{'ifindex': 3, 'xdp-features': {'rx-sg'}}]
the generic python library does not have flags-by-name
support, yet, but we also don't have to carry strings
in the messages, as user space can get the names from
the spec.
Acked-by: Jesper Dangaard Brouer <brouer@redhat.com>
Co-developed-by: Lorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
Co-developed-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Signed-off-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Co-developed-by: Marek Majtyka <alardam@gmail.com>
Signed-off-by: Marek Majtyka <alardam@gmail.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Link: https://lore.kernel.org/r/327ad9c9868becbe1e601b580c962549c8cd81f2.1675245258.git.lorenzo@kernel.org
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2023-02-01 10:24:17 +00:00
|
|
|
enum {
|
|
|
|
NETDEV_A_DEV_IFINDEX = 1,
|
|
|
|
NETDEV_A_DEV_PAD,
|
|
|
|
NETDEV_A_DEV_XDP_FEATURES,
|
2023-07-19 13:24:07 +00:00
|
|
|
NETDEV_A_DEV_XDP_ZC_MAX_SEGS,
|
2023-09-13 17:13:49 +00:00
|
|
|
NETDEV_A_DEV_XDP_RX_METADATA_FEATURES,
|
2023-11-27 19:03:08 +00:00
|
|
|
NETDEV_A_DEV_XSK_FEATURES,
|
netdev-genl: create a simple family for netdev stuff
Add a Netlink spec-compatible family for netdevs.
This is a very simple implementation without much
thought going into it.
It allows us to reap all the benefits of Netlink specs,
one can use the generic client to issue the commands:
$ ./cli.py --spec netdev.yaml --dump dev_get
[{'ifindex': 1, 'xdp-features': set()},
{'ifindex': 2, 'xdp-features': {'basic', 'ndo-xmit', 'redirect'}},
{'ifindex': 3, 'xdp-features': {'rx-sg'}}]
the generic python library does not have flags-by-name
support, yet, but we also don't have to carry strings
in the messages, as user space can get the names from
the spec.
Acked-by: Jesper Dangaard Brouer <brouer@redhat.com>
Co-developed-by: Lorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
Co-developed-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Signed-off-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Co-developed-by: Marek Majtyka <alardam@gmail.com>
Signed-off-by: Marek Majtyka <alardam@gmail.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Link: https://lore.kernel.org/r/327ad9c9868becbe1e601b580c962549c8cd81f2.1675245258.git.lorenzo@kernel.org
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2023-02-01 10:24:17 +00:00
|
|
|
|
|
|
|
__NETDEV_A_DEV_MAX,
|
|
|
|
NETDEV_A_DEV_MAX = (__NETDEV_A_DEV_MAX - 1)
|
|
|
|
};
|
|
|
|
|
netdev: add io_uring memory provider info
Add a nested attribute for io_uring memory provider info. For now it is
empty and its presence indicates that a particular page pool or queue
has an io_uring memory provider attached.
$ ./cli.py --spec netlink/specs/netdev.yaml --dump page-pool-get
[{'id': 80,
'ifindex': 2,
'inflight': 64,
'inflight-mem': 262144,
'napi-id': 525},
{'id': 79,
'ifindex': 2,
'inflight': 320,
'inflight-mem': 1310720,
'io_uring': {},
'napi-id': 525},
...
$ ./cli.py --spec netlink/specs/netdev.yaml --dump queue-get
[{'id': 0, 'ifindex': 1, 'type': 'rx'},
{'id': 0, 'ifindex': 1, 'type': 'tx'},
{'id': 0, 'ifindex': 2, 'napi-id': 513, 'type': 'rx'},
{'id': 1, 'ifindex': 2, 'napi-id': 514, 'type': 'rx'},
...
{'id': 12, 'ifindex': 2, 'io_uring': {}, 'napi-id': 525, 'type': 'rx'},
...
Reviewed-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
Signed-off-by: David Wei <dw@davidwei.uk>
Link: https://patch.msgid.link/20250204215622.695511-6-dw@davidwei.uk
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
2025-02-04 21:56:16 +00:00
|
|
|
enum {
|
|
|
|
__NETDEV_A_IO_URING_PROVIDER_INFO_MAX,
|
|
|
|
NETDEV_A_IO_URING_PROVIDER_INFO_MAX = (__NETDEV_A_IO_URING_PROVIDER_INFO_MAX - 1)
|
|
|
|
};
|
|
|
|
|
net: page_pool: implement GET in the netlink API
Expose the very basic page pool information via netlink.
Example using ynl-py for a system with 9 queues:
$ ./cli.py --no-schema --spec netlink/specs/netdev.yaml \
--dump page-pool-get
[{'id': 19, 'ifindex': 2, 'napi-id': 147},
{'id': 18, 'ifindex': 2, 'napi-id': 146},
{'id': 17, 'ifindex': 2, 'napi-id': 145},
{'id': 16, 'ifindex': 2, 'napi-id': 144},
{'id': 15, 'ifindex': 2, 'napi-id': 143},
{'id': 14, 'ifindex': 2, 'napi-id': 142},
{'id': 13, 'ifindex': 2, 'napi-id': 141},
{'id': 12, 'ifindex': 2, 'napi-id': 140},
{'id': 11, 'ifindex': 2, 'napi-id': 139},
{'id': 10, 'ifindex': 2, 'napi-id': 138}]
Reviewed-by: Eric Dumazet <edumazet@google.com>
Acked-by: Jesper Dangaard Brouer <hawk@kernel.org>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
2023-11-26 23:07:34 +00:00
|
|
|
enum {
|
|
|
|
NETDEV_A_PAGE_POOL_ID = 1,
|
|
|
|
NETDEV_A_PAGE_POOL_IFINDEX,
|
|
|
|
NETDEV_A_PAGE_POOL_NAPI_ID,
|
2023-11-26 23:07:36 +00:00
|
|
|
NETDEV_A_PAGE_POOL_INFLIGHT,
|
|
|
|
NETDEV_A_PAGE_POOL_INFLIGHT_MEM,
|
2023-11-26 23:07:37 +00:00
|
|
|
NETDEV_A_PAGE_POOL_DETACH_TIME,
|
netdev: add dmabuf introspection
Add dmabuf information to page_pool stats:
$ ./cli.py --spec ../netlink/specs/netdev.yaml --dump page-pool-get
...
{'dmabuf': 10,
'id': 456,
'ifindex': 3,
'inflight': 1023,
'inflight-mem': 4190208},
{'dmabuf': 10,
'id': 455,
'ifindex': 3,
'inflight': 1023,
'inflight-mem': 4190208},
{'dmabuf': 10,
'id': 454,
'ifindex': 3,
'inflight': 1023,
'inflight-mem': 4190208},
{'dmabuf': 10,
'id': 453,
'ifindex': 3,
'inflight': 1023,
'inflight-mem': 4190208},
{'dmabuf': 10,
'id': 452,
'ifindex': 3,
'inflight': 1023,
'inflight-mem': 4190208},
{'dmabuf': 10,
'id': 451,
'ifindex': 3,
'inflight': 1023,
'inflight-mem': 4190208},
{'dmabuf': 10,
'id': 450,
'ifindex': 3,
'inflight': 1023,
'inflight-mem': 4190208},
{'dmabuf': 10,
'id': 449,
'ifindex': 3,
'inflight': 1023,
'inflight-mem': 4190208},
And queue stats:
$ ./cli.py --spec ../netlink/specs/netdev.yaml --dump queue-get
...
{'dmabuf': 10, 'id': 8, 'ifindex': 3, 'type': 'rx'},
{'dmabuf': 10, 'id': 9, 'ifindex': 3, 'type': 'rx'},
{'dmabuf': 10, 'id': 10, 'ifindex': 3, 'type': 'rx'},
{'dmabuf': 10, 'id': 11, 'ifindex': 3, 'type': 'rx'},
{'dmabuf': 10, 'id': 12, 'ifindex': 3, 'type': 'rx'},
{'dmabuf': 10, 'id': 13, 'ifindex': 3, 'type': 'rx'},
{'dmabuf': 10, 'id': 14, 'ifindex': 3, 'type': 'rx'},
{'dmabuf': 10, 'id': 15, 'ifindex': 3, 'type': 'rx'},
Suggested-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Mina Almasry <almasrymina@google.com>
Reviewed-by: Jakub Kicinski <kuba@kernel.org>
Link: https://patch.msgid.link/20240910171458.219195-14-almasrymina@google.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
2024-09-10 17:14:57 +00:00
|
|
|
NETDEV_A_PAGE_POOL_DMABUF,
|
netdev: add io_uring memory provider info
Add a nested attribute for io_uring memory provider info. For now it is
empty and its presence indicates that a particular page pool or queue
has an io_uring memory provider attached.
$ ./cli.py --spec netlink/specs/netdev.yaml --dump page-pool-get
[{'id': 80,
'ifindex': 2,
'inflight': 64,
'inflight-mem': 262144,
'napi-id': 525},
{'id': 79,
'ifindex': 2,
'inflight': 320,
'inflight-mem': 1310720,
'io_uring': {},
'napi-id': 525},
...
$ ./cli.py --spec netlink/specs/netdev.yaml --dump queue-get
[{'id': 0, 'ifindex': 1, 'type': 'rx'},
{'id': 0, 'ifindex': 1, 'type': 'tx'},
{'id': 0, 'ifindex': 2, 'napi-id': 513, 'type': 'rx'},
{'id': 1, 'ifindex': 2, 'napi-id': 514, 'type': 'rx'},
...
{'id': 12, 'ifindex': 2, 'io_uring': {}, 'napi-id': 525, 'type': 'rx'},
...
Reviewed-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
Signed-off-by: David Wei <dw@davidwei.uk>
Link: https://patch.msgid.link/20250204215622.695511-6-dw@davidwei.uk
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
2025-02-04 21:56:16 +00:00
|
|
|
NETDEV_A_PAGE_POOL_IO_URING,
|
net: page_pool: implement GET in the netlink API
Expose the very basic page pool information via netlink.
Example using ynl-py for a system with 9 queues:
$ ./cli.py --no-schema --spec netlink/specs/netdev.yaml \
--dump page-pool-get
[{'id': 19, 'ifindex': 2, 'napi-id': 147},
{'id': 18, 'ifindex': 2, 'napi-id': 146},
{'id': 17, 'ifindex': 2, 'napi-id': 145},
{'id': 16, 'ifindex': 2, 'napi-id': 144},
{'id': 15, 'ifindex': 2, 'napi-id': 143},
{'id': 14, 'ifindex': 2, 'napi-id': 142},
{'id': 13, 'ifindex': 2, 'napi-id': 141},
{'id': 12, 'ifindex': 2, 'napi-id': 140},
{'id': 11, 'ifindex': 2, 'napi-id': 139},
{'id': 10, 'ifindex': 2, 'napi-id': 138}]
Reviewed-by: Eric Dumazet <edumazet@google.com>
Acked-by: Jesper Dangaard Brouer <hawk@kernel.org>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
2023-11-26 23:07:34 +00:00
|
|
|
|
|
|
|
__NETDEV_A_PAGE_POOL_MAX,
|
|
|
|
NETDEV_A_PAGE_POOL_MAX = (__NETDEV_A_PAGE_POOL_MAX - 1)
|
|
|
|
};
|
|
|
|
|
net: page_pool: expose page pool stats via netlink
Dump the stats into netlink. More clever approaches
like dumping the stats per-CPU for each CPU individually
to see where the packets get consumed can be implemented
in the future.
A trimmed example from a real (but recently booted system):
$ ./cli.py --no-schema --spec netlink/specs/netdev.yaml \
--dump page-pool-stats-get
[{'info': {'id': 19, 'ifindex': 2},
'alloc-empty': 48,
'alloc-fast': 3024,
'alloc-refill': 0,
'alloc-slow': 48,
'alloc-slow-high-order': 0,
'alloc-waive': 0,
'recycle-cache-full': 0,
'recycle-cached': 0,
'recycle-released-refcnt': 0,
'recycle-ring': 0,
'recycle-ring-full': 0},
{'info': {'id': 18, 'ifindex': 2},
'alloc-empty': 66,
'alloc-fast': 11811,
'alloc-refill': 35,
'alloc-slow': 66,
'alloc-slow-high-order': 0,
'alloc-waive': 0,
'recycle-cache-full': 1145,
'recycle-cached': 6541,
'recycle-released-refcnt': 0,
'recycle-ring': 1275,
'recycle-ring-full': 0},
{'info': {'id': 17, 'ifindex': 2},
'alloc-empty': 73,
'alloc-fast': 62099,
'alloc-refill': 413,
...
Acked-by: Jesper Dangaard Brouer <hawk@kernel.org>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
2023-11-26 23:07:38 +00:00
|
|
|
enum {
|
|
|
|
NETDEV_A_PAGE_POOL_STATS_INFO = 1,
|
|
|
|
NETDEV_A_PAGE_POOL_STATS_ALLOC_FAST = 8,
|
|
|
|
NETDEV_A_PAGE_POOL_STATS_ALLOC_SLOW,
|
|
|
|
NETDEV_A_PAGE_POOL_STATS_ALLOC_SLOW_HIGH_ORDER,
|
|
|
|
NETDEV_A_PAGE_POOL_STATS_ALLOC_EMPTY,
|
|
|
|
NETDEV_A_PAGE_POOL_STATS_ALLOC_REFILL,
|
|
|
|
NETDEV_A_PAGE_POOL_STATS_ALLOC_WAIVE,
|
|
|
|
NETDEV_A_PAGE_POOL_STATS_RECYCLE_CACHED,
|
|
|
|
NETDEV_A_PAGE_POOL_STATS_RECYCLE_CACHE_FULL,
|
|
|
|
NETDEV_A_PAGE_POOL_STATS_RECYCLE_RING,
|
|
|
|
NETDEV_A_PAGE_POOL_STATS_RECYCLE_RING_FULL,
|
|
|
|
NETDEV_A_PAGE_POOL_STATS_RECYCLE_RELEASED_REFCNT,
|
|
|
|
|
|
|
|
__NETDEV_A_PAGE_POOL_STATS_MAX,
|
|
|
|
NETDEV_A_PAGE_POOL_STATS_MAX = (__NETDEV_A_PAGE_POOL_STATS_MAX - 1)
|
|
|
|
};
|
|
|
|
|
2023-12-01 23:28:51 +00:00
|
|
|
enum {
|
|
|
|
NETDEV_A_NAPI_IFINDEX = 1,
|
|
|
|
NETDEV_A_NAPI_ID,
|
2023-12-01 23:29:02 +00:00
|
|
|
NETDEV_A_NAPI_IRQ,
|
2023-12-01 23:29:13 +00:00
|
|
|
NETDEV_A_NAPI_PID,
|
2024-10-11 18:44:57 +00:00
|
|
|
NETDEV_A_NAPI_DEFER_HARD_IRQS,
|
2024-10-11 18:44:59 +00:00
|
|
|
NETDEV_A_NAPI_GRO_FLUSH_TIMEOUT,
|
2024-11-09 05:02:31 +00:00
|
|
|
NETDEV_A_NAPI_IRQ_SUSPEND_TIMEOUT,
|
2023-12-01 23:28:51 +00:00
|
|
|
|
|
|
|
__NETDEV_A_NAPI_MAX,
|
|
|
|
NETDEV_A_NAPI_MAX = (__NETDEV_A_NAPI_MAX - 1)
|
|
|
|
};
|
|
|
|
|
2025-02-14 21:12:30 +00:00
|
|
|
enum {
|
|
|
|
__NETDEV_A_XSK_INFO_MAX,
|
|
|
|
NETDEV_A_XSK_INFO_MAX = (__NETDEV_A_XSK_INFO_MAX - 1)
|
|
|
|
};
|
|
|
|
|
2023-12-01 23:28:29 +00:00
|
|
|
enum {
|
|
|
|
NETDEV_A_QUEUE_ID = 1,
|
|
|
|
NETDEV_A_QUEUE_IFINDEX,
|
|
|
|
NETDEV_A_QUEUE_TYPE,
|
|
|
|
NETDEV_A_QUEUE_NAPI_ID,
|
netdev: add dmabuf introspection
Add dmabuf information to page_pool stats:
$ ./cli.py --spec ../netlink/specs/netdev.yaml --dump page-pool-get
...
{'dmabuf': 10,
'id': 456,
'ifindex': 3,
'inflight': 1023,
'inflight-mem': 4190208},
{'dmabuf': 10,
'id': 455,
'ifindex': 3,
'inflight': 1023,
'inflight-mem': 4190208},
{'dmabuf': 10,
'id': 454,
'ifindex': 3,
'inflight': 1023,
'inflight-mem': 4190208},
{'dmabuf': 10,
'id': 453,
'ifindex': 3,
'inflight': 1023,
'inflight-mem': 4190208},
{'dmabuf': 10,
'id': 452,
'ifindex': 3,
'inflight': 1023,
'inflight-mem': 4190208},
{'dmabuf': 10,
'id': 451,
'ifindex': 3,
'inflight': 1023,
'inflight-mem': 4190208},
{'dmabuf': 10,
'id': 450,
'ifindex': 3,
'inflight': 1023,
'inflight-mem': 4190208},
{'dmabuf': 10,
'id': 449,
'ifindex': 3,
'inflight': 1023,
'inflight-mem': 4190208},
And queue stats:
$ ./cli.py --spec ../netlink/specs/netdev.yaml --dump queue-get
...
{'dmabuf': 10, 'id': 8, 'ifindex': 3, 'type': 'rx'},
{'dmabuf': 10, 'id': 9, 'ifindex': 3, 'type': 'rx'},
{'dmabuf': 10, 'id': 10, 'ifindex': 3, 'type': 'rx'},
{'dmabuf': 10, 'id': 11, 'ifindex': 3, 'type': 'rx'},
{'dmabuf': 10, 'id': 12, 'ifindex': 3, 'type': 'rx'},
{'dmabuf': 10, 'id': 13, 'ifindex': 3, 'type': 'rx'},
{'dmabuf': 10, 'id': 14, 'ifindex': 3, 'type': 'rx'},
{'dmabuf': 10, 'id': 15, 'ifindex': 3, 'type': 'rx'},
Suggested-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Mina Almasry <almasrymina@google.com>
Reviewed-by: Jakub Kicinski <kuba@kernel.org>
Link: https://patch.msgid.link/20240910171458.219195-14-almasrymina@google.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
2024-09-10 17:14:57 +00:00
|
|
|
NETDEV_A_QUEUE_DMABUF,
|
netdev: add io_uring memory provider info
Add a nested attribute for io_uring memory provider info. For now it is
empty and its presence indicates that a particular page pool or queue
has an io_uring memory provider attached.
$ ./cli.py --spec netlink/specs/netdev.yaml --dump page-pool-get
[{'id': 80,
'ifindex': 2,
'inflight': 64,
'inflight-mem': 262144,
'napi-id': 525},
{'id': 79,
'ifindex': 2,
'inflight': 320,
'inflight-mem': 1310720,
'io_uring': {},
'napi-id': 525},
...
$ ./cli.py --spec netlink/specs/netdev.yaml --dump queue-get
[{'id': 0, 'ifindex': 1, 'type': 'rx'},
{'id': 0, 'ifindex': 1, 'type': 'tx'},
{'id': 0, 'ifindex': 2, 'napi-id': 513, 'type': 'rx'},
{'id': 1, 'ifindex': 2, 'napi-id': 514, 'type': 'rx'},
...
{'id': 12, 'ifindex': 2, 'io_uring': {}, 'napi-id': 525, 'type': 'rx'},
...
Reviewed-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
Signed-off-by: David Wei <dw@davidwei.uk>
Link: https://patch.msgid.link/20250204215622.695511-6-dw@davidwei.uk
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
2025-02-04 21:56:16 +00:00
|
|
|
NETDEV_A_QUEUE_IO_URING,
|
2025-02-14 21:12:30 +00:00
|
|
|
NETDEV_A_QUEUE_XSK,
|
2023-12-01 23:28:29 +00:00
|
|
|
|
|
|
|
__NETDEV_A_QUEUE_MAX,
|
|
|
|
NETDEV_A_QUEUE_MAX = (__NETDEV_A_QUEUE_MAX - 1)
|
|
|
|
};
|
|
|
|
|
2024-03-06 19:55:07 +00:00
|
|
|
enum {
|
|
|
|
NETDEV_A_QSTATS_IFINDEX = 1,
|
|
|
|
NETDEV_A_QSTATS_QUEUE_TYPE,
|
|
|
|
NETDEV_A_QSTATS_QUEUE_ID,
|
|
|
|
NETDEV_A_QSTATS_SCOPE,
|
|
|
|
NETDEV_A_QSTATS_RX_PACKETS = 8,
|
|
|
|
NETDEV_A_QSTATS_RX_BYTES,
|
|
|
|
NETDEV_A_QSTATS_TX_PACKETS,
|
|
|
|
NETDEV_A_QSTATS_TX_BYTES,
|
2024-03-06 19:55:08 +00:00
|
|
|
NETDEV_A_QSTATS_RX_ALLOC_FAIL,
|
2024-04-26 03:39:27 +00:00
|
|
|
NETDEV_A_QSTATS_RX_HW_DROPS,
|
|
|
|
NETDEV_A_QSTATS_RX_HW_DROP_OVERRUNS,
|
2024-05-29 16:35:47 +00:00
|
|
|
NETDEV_A_QSTATS_RX_CSUM_COMPLETE,
|
2024-04-26 03:39:27 +00:00
|
|
|
NETDEV_A_QSTATS_RX_CSUM_UNNECESSARY,
|
|
|
|
NETDEV_A_QSTATS_RX_CSUM_NONE,
|
|
|
|
NETDEV_A_QSTATS_RX_CSUM_BAD,
|
|
|
|
NETDEV_A_QSTATS_RX_HW_GRO_PACKETS,
|
|
|
|
NETDEV_A_QSTATS_RX_HW_GRO_BYTES,
|
|
|
|
NETDEV_A_QSTATS_RX_HW_GRO_WIRE_PACKETS,
|
|
|
|
NETDEV_A_QSTATS_RX_HW_GRO_WIRE_BYTES,
|
|
|
|
NETDEV_A_QSTATS_RX_HW_DROP_RATELIMITS,
|
|
|
|
NETDEV_A_QSTATS_TX_HW_DROPS,
|
|
|
|
NETDEV_A_QSTATS_TX_HW_DROP_ERRORS,
|
|
|
|
NETDEV_A_QSTATS_TX_CSUM_NONE,
|
|
|
|
NETDEV_A_QSTATS_TX_NEEDS_CSUM,
|
|
|
|
NETDEV_A_QSTATS_TX_HW_GSO_PACKETS,
|
|
|
|
NETDEV_A_QSTATS_TX_HW_GSO_BYTES,
|
|
|
|
NETDEV_A_QSTATS_TX_HW_GSO_WIRE_PACKETS,
|
|
|
|
NETDEV_A_QSTATS_TX_HW_GSO_WIRE_BYTES,
|
|
|
|
NETDEV_A_QSTATS_TX_HW_DROP_RATELIMITS,
|
2024-05-10 20:19:26 +00:00
|
|
|
NETDEV_A_QSTATS_TX_STOP,
|
|
|
|
NETDEV_A_QSTATS_TX_WAKE,
|
2024-03-06 19:55:07 +00:00
|
|
|
|
|
|
|
__NETDEV_A_QSTATS_MAX,
|
|
|
|
NETDEV_A_QSTATS_MAX = (__NETDEV_A_QSTATS_MAX - 1)
|
|
|
|
};
|
|
|
|
|
2024-09-10 17:14:46 +00:00
|
|
|
enum {
|
|
|
|
NETDEV_A_DMABUF_IFINDEX = 1,
|
|
|
|
NETDEV_A_DMABUF_QUEUES,
|
|
|
|
NETDEV_A_DMABUF_FD,
|
|
|
|
NETDEV_A_DMABUF_ID,
|
|
|
|
|
|
|
|
__NETDEV_A_DMABUF_MAX,
|
|
|
|
NETDEV_A_DMABUF_MAX = (__NETDEV_A_DMABUF_MAX - 1)
|
|
|
|
};
|
|
|
|
|
netdev-genl: create a simple family for netdev stuff
Add a Netlink spec-compatible family for netdevs.
This is a very simple implementation without much
thought going into it.
It allows us to reap all the benefits of Netlink specs,
one can use the generic client to issue the commands:
$ ./cli.py --spec netdev.yaml --dump dev_get
[{'ifindex': 1, 'xdp-features': set()},
{'ifindex': 2, 'xdp-features': {'basic', 'ndo-xmit', 'redirect'}},
{'ifindex': 3, 'xdp-features': {'rx-sg'}}]
the generic python library does not have flags-by-name
support, yet, but we also don't have to carry strings
in the messages, as user space can get the names from
the spec.
Acked-by: Jesper Dangaard Brouer <brouer@redhat.com>
Co-developed-by: Lorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
Co-developed-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Signed-off-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Co-developed-by: Marek Majtyka <alardam@gmail.com>
Signed-off-by: Marek Majtyka <alardam@gmail.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Link: https://lore.kernel.org/r/327ad9c9868becbe1e601b580c962549c8cd81f2.1675245258.git.lorenzo@kernel.org
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2023-02-01 10:24:17 +00:00
|
|
|
enum {
|
|
|
|
NETDEV_CMD_DEV_GET = 1,
|
|
|
|
NETDEV_CMD_DEV_ADD_NTF,
|
|
|
|
NETDEV_CMD_DEV_DEL_NTF,
|
|
|
|
NETDEV_CMD_DEV_CHANGE_NTF,
|
net: page_pool: implement GET in the netlink API
Expose the very basic page pool information via netlink.
Example using ynl-py for a system with 9 queues:
$ ./cli.py --no-schema --spec netlink/specs/netdev.yaml \
--dump page-pool-get
[{'id': 19, 'ifindex': 2, 'napi-id': 147},
{'id': 18, 'ifindex': 2, 'napi-id': 146},
{'id': 17, 'ifindex': 2, 'napi-id': 145},
{'id': 16, 'ifindex': 2, 'napi-id': 144},
{'id': 15, 'ifindex': 2, 'napi-id': 143},
{'id': 14, 'ifindex': 2, 'napi-id': 142},
{'id': 13, 'ifindex': 2, 'napi-id': 141},
{'id': 12, 'ifindex': 2, 'napi-id': 140},
{'id': 11, 'ifindex': 2, 'napi-id': 139},
{'id': 10, 'ifindex': 2, 'napi-id': 138}]
Reviewed-by: Eric Dumazet <edumazet@google.com>
Acked-by: Jesper Dangaard Brouer <hawk@kernel.org>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
2023-11-26 23:07:34 +00:00
|
|
|
NETDEV_CMD_PAGE_POOL_GET,
|
2023-11-26 23:07:35 +00:00
|
|
|
NETDEV_CMD_PAGE_POOL_ADD_NTF,
|
|
|
|
NETDEV_CMD_PAGE_POOL_DEL_NTF,
|
|
|
|
NETDEV_CMD_PAGE_POOL_CHANGE_NTF,
|
net: page_pool: expose page pool stats via netlink
Dump the stats into netlink. More clever approaches
like dumping the stats per-CPU for each CPU individually
to see where the packets get consumed can be implemented
in the future.
A trimmed example from a real (but recently booted system):
$ ./cli.py --no-schema --spec netlink/specs/netdev.yaml \
--dump page-pool-stats-get
[{'info': {'id': 19, 'ifindex': 2},
'alloc-empty': 48,
'alloc-fast': 3024,
'alloc-refill': 0,
'alloc-slow': 48,
'alloc-slow-high-order': 0,
'alloc-waive': 0,
'recycle-cache-full': 0,
'recycle-cached': 0,
'recycle-released-refcnt': 0,
'recycle-ring': 0,
'recycle-ring-full': 0},
{'info': {'id': 18, 'ifindex': 2},
'alloc-empty': 66,
'alloc-fast': 11811,
'alloc-refill': 35,
'alloc-slow': 66,
'alloc-slow-high-order': 0,
'alloc-waive': 0,
'recycle-cache-full': 1145,
'recycle-cached': 6541,
'recycle-released-refcnt': 0,
'recycle-ring': 1275,
'recycle-ring-full': 0},
{'info': {'id': 17, 'ifindex': 2},
'alloc-empty': 73,
'alloc-fast': 62099,
'alloc-refill': 413,
...
Acked-by: Jesper Dangaard Brouer <hawk@kernel.org>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
2023-11-26 23:07:38 +00:00
|
|
|
NETDEV_CMD_PAGE_POOL_STATS_GET,
|
2023-12-01 23:28:29 +00:00
|
|
|
NETDEV_CMD_QUEUE_GET,
|
2023-12-01 23:28:51 +00:00
|
|
|
NETDEV_CMD_NAPI_GET,
|
2024-03-06 19:55:07 +00:00
|
|
|
NETDEV_CMD_QSTATS_GET,
|
2024-09-10 17:14:46 +00:00
|
|
|
NETDEV_CMD_BIND_RX,
|
2024-10-11 18:45:01 +00:00
|
|
|
NETDEV_CMD_NAPI_SET,
|
2025-05-08 00:48:23 +00:00
|
|
|
NETDEV_CMD_BIND_TX,
|
netdev-genl: create a simple family for netdev stuff
Add a Netlink spec-compatible family for netdevs.
This is a very simple implementation without much
thought going into it.
It allows us to reap all the benefits of Netlink specs,
one can use the generic client to issue the commands:
$ ./cli.py --spec netdev.yaml --dump dev_get
[{'ifindex': 1, 'xdp-features': set()},
{'ifindex': 2, 'xdp-features': {'basic', 'ndo-xmit', 'redirect'}},
{'ifindex': 3, 'xdp-features': {'rx-sg'}}]
the generic python library does not have flags-by-name
support, yet, but we also don't have to carry strings
in the messages, as user space can get the names from
the spec.
Acked-by: Jesper Dangaard Brouer <brouer@redhat.com>
Co-developed-by: Lorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
Co-developed-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Signed-off-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Co-developed-by: Marek Majtyka <alardam@gmail.com>
Signed-off-by: Marek Majtyka <alardam@gmail.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Link: https://lore.kernel.org/r/327ad9c9868becbe1e601b580c962549c8cd81f2.1675245258.git.lorenzo@kernel.org
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2023-02-01 10:24:17 +00:00
|
|
|
|
|
|
|
__NETDEV_CMD_MAX,
|
|
|
|
NETDEV_CMD_MAX = (__NETDEV_CMD_MAX - 1)
|
|
|
|
};
|
|
|
|
|
|
|
|
#define NETDEV_MCGRP_MGMT "mgmt"
|
2023-11-26 23:07:35 +00:00
|
|
|
#define NETDEV_MCGRP_PAGE_POOL "page-pool"
|
netdev-genl: create a simple family for netdev stuff
Add a Netlink spec-compatible family for netdevs.
This is a very simple implementation without much
thought going into it.
It allows us to reap all the benefits of Netlink specs,
one can use the generic client to issue the commands:
$ ./cli.py --spec netdev.yaml --dump dev_get
[{'ifindex': 1, 'xdp-features': set()},
{'ifindex': 2, 'xdp-features': {'basic', 'ndo-xmit', 'redirect'}},
{'ifindex': 3, 'xdp-features': {'rx-sg'}}]
the generic python library does not have flags-by-name
support, yet, but we also don't have to carry strings
in the messages, as user space can get the names from
the spec.
Acked-by: Jesper Dangaard Brouer <brouer@redhat.com>
Co-developed-by: Lorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
Co-developed-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Signed-off-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Co-developed-by: Marek Majtyka <alardam@gmail.com>
Signed-off-by: Marek Majtyka <alardam@gmail.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Link: https://lore.kernel.org/r/327ad9c9868becbe1e601b580c962549c8cd81f2.1675245258.git.lorenzo@kernel.org
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2023-02-01 10:24:17 +00:00
|
|
|
|
|
|
|
#endif /* _UAPI_LINUX_NETDEV_H */
|