aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJiri Benc <jbenc@redhat.com>2016-09-02 07:37:12 -0400
committerDavid S. Miller <davem@davemloft.net>2016-09-04 14:42:56 -0400
commit3555621de7fcceb79c4850f3d07d1ae4f652acf6 (patch)
tree49b85f27db9f38296be58675bcd84e623894276b
parent9b4cdd516dadc1b68c55ba24520194a06adff10c (diff)
vxlan: fix duplicated and wrong error messages
vxlan_dev_configure outputs error messages before returning, no need to print again the same mesages in vxlan_newlink. Also, vxlan_dev_configure may return a particular error code for a different reason than vxlan_newlink thinks. Move the remaining error messages into vxlan_dev_configure and let vxlan_newlink just pass on the error code. Signed-off-by: Jiri Benc <jbenc@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--drivers/net/vxlan.c35
1 files changed, 9 insertions, 26 deletions
diff --git a/drivers/net/vxlan.c b/drivers/net/vxlan.c
index 6358e35d74b7..6e65832051d6 100644
--- a/drivers/net/vxlan.c
+++ b/drivers/net/vxlan.c
@@ -2782,14 +2782,15 @@ static int vxlan_dev_configure(struct net *src_net, struct net_device *dev,
2782 struct net_device *lowerdev = NULL; 2782 struct net_device *lowerdev = NULL;
2783 2783
2784 if (conf->flags & VXLAN_F_GPE) { 2784 if (conf->flags & VXLAN_F_GPE) {
2785 if (conf->flags & ~VXLAN_F_ALLOWED_GPE)
2786 return -EINVAL;
2787 /* For now, allow GPE only together with COLLECT_METADATA. 2785 /* For now, allow GPE only together with COLLECT_METADATA.
2788 * This can be relaxed later; in such case, the other side 2786 * This can be relaxed later; in such case, the other side
2789 * of the PtP link will have to be provided. 2787 * of the PtP link will have to be provided.
2790 */ 2788 */
2791 if (!(conf->flags & VXLAN_F_COLLECT_METADATA)) 2789 if ((conf->flags & ~VXLAN_F_ALLOWED_GPE) ||
2790 !(conf->flags & VXLAN_F_COLLECT_METADATA)) {
2791 pr_info("unsupported combination of extensions\n");
2792 return -EINVAL; 2792 return -EINVAL;
2793 }
2793 2794
2794 vxlan_raw_setup(dev); 2795 vxlan_raw_setup(dev);
2795 } else { 2796 } else {
@@ -2877,8 +2878,10 @@ static int vxlan_dev_configure(struct net *src_net, struct net_device *dev,
2877 tmp->cfg.saddr.sa.sa_family == AF_INET6) == use_ipv6 && 2878 tmp->cfg.saddr.sa.sa_family == AF_INET6) == use_ipv6 &&
2878 tmp->cfg.dst_port == vxlan->cfg.dst_port && 2879 tmp->cfg.dst_port == vxlan->cfg.dst_port &&
2879 (tmp->flags & VXLAN_F_RCV_FLAGS) == 2880 (tmp->flags & VXLAN_F_RCV_FLAGS) ==
2880 (vxlan->flags & VXLAN_F_RCV_FLAGS)) 2881 (vxlan->flags & VXLAN_F_RCV_FLAGS)) {
2881 return -EEXIST; 2882 pr_info("duplicate VNI %u\n", be32_to_cpu(conf->vni));
2883 return -EEXIST;
2884 }
2882 } 2885 }
2883 2886
2884 dev->ethtool_ops = &vxlan_ethtool_ops; 2887 dev->ethtool_ops = &vxlan_ethtool_ops;
@@ -2912,7 +2915,6 @@ static int vxlan_newlink(struct net *src_net, struct net_device *dev,
2912 struct nlattr *tb[], struct nlattr *data[]) 2915 struct nlattr *tb[], struct nlattr *data[])
2913{ 2916{
2914 struct vxlan_config conf; 2917 struct vxlan_config conf;
2915 int err;
2916 2918
2917 memset(&conf, 0, sizeof(conf)); 2919 memset(&conf, 0, sizeof(conf));
2918 2920
@@ -3021,26 +3023,7 @@ static int vxlan_newlink(struct net *src_net, struct net_device *dev,
3021 if (tb[IFLA_MTU]) 3023 if (tb[IFLA_MTU])
3022 conf.mtu = nla_get_u32(tb[IFLA_MTU]); 3024 conf.mtu = nla_get_u32(tb[IFLA_MTU]);
3023 3025
3024 err = vxlan_dev_configure(src_net, dev, &conf); 3026 return vxlan_dev_configure(src_net, dev, &conf);
3025 switch (err) {
3026 case -ENODEV:
3027 pr_info("ifindex %d does not exist\n", conf.remote_ifindex);
3028 break;
3029
3030 case -EPERM:
3031 pr_info("IPv6 is disabled via sysctl\n");
3032 break;
3033
3034 case -EEXIST:
3035 pr_info("duplicate VNI %u\n", be32_to_cpu(conf.vni));
3036 break;
3037
3038 case -EINVAL:
3039 pr_info("unsupported combination of extensions\n");
3040 break;
3041 }
3042
3043 return err;
3044} 3027}
3045 3028
3046static void vxlan_dellink(struct net_device *dev, struct list_head *head) 3029static void vxlan_dellink(struct net_device *dev, struct list_head *head)