public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
blob d2ea46bd379bc95aef96f879d22d465682477684 860 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(const struct vu_dev *vdev, void *base)
{
	return ((char *)base + vdev->hdrlen);
}

static inline void *vu_ip(const struct vu_dev *vdev, void *base)
{
	return (struct ethhdr *)vu_eth(vdev, base) + 1;
}

static inline void *vu_payloadv4(const struct vu_dev *vdev, void *base)
{
	return (struct iphdr *)vu_ip(vdev, base) + 1;
}

static inline void *vu_payloadv6(const struct vu_dev *vdev, void *base)
{
	return (struct ipv6hdr *)vu_ip(vdev, 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 d2ea46bd379b ...
found d2ea46bd379b in https://archives.passt.top/passt-dev/20240815155024.827956-5-lvivier@redhat.com/ ||
	https://archives.passt.top/passt-dev/20240906160455.2088854-5-lvivier@redhat.com/

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

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

skipping https://archives.passt.top/passt-dev/20240906160455.2088854-5-lvivier@redhat.com/ for d2ea46bd379b
index at:
100644 d2ea46bd379bc95aef96f879d22d465682477684	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).