Searched defs:virtio_vsock_hdr (Results 1 – 3 of 3) sorted by relevance
56 struct virtio_vsock_hdr { struct57 __le64 src_cid;58 __le64 dst_cid;59 __le32 src_port;60 __le32 dst_port;61 __le32 len;62 __le16 type; /* enum virtio_vsock_type */63 __le16 op; /* enum virtio_vsock_op */64 __le32 flags;65 __le32 buf_alloc;[all …]
56 struct virtio_vsock_hdr { struct57 uint64_t src_cid;58 uint64_t dst_cid;59 uint32_t src_port;60 uint32_t dst_port;61 uint32_t len;62 uint16_t type; /* enum virtio_vsock_type */63 uint16_t op; /* enum virtio_vsock_op */64 uint32_t flags;65 uint32_t buf_alloc;[all …]
19 static inline struct virtio_vsock_hdr *virtio_vsock_hdr(struct sk_buff *skb) in virtio_vsock_hdr() function