public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
blob 611c44a39142d05d355bde225f5835285c1d767a 613 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
 
/* SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright Red Hat
 * Author: Laurent Vivier <lvivier@redhat.com>
 *
 * common_vu.c - vhost-user common UDP and TCP functions
 */

#include <unistd.h>
#include <sys/uio.h>

#include "util.h"
#include "passt.h"
#include "vhost_user.h"
#include "vu_common.h"

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)
{
	int i;

	for (i = 0; i < iov_used; i++)
		vu_queue_fill(vq, &elem[i], iov_vu[i].iov_len, i);

	vu_queue_flush(vq, iov_used);
	vu_queue_notify(vdev, vq);
}

debug log:

solving 611c44a39142 ...
found 611c44a39142 in https://archives.passt.top/passt-dev/20240815155024.827956-5-lvivier@redhat.com/

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

Checking patch vu_common.c...
Applied patch vu_common.c cleanly.

index at:
100644 611c44a39142d05d355bde225f5835285c1d767a	vu_common.c

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