mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 16:24:13 +08:00
48eb03dd26
This change actually defines the (initial) metadata layout that should be used by AF_XDP userspace (xsk_tx_metadata). The first field is flags which requests appropriate offloads, followed by the offload-specific fields. The supported per-device offloads are exported via netlink (new xsk-flags). The offloads themselves are still implemented in a bit of a framework-y fashion that's left from my initial kfunc attempt. I'm introducing new xsk_tx_metadata_ops which drivers are supposed to implement. The drivers are also supposed to call xsk_tx_metadata_request/xsk_tx_metadata_complete in the right places. Since xsk_tx_metadata_{request,_complete} are static inline, we don't incur any extra overhead doing indirect calls. The benefit of this scheme is as follows: - keeps all metadata layout parsing away from driver code - makes it easy to grep and see which drivers implement what - don't need any extra flags to maintain to keep track of what offloads are implemented; if the callback is implemented - the offload is supported (used by netlink reporting code) Two offloads are defined right now: 1. XDP_TXMD_FLAGS_CHECKSUM: skb-style csum_start+csum_offset 2. XDP_TXMD_FLAGS_TIMESTAMP: writes TX timestamp back into metadata area upon completion (tx_timestamp field) XDP_TXMD_FLAGS_TIMESTAMP is also implemented for XDP_COPY mode: it writes SW timestamp from the skb destructor (note I'm reusing hwtstamps to pass metadata pointer). The struct is forward-compatible and can be extended in the future by appending more fields. Reviewed-by: Song Yoong Siang <yoong.siang.song@intel.com> Signed-off-by: Stanislav Fomichev <sdf@google.com> Acked-by: Jakub Kicinski <kuba@kernel.org> Link: https://lore.kernel.org/r/20231127190319.1190813-3-sdf@google.com Signed-off-by: Alexei Starovoitov <ast@kernel.org>
94 lines
2.3 KiB
C
94 lines
2.3 KiB
C
/* SPDX-License-Identifier: ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) */
|
|
/* Do not edit directly, auto-generated from: */
|
|
/* Documentation/netlink/specs/netdev.yaml */
|
|
/* YNL-GEN user header */
|
|
|
|
#ifndef _LINUX_NETDEV_GEN_H
|
|
#define _LINUX_NETDEV_GEN_H
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <linux/types.h>
|
|
#include <linux/netdev.h>
|
|
|
|
struct ynl_sock;
|
|
|
|
extern const struct ynl_family ynl_netdev_family;
|
|
|
|
/* Enums */
|
|
const char *netdev_op_str(int op);
|
|
const char *netdev_xdp_act_str(enum netdev_xdp_act value);
|
|
const char *netdev_xdp_rx_metadata_str(enum netdev_xdp_rx_metadata value);
|
|
const char *netdev_xsk_flags_str(enum netdev_xsk_flags value);
|
|
|
|
/* Common nested types */
|
|
/* ============== NETDEV_CMD_DEV_GET ============== */
|
|
/* NETDEV_CMD_DEV_GET - do */
|
|
struct netdev_dev_get_req {
|
|
struct {
|
|
__u32 ifindex:1;
|
|
} _present;
|
|
|
|
__u32 ifindex;
|
|
};
|
|
|
|
static inline struct netdev_dev_get_req *netdev_dev_get_req_alloc(void)
|
|
{
|
|
return calloc(1, sizeof(struct netdev_dev_get_req));
|
|
}
|
|
void netdev_dev_get_req_free(struct netdev_dev_get_req *req);
|
|
|
|
static inline void
|
|
netdev_dev_get_req_set_ifindex(struct netdev_dev_get_req *req, __u32 ifindex)
|
|
{
|
|
req->_present.ifindex = 1;
|
|
req->ifindex = ifindex;
|
|
}
|
|
|
|
struct netdev_dev_get_rsp {
|
|
struct {
|
|
__u32 ifindex:1;
|
|
__u32 xdp_features:1;
|
|
__u32 xdp_zc_max_segs:1;
|
|
__u32 xdp_rx_metadata_features:1;
|
|
__u32 xsk_features:1;
|
|
} _present;
|
|
|
|
__u32 ifindex;
|
|
__u64 xdp_features;
|
|
__u32 xdp_zc_max_segs;
|
|
__u64 xdp_rx_metadata_features;
|
|
__u64 xsk_features;
|
|
};
|
|
|
|
void netdev_dev_get_rsp_free(struct netdev_dev_get_rsp *rsp);
|
|
|
|
/*
|
|
* Get / dump information about a netdev.
|
|
*/
|
|
struct netdev_dev_get_rsp *
|
|
netdev_dev_get(struct ynl_sock *ys, struct netdev_dev_get_req *req);
|
|
|
|
/* NETDEV_CMD_DEV_GET - dump */
|
|
struct netdev_dev_get_list {
|
|
struct netdev_dev_get_list *next;
|
|
struct netdev_dev_get_rsp obj __attribute__((aligned(8)));
|
|
};
|
|
|
|
void netdev_dev_get_list_free(struct netdev_dev_get_list *rsp);
|
|
|
|
struct netdev_dev_get_list *netdev_dev_get_dump(struct ynl_sock *ys);
|
|
|
|
/* NETDEV_CMD_DEV_GET - notify */
|
|
struct netdev_dev_get_ntf {
|
|
__u16 family;
|
|
__u8 cmd;
|
|
struct ynl_ntf_base_type *next;
|
|
void (*free)(struct netdev_dev_get_ntf *ntf);
|
|
struct netdev_dev_get_rsp obj __attribute__((aligned(8)));
|
|
};
|
|
|
|
void netdev_dev_get_ntf_free(struct netdev_dev_get_ntf *rsp);
|
|
|
|
#endif /* _LINUX_NETDEV_GEN_H */
|