]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
vxlan: do not output confusing error message
authorJiri Benc <jbenc@redhat.com>
Thu, 27 Apr 2017 19:24:36 +0000 (21:24 +0200)
committerDavid S. Miller <davem@davemloft.net>
Mon, 1 May 2017 02:30:13 +0000 (22:30 -0400)
The message "Cannot bind port X, err=Y" creates only confusion. In metadata
based mode, failure of IPv6 socket creation is okay if IPv6 is disabled and
no error message should be printed. But when IPv6 tunnel was requested, such
failure is fatal. The vxlan_socket_create does not know when the error is
harmless and when it's not.

Instead of passing such information down to vxlan_socket_create, remove the
message completely. It's not useful. We propagate the error code up to the
user space and the port number comes from the user space. There's nothing in
the message that the process creating vxlan interface does not know.

Signed-off-by: Jiri Benc <jbenc@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/vxlan.c

index 84a86cbb31b95425e74a2311396d88409017a09e..328b4712683c334bf1de66a3a3789d0a04d734c3 100644 (file)
@@ -2758,8 +2758,6 @@ static struct vxlan_sock *vxlan_socket_create(struct net *net, bool ipv6,
 
        sock = vxlan_create_sock(net, ipv6, port, flags);
        if (IS_ERR(sock)) {
-               pr_info("Cannot bind port %d, err=%ld\n", ntohs(port),
-                       PTR_ERR(sock));
                kfree(vs);
                return ERR_CAST(sock);
        }