1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
| | /* SPDX-License-Identifier: GPL-2.0-or-later
* Copyright Red Hat
* Author: Laurent Vivier <lvivier@redhat.com>
*
* 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 */
|