public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
blob 901d97216c67012de5ed7c283e509e2e55e9782a 1688 bytes (raw)

 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
 
/* 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
#include <linux/virtio_net.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;
}

/**
 * vu_set_element() - Initialize a vu_virtq_element
 * @elem:	Element to initialize
 * @out_sg:	One out iovec entry to set in elem
 * @in_sg:	One in iovec entry to set in elem
 */
static inline void vu_set_element(struct vu_virtq_element *elem,
				  struct iovec *out_sg, struct iovec *in_sg)
{
	elem->out_num = !!out_sg;
	elem->out_sg = out_sg;
	elem->in_num = !!in_sg;
	elem->in_sg = in_sg;
}

void vu_init_elem(struct vu_virtq_element *elem, struct iovec *iov,
		  int elem_cnt);
int vu_collect(struct vu_dev *vdev, struct vu_virtq *vq,
	       struct vu_virtq_element *elem, int max_elem, size_t size,
	       size_t *frame_size);
void vu_set_vnethdr(const struct vu_dev *vdev,
		    struct virtio_net_hdr_mrg_rxbuf *vnethdr,
                    int num_buffers);
void vu_flush(const struct vu_dev *vdev, struct vu_virtq *vq,
	      struct vu_virtq_element *elem, int elem_cnt);
void vu_kick_cb(struct vu_dev *vdev, union epoll_ref ref,
		const struct timespec *now);
int vu_send_single(const struct ctx *c, const void *buf, size_t size);
#endif /* VU_COMMON_H */

debug log:

solving 901d97216c67 ...
found 901d97216c67 in https://passt.top/passt

Code repositories for project(s) associated with this public inbox

	https://passt.top/passt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for IMAP folder(s).