VSOCK: define VSOCK_SS_LISTEN once only
authorStefan Hajnoczi <stefanha@redhat.com>
Thu, 29 Oct 2015 11:57:42 +0000 (11:57 +0000)
committerDavid S. Miller <davem@davemloft.net>
Sun, 1 Nov 2015 17:14:47 +0000 (12:14 -0500)
commitea3803c193df18d8353d6c8d77034066a08c19f5
tree9af9acb0d01bd0190ccb035b0c1a21508cbc0af6
parent24c39de0091197f4c1f1a18a7c31e540000dc3b8
VSOCK: define VSOCK_SS_LISTEN once only

The SS_LISTEN socket state is defined by both af_vsock.c and
vmci_transport.c.  This is risky since the value could be changed in one
file and the other would be out of sync.

Rename from SS_LISTEN to VSOCK_SS_LISTEN since the constant is not part
of enum socket_state (SS_CONNECTED, ...).  This way it is clear that the
constant is vsock-specific.

The big text reflow in af_vsock.c was necessary to keep to the maximum
line length.  Text is unchanged except for s/SS_LISTEN/VSOCK_SS_LISTEN/.

Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/af_vsock.h
net/vmw_vsock/af_vsock.c
net/vmw_vsock/vmci_transport.c