VSOCK: Don't reject PF_VSOCK protocol
authorAndy King <[email protected]>
Mon, 18 Feb 2013 06:04:13 +0000 (06:04 +0000)
committerDavid S. Miller <[email protected]>
Mon, 18 Feb 2013 20:02:51 +0000 (15:02 -0500)
Allow our own family as the protocol value for socket creation.

Reported-by: Gerd Hoffmann <[email protected]>
Signed-off-by: Andy King <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
net/vmw_vsock/af_vsock.c

index c1b9e55e338e495aa2157c101610b78c2aca9f91..ca511c4f388a56cf1fdaf110d31aff7d30b5d0fb 100644 (file)
@@ -1860,7 +1860,7 @@ static int vsock_create(struct net *net, struct socket *sock,
        if (!sock)
                return -EINVAL;
 
-       if (protocol)
+       if (protocol && protocol != PF_VSOCK)
                return -EPROTONOSUPPORT;
 
        switch (sock->type) {