summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChen Haiquan <oc@yunify.com>2016-05-27 10:49:11 +0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-06-24 10:22:00 -0700
commit2e42134e1894ab69ab0343e2c561bd25aee47d42 (patch)
tree962c6ebe4fb169ae6a3751db443fd2b685935bf8
parent0a626fb88972dfe5ebbf80412faae8fe723fb6c4 (diff)
downloadlwn-2e42134e1894ab69ab0343e2c561bd25aee47d42.tar.gz
lwn-2e42134e1894ab69ab0343e2c561bd25aee47d42.zip
vxlan: Accept user specified MTU value when create new vxlan link
[ Upstream commit ce577668a426c6a9e2470a09dcd07fbd6e45272a ] When create a new vxlan link, example: ip link add vtap mtu 1440 type vxlan vni 1 dev eth0 The argument "mtu" has no effect, because it is not set to conf->mtu. The default value is used in vxlan_dev_configure function. This problem was introduced by commit 0dfbdf4102b9 (vxlan: Factor out device configuration). Fixes: 0dfbdf4102b9 (vxlan: Factor out device configuration) Signed-off-by: Chen Haiquan <oc@yunify.com> Acked-by: Cong Wang <xiyou.wangcong@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/net/vxlan.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/vxlan.c b/drivers/net/vxlan.c
index 9aa8678dfacc..7e29b55015d0 100644
--- a/drivers/net/vxlan.c
+++ b/drivers/net/vxlan.c
@@ -2959,6 +2959,9 @@ static int vxlan_newlink(struct net *src_net, struct net_device *dev,
if (data[IFLA_VXLAN_REMCSUM_NOPARTIAL])
conf.flags |= VXLAN_F_REMCSUM_NOPARTIAL;
+ if (tb[IFLA_MTU])
+ conf.mtu = nla_get_u32(tb[IFLA_MTU]);
+
err = vxlan_dev_configure(src_net, dev, &conf);
switch (err) {
case -ENODEV: