VSOCK: fix outdated sk_state value in hvs_release()
[ Upstream commitc9d3fe9da0
] Since commit3b4477d2dc
("VSOCK: use TCP state constants for sk_state") VSOCK has used TCP_* constants for sk_state. Commitb4562ca792
("hv_sock: add locking in the open/close/release code paths") reintroduced the SS_DISCONNECTING constant. This patch replaces the old SS_DISCONNECTING with the new TCP_CLOSING constant. CC: Dexuan Cui <decui@microsoft.com> CC: Cathy Avery <cavery@redhat.com> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> Reviewed-by: Jorgen Hansen <jhansen@vmware.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Sasha Levin <alexander.levin@verizon.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Родитель
8001a37b83
Коммит
034ddb54c3
|
@ -488,7 +488,7 @@ static void hvs_release(struct vsock_sock *vsk)
|
|||
|
||||
lock_sock(sk);
|
||||
|
||||
sk->sk_state = SS_DISCONNECTING;
|
||||
sk->sk_state = TCP_CLOSING;
|
||||
vsock_remove_sock(vsk);
|
||||
|
||||
release_sock(sk);
|
||||
|
|
Загрузка…
Ссылка в новой задаче