* Patch "vhost-vsock: fix orphan connection reset" has been added to the 4.8-stable tree
@ 2016-12-12 22:47 gregkh
0 siblings, 0 replies; only message in thread
From: gregkh @ 2016-12-12 22:47 UTC (permalink / raw)
To: bergwolf, davem, gregkh, stefanha; +Cc: stable, stable-commits
This is a note to let you know that I've just added the patch titled
vhost-vsock: fix orphan connection reset
to the 4.8-stable tree which can be found at:
http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary
The filename of the patch is:
vhost-vsock-fix-orphan-connection-reset.patch
and it can be found in the queue-4.8 subdirectory.
If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@vger.kernel.org> know about it.
>From c4587631c7bad47c045e081d1553cd73a23be59a Mon Sep 17 00:00:00 2001
From: Peng Tao <bergwolf@gmail.com>
Date: Fri, 9 Dec 2016 01:10:46 +0800
Subject: vhost-vsock: fix orphan connection reset
From: Peng Tao <bergwolf@gmail.com>
commit c4587631c7bad47c045e081d1553cd73a23be59a upstream.
local_addr.svm_cid is host cid. We should check guest cid instead,
which is remote_addr.svm_cid. Otherwise we end up resetting all
connections to all guests.
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Peng Tao <bergwolf@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
drivers/vhost/vsock.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/drivers/vhost/vsock.c
+++ b/drivers/vhost/vsock.c
@@ -506,7 +506,7 @@ static void vhost_vsock_reset_orphans(st
* executing.
*/
- if (!vhost_vsock_get(vsk->local_addr.svm_cid)) {
+ if (!vhost_vsock_get(vsk->remote_addr.svm_cid)) {
sock_set_flag(sk, SOCK_DONE);
vsk->peer_shutdown = SHUTDOWN_MASK;
sk->sk_state = SS_UNCONNECTED;
Patches currently in stable-queue which might be from bergwolf@gmail.com are
queue-4.8/vhost-vsock-fix-orphan-connection-reset.patch
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2016-12-12 22:47 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-12-12 22:47 Patch "vhost-vsock: fix orphan connection reset" has been added to the 4.8-stable tree gregkh
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).