netlink: typographical error in nlmsg_type constants definition
authorMaurice Lambert <mauricelambert434@gmail.com>
Sun, 3 Nov 2024 22:39:50 +0000 (23:39 +0100)
committerJakub Kicinski <kuba@kernel.org>
Wed, 6 Nov 2024 01:33:55 +0000 (17:33 -0800)
This commit fix a typographical error in netlink nlmsg_type constants definition in the include/uapi/linux/rtnetlink.h at line 177. The definition is RTM_NEWNVLAN RTM_NEWVLAN instead of RTM_NEWVLAN RTM_NEWVLAN.

Signed-off-by: Maurice Lambert <mauricelambert434@gmail.com>
Fixes: 8dcea187088b ("net: bridge: vlan: add rtm definitions and dump support")
Link: https://patch.msgid.link/20241103223950.230300-1-mauricelambert434@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
include/uapi/linux/rtnetlink.h

index 3b687d20c9ed34e45d565e649d8d890697c1b7b4..db7254d52d9355f03ffc0b6cd76731554f0b1139 100644 (file)
@@ -174,7 +174,7 @@ enum {
 #define RTM_GETLINKPROP        RTM_GETLINKPROP
 
        RTM_NEWVLAN = 112,
-#define RTM_NEWNVLAN   RTM_NEWVLAN
+#define RTM_NEWVLAN    RTM_NEWVLAN
        RTM_DELVLAN,
 #define RTM_DELVLAN    RTM_DELVLAN
        RTM_GETVLAN,