search for: d021c344051a

Displaying 6 results from an estimated 6 matches for "d021c344051a".

Did you mean: d021c344051af
2023 Jul 29
1
[PATCH net-next] vsock: Remove unused function declarations
These are never implemented since introduction in commit d021c344051a ("VSOCK: Introduce VM Sockets") Signed-off-by: Yue Haibing <yuehaibing at huawei.com> --- net/vmw_vsock/vmci_transport.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/net/vmw_vsock/vmci_transport.h b/net/vmw_vsock/vmci_transport.h index b7b072194282..dbda3ababa14 100644 --...
2018 Dec 18
1
[PATCH v2] VSOCK: Send reset control packet when socket is partially bound
...ed to send the reset silently drops the reset packet if the sending socket isn't bound to a remote address (as is the case for a bound socket not yet in the listening state). This change fixes this by using the src of the incoming packet as destination for the reset packet in this case. Fixes: d021c344051a ("VSOCK: Introduce VM Sockets") Reviewed-by: Adit Ranadive <aditr at vmware.com> Reviewed-by: Vishnu Dasa <vdasa at vmware.com> Signed-off-by: Jorgen Hansen <jhansen at vmware.com> --- v1 -> v2: - Changed order of local variables net/vmw_vsock/vmci_transport.c | 67...
2023 Aug 04
0
[PATCH -next] af_vsock: Remove unused declaration vsock_release_pending()/vsock_init_tap()
On Thu, Aug 03, 2023 at 09:33:41PM +0200, Simon Horman wrote: >On Thu, Aug 03, 2023 at 09:45:07PM +0800, Yue Haibing wrote: >> Commit d021c344051a ("VSOCK: Introduce VM Sockets") declared but never implemented >> vsock_release_pending(). Also vsock_init_tap() never implemented since introduction >> in commit 531b374834c8 ("VSOCK: Add vsockmon tap functions"). >> >> Signed-off-by: Yue Haibing <yue...
2023 May 11
0
[PATCH] vsock: bugfix port residue in server
...in the community >>>and found similar issue. >>> >> >>In order to backport it to the stable kernels, we should add a Fixes tag: >>https://www.kernel.org/doc/html/v4.17/process/submitting-patches.html#describe-your-changes >> >> >OK, I add a Fixes: d021c344051a ("VSOCK: Introduce VM Sockets") in the >new patch. > >I put the new patch with v2 title in the attachment, please check. LGTM (great to have added the net tag!), but please post as plain text like v1. Thanks, Stefano
2023 May 11
0
[PATCH net v2] vsock: avoid to close connected socket after the timeout
...tate is ESTABLISHED, it means the connection >is established, the client should not set the sk state to CLOSE > >Note: I encountered this issue on kernel-4.18, which can be fixed by >this patch. Then I checked the latest code in the community >and found similar issue. > >Fixes: d021c344051a ("VSOCK: Introduce VM Sockets") >Signed-off-by: Zhuang Shengen <zhuangshengen at huawei.com> >--- > net/vmw_vsock/af_vsock.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) The patch LGTM: Reviewed-by: Stefano Garzarella <sgarzare at redhat.com> I noticed...
2018 Dec 12
1
[PATCH] VSOCK: Send reset control packet when socket is partially bound
...ed to send the reset silently drops the reset packet if the sending socket isn't bound to a remote address (as is the case for a bound socket not yet in the listening state). This change fixes this by using the src of the incoming packet as destination for the reset packet in this case. Fixes: d021c344051a ("VSOCK: Introduce VM Sockets") Reviewed-by: Adit Ranadive <aditr at vmware.com> Reviewed-by: Vishnu Dasa <vdasa at vmware.com> Signed-off-by: Jorgen Hansen <jhansen at vmware.com> --- net/vmw_vsock/vmci_transport.c | 67 +++++++++++++++++++++++++++++++----------- 1 fil...