Message ID | 20230423144948.650717-2-shayagr@amazon.com (mailing list archive) |
---|---|
State | Accepted, archived |
Delegated to: | Michal Kubecek |
Headers | show |
Series | Add tx push buf len param to ethtool | expand |
Context | Check | Description |
---|---|---|
netdev/tree_selection | success | Not a local patch |
diff --git a/uapi/linux/ethtool_netlink.h b/uapi/linux/ethtool_netlink.h index 13493c9..cd85de1 100644 --- a/uapi/linux/ethtool_netlink.h +++ b/uapi/linux/ethtool_netlink.h @@ -357,6 +357,8 @@ enum { ETHTOOL_A_RINGS_CQE_SIZE, /* u32 */ ETHTOOL_A_RINGS_TX_PUSH, /* u8 */ ETHTOOL_A_RINGS_RX_PUSH, /* u8 */ + ETHTOOL_A_RINGS_TX_PUSH_BUF_LEN, /* u32 */ + ETHTOOL_A_RINGS_TX_PUSH_BUF_LEN_MAX, /* u32 */ /* add new constants above here */ __ETHTOOL_A_RINGS_CNT, diff --git a/uapi/linux/rtnetlink.h b/uapi/linux/rtnetlink.h index 217b25b..2132e94 100644 --- a/uapi/linux/rtnetlink.h +++ b/uapi/linux/rtnetlink.h @@ -787,6 +787,7 @@ enum { TCA_ROOT_FLAGS, TCA_ROOT_COUNT, TCA_ROOT_TIME_DELTA, /* in msecs */ + TCA_ROOT_EXT_WARN_MSG, __TCA_ROOT_MAX, #define TCA_ROOT_MAX (__TCA_ROOT_MAX - 1) };
Update to kernel commit 233eb4e786b5. Signed-off-by: Shay Agroskin <shayagr@amazon.com> --- uapi/linux/ethtool_netlink.h | 2 ++ uapi/linux/rtnetlink.h | 1 + 2 files changed, 3 insertions(+)