summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLi RongQing2015-04-22 09:49:10 +0200
committerDavid S. Miller2015-04-23 00:45:49 +0200
commit608404290e2d9d1756db4013c4ee12fa7617dad9 (patch)
tree6544ebc1a5e623fb013906c36aad06697cb29d3b
parentnet/macb: Factor out one-time assignment from loop (diff)
downloadkernel-qcow2-linux-608404290e2d9d1756db4013c4ee12fa7617dad9.tar.gz
kernel-qcow2-linux-608404290e2d9d1756db4013c4ee12fa7617dad9.tar.xz
kernel-qcow2-linux-608404290e2d9d1756db4013c4ee12fa7617dad9.zip
vxlan: remove the unnecessary codes
The return value of vxlan_fdb_replace always is greater than or equal to 0 Signed-off-by: Li RongQing <roy.qing.li@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--drivers/net/vxlan.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/net/vxlan.c b/drivers/net/vxlan.c
index 154116aafd0d..27a5f954f8e9 100644
--- a/drivers/net/vxlan.c
+++ b/drivers/net/vxlan.c
@@ -730,12 +730,8 @@ static int vxlan_fdb_create(struct vxlan_dev *vxlan,
/* Only change unicasts */
if (!(is_multicast_ether_addr(f->eth_addr) ||
is_zero_ether_addr(f->eth_addr))) {
- int rc = vxlan_fdb_replace(f, ip, port, vni,
+ notify |= vxlan_fdb_replace(f, ip, port, vni,
ifindex);
-
- if (rc < 0)
- return rc;
- notify |= rc;
} else
return -EOPNOTSUPP;
}