/* SPDX-License-Identifier: GPL-2.0-or-later * Copyright Red Hat * Author: Laurent Vivier * * vhost-user common UDP and TCP functions */ #ifndef VU_COMMON_H #define VU_COMMON_H static inline void *vu_eth(void *base) { return ((char *)base + sizeof(struct virtio_net_hdr_mrg_rxbuf)); } static inline void *vu_ip(void *base) { return (struct ethhdr *)vu_eth(base) + 1; } static inline void *vu_payloadv4(void *base) { return (struct iphdr *)vu_ip(base) + 1; } static inline void *vu_payloadv6(void *base) { return (struct ipv6hdr *)vu_ip(base) + 1; } void vu_send_frame(const struct vu_dev *vdev, struct vu_virtq *vq, struct vu_virtq_element *elem, const struct iovec *iov_vu, int iov_used); #endif /* VU_COMMON_H */