From ba423af6b5c5c8a8f6d4b80384c86d5dd7f60f4a Mon Sep 17 00:00:00 2001 From: Susant Sahani Date: Mon, 16 Nov 2020 13:55:49 +0100 Subject: [PATCH] sd-netlink: Add Generic Segment Offload attributes --- src/libsystemd/sd-netlink/netlink-types.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libsystemd/sd-netlink/netlink-types.c b/src/libsystemd/sd-netlink/netlink-types.c index f5e5fdf3afc..15db32fd1b4 100644 --- a/src/libsystemd/sd-netlink/netlink-types.c +++ b/src/libsystemd/sd-netlink/netlink-types.c @@ -642,6 +642,8 @@ static const NLType rtnl_link_types[] = { [IFLA_PROMISCUITY] = { .type = NETLINK_TYPE_U32 }, [IFLA_NUM_TX_QUEUES] = { .type = NETLINK_TYPE_U32 }, [IFLA_NUM_RX_QUEUES] = { .type = NETLINK_TYPE_U32 }, + [IFLA_GSO_MAX_SEGS] = { .type = NETLINK_TYPE_U32 }, + [IFLA_GSO_MAX_SIZE] = { .type = NETLINK_TYPE_U32 }, [IFLA_CARRIER] = { .type = NETLINK_TYPE_U8 }, /* [IFLA_PHYS_PORT_ID] = { .type = NETLINK_TYPE_BINARY, .len = MAX_PHYS_PORT_ID_LEN }, -- 2.47.3