]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
netlink: typographical error in nlmsg_type constants definition
authorMaurice Lambert <mauricelambert434@gmail.com>
Sun, 3 Nov 2024 22:39:50 +0000 (23:39 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 5 Dec 2024 12:53:21 +0000 (13:53 +0100)
[ Upstream commit 84bfbfbbd32aee136afea4b6bf82581dce79c305 ]

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>
Signed-off-by: Sasha Levin <sashal@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,