public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
blob 20950b44493cb915d41870b9fd7cab0ea0ecd125 761 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
 
/* 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 */

debug log:

solving 20950b44493c ...
found 20950b44493c in https://archives.passt.top/passt-dev/20240913162036.3635783-5-lvivier@redhat.com/

applying [1/1] https://archives.passt.top/passt-dev/20240913162036.3635783-5-lvivier@redhat.com/
diff --git a/vu_common.h b/vu_common.h
new file mode 100644
index 000000000000..20950b44493c

Checking patch vu_common.h...
Applied patch vu_common.h cleanly.

index at:
100644 20950b44493cb915d41870b9fd7cab0ea0ecd125	vu_common.h

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).