aboutsummaryrefslogtreecommitdiffstats
path: root/net/core
diff options
context:
space:
mode:
authorStephen Hemminger <stephen@networkplumber.org>2013-06-25 20:02:49 -0400
committerStephen Hemminger <stephen@networkplumber.org>2013-06-25 20:02:49 -0400
commit3f5d6af0948a33a58001182de9cbb6b3e674ea14 (patch)
tree73a4ccde21718f3890f594d8622df73495a43853 /net/core
parent8599b52e14a1611dcb563289421bee76751f1d53 (diff)
parent537f7f8494be4219eb0ef47121ea16a6f9f0f49e (diff)
Merge ../vxlan-x
Diffstat (limited to 'net/core')
-rw-r--r--net/core/rtnetlink.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/net/core/rtnetlink.c b/net/core/rtnetlink.c
index 9007533867f0..3de740834d1f 100644
--- a/net/core/rtnetlink.c
+++ b/net/core/rtnetlink.c
@@ -2109,10 +2109,6 @@ static int rtnl_fdb_add(struct sk_buff *skb, struct nlmsghdr *nlh)
2109 } 2109 }
2110 2110
2111 addr = nla_data(tb[NDA_LLADDR]); 2111 addr = nla_data(tb[NDA_LLADDR]);
2112 if (is_zero_ether_addr(addr)) {
2113 pr_info("PF_BRIDGE: RTM_NEWNEIGH with invalid ether address\n");
2114 return -EINVAL;
2115 }
2116 2112
2117 err = -EOPNOTSUPP; 2113 err = -EOPNOTSUPP;
2118 2114
@@ -2210,10 +2206,6 @@ static int rtnl_fdb_del(struct sk_buff *skb, struct nlmsghdr *nlh)
2210 } 2206 }
2211 2207
2212 addr = nla_data(tb[NDA_LLADDR]); 2208 addr = nla_data(tb[NDA_LLADDR]);
2213 if (is_zero_ether_addr(addr)) {
2214 pr_info("PF_BRIDGE: RTM_DELNEIGH with invalid ether address\n");
2215 return -EINVAL;
2216 }
2217 2209
2218 err = -EOPNOTSUPP; 2210 err = -EOPNOTSUPP;
2219 2211