public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
blob 3618f2137419aeba21717b094caa797fffa9de76 1694 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
61
62
63
 
/* SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright (c) 2022 Red Hat GmbH
 * Author: Stefano Brivio <sbrivio@redhat.com>
 */

#ifndef PACKET_H
#define PACKET_H

#include <stdbool.h>

/**
 * struct pool - Generic pool of packets stored in nmemory
 * @size:	Number of usable descriptors for the pool
 * @count:	Number of used descriptors for the pool
 * @pkt:	Descriptors: see macros below
 */
struct pool {
	size_t size;
	size_t count;
	struct iovec pkt[];
};

void packet_add_do(struct pool *p, size_t len, const char *start,
		   const char *func, int line);
void *packet_get_do(const struct pool *p, const size_t idx,
		    size_t offset, size_t len, size_t *left,
		    const char *func, int line);
bool pool_full(const struct pool *p);
void pool_flush(struct pool *p);

#define packet_add(p, len, start)					\
	packet_add_do(p, len, start, __func__, __LINE__)

#define packet_get(p, idx, offset, len, left)				\
	packet_get_do(p, idx, offset, len, left, __func__, __LINE__)

#define packet_get_try(p, idx, offset, len, left)			\
	packet_get_do(p, idx, offset, len, left, NULL, 0)

#define PACKET_POOL_DECL(_name, _size)					\
struct _name ## _t {							\
	size_t size;							\
	size_t count;							\
	struct iovec pkt[_size];					\
}

#define PACKET_POOL_INIT_NOCAST(_size)					\
{									\
	.size = _size,							\
}

#define PACKET_POOL(name, size)						\
	PACKET_POOL_DECL(name, size) name =				\
		PACKET_POOL_INIT_NOCAST(size)

#define PACKET_INIT(name, size)						\
	(struct name ## _t) PACKET_POOL_INIT_NOCAST(size)

#define PACKET_POOL_P(name, size)					\
	PACKET_POOL(name ## _storage, size);				\
	struct pool *name = (struct pool *)&name ## _storage

#endif /* PACKET_H */

debug log:

solving 3618f213 ...
found 3618f213 in https://archives.passt.top/passt-dev/20241213120156.4123972-4-david@gibson.dropbear.id.au/
found 98eb8812 in https://archives.passt.top/passt-dev/20241213120156.4123972-3-david@gibson.dropbear.id.au/
found 85ee5508 in https://archives.passt.top/passt-dev/20241220083535.1372523-5-david@gibson.dropbear.id.au/ ||
	https://archives.passt.top/passt-dev/20241213120156.4123972-2-david@gibson.dropbear.id.au/
found 3f70e949 in https://passt.top/passt
preparing index
index prepared:
100644 3f70e949c066168f187fe8a18afc83a29327307b	packet.h

applying [1/3] https://archives.passt.top/passt-dev/20241220083535.1372523-5-david@gibson.dropbear.id.au/
diff --git a/packet.h b/packet.h
index 3f70e949..85ee5508 100644

Checking patch packet.h...
Applied patch packet.h cleanly.

skipping https://archives.passt.top/passt-dev/20241213120156.4123972-2-david@gibson.dropbear.id.au/ for 85ee5508
index at:
100644 85ee5508f95af3fdea849a80e790bc65e08c217c	packet.h

applying [2/3] https://archives.passt.top/passt-dev/20241213120156.4123972-3-david@gibson.dropbear.id.au/
diff --git a/packet.h b/packet.h
index 85ee5508..98eb8812 100644


applying [3/3] https://archives.passt.top/passt-dev/20241213120156.4123972-4-david@gibson.dropbear.id.au/
diff --git a/packet.h b/packet.h
index 98eb8812..3618f213 100644

Checking patch packet.h...
Applied patch packet.h cleanly.
Checking patch packet.h...
Applied patch packet.h cleanly.

index at:
100644 3618f2137419aeba21717b094caa797fffa9de76	packet.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).