From 99d6176aab215dc7712fd12584ea94ec1c8fe451 Mon Sep 17 00:00:00 2001 From: Greg Kroah-Hartman Date: Fri, 2 Nov 2018 14:10:15 +0100 Subject: [PATCH] 4.9 patch fix --- ...k-disallow-fdb-configuration-for-non-ethernet-device.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/queue-4.9/rtnetlink-disallow-fdb-configuration-for-non-ethernet-device.patch b/queue-4.9/rtnetlink-disallow-fdb-configuration-for-non-ethernet-device.patch index 58c7c39c378..37ef7df8888 100644 --- a/queue-4.9/rtnetlink-disallow-fdb-configuration-for-non-ethernet-device.patch +++ b/queue-4.9/rtnetlink-disallow-fdb-configuration-for-non-ethernet-device.patch @@ -103,7 +103,7 @@ Signed-off-by: Greg Kroah-Hartman } + if (dev->type != ARPHRD_ETHER) { -+ NL_SET_ERR_MSG(extack, "FDB add only supported for Ethernet devices"); ++ pr_info("PF_BRIDGE: FDB add only supported for Ethernet devices"); + return -EINVAL; + } + @@ -115,7 +115,7 @@ Signed-off-by: Greg Kroah-Hartman } + if (dev->type != ARPHRD_ETHER) { -+ NL_SET_ERR_MSG(extack, "FDB delete only supported for Ethernet devices"); ++ pr_info("PF_BRIDGE: FDB delete only supported for Ethernet devices"); + return -EINVAL; + } + -- 2.47.2