summaryrefslogtreecommitdiffstats
path: root/include/linux/virtio_vsock.h
diff options
context:
space:
mode:
authorPeng Tao2017-03-15 02:32:14 +0100
committerDavid S. Miller2017-03-21 22:41:46 +0100
commit36d277bac8080202684e67162ebb157f16631581 (patch)
tree0fe31321089fa4634de3ad403b98078ca84a8986 /include/linux/virtio_vsock.h
parentcrypto: deadlock between crypto_alg_sem/rtnl_mutex/genl_mutex (diff)
downloadkernel-qcow2-linux-36d277bac8080202684e67162ebb157f16631581.tar.gz
kernel-qcow2-linux-36d277bac8080202684e67162ebb157f16631581.tar.xz
kernel-qcow2-linux-36d277bac8080202684e67162ebb157f16631581.zip
vsock: track pkt owner vsock
So that we can cancel a queued pkt later if necessary. Signed-off-by: Peng Tao <bergwolf@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/virtio_vsock.h')
-rw-r--r--include/linux/virtio_vsock.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/virtio_vsock.h b/include/linux/virtio_vsock.h
index 9638bfeb0d1f..584f9a647ad4 100644
--- a/include/linux/virtio_vsock.h
+++ b/include/linux/virtio_vsock.h
@@ -48,6 +48,8 @@ struct virtio_vsock_pkt {
struct virtio_vsock_hdr hdr;
struct work_struct work;
struct list_head list;
+ /* socket refcnt not held, only use for cancellation */
+ struct vsock_sock *vsk;
void *buf;
u32 len;
u32 off;
@@ -56,6 +58,7 @@ struct virtio_vsock_pkt {
struct virtio_vsock_pkt_info {
u32 remote_cid, remote_port;
+ struct vsock_sock *vsk;
struct msghdr *msg;
u32 pkt_len;
u16 type;