git: 28abf6327751 - main - netlink: sync interface IFLA attributes
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 18 Apr 2023 12:34:11 UTC
The branch main has been updated by melifaro: URL: https://cgit.FreeBSD.org/src/commit/?id=28abf632775176579f2ba3315487c4525bf3ca64 commit 28abf632775176579f2ba3315487c4525bf3ca64 Author: Alexander V. Chernikov <melifaro@FreeBSD.org> AuthorDate: 2023-04-18 12:33:48 +0000 Commit: Alexander V. Chernikov <melifaro@FreeBSD.org> CommitDate: 2023-04-18 12:34:05 +0000 netlink: sync interface IFLA attributes MFC after: 2 weeks --- sys/netlink/route/interface.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/sys/netlink/route/interface.h b/sys/netlink/route/interface.h index 12a8aa718993..ec0e1e246a07 100644 --- a/sys/netlink/route/interface.h +++ b/sys/netlink/route/interface.h @@ -134,6 +134,14 @@ enum { IFLA_ALT_IFNAME, /* Alternative ifname */ IFLA_PERM_ADDRESS, IFLA_PROTO_DOWN_REASON, + IFLA_PARENT_DEV_NAME, + IFLA_PARENT_DEV_BUS_NAME, + IFLA_GRO_MAX_SIZE, + IFLA_TSO_MAX_SEGS, + IFLA_ALLMULTI, + IFLA_DEVLINK_PORT, + IFLA_GSO_IPV4_MAX_SIZE, + IFLA_GRO_IPV4_MAX_SIZE, __IFLA_MAX }; #define IFLA_MAX (__IFLA_MAX - 1)