public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
blob 9f49195f6df856ce5069d3952c89444ab042e8a9 1100 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
 
/* SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright Red Hat
 * Author: David Gibson <david@gibson.dropbear.id.au>
 *
 * Tracking for logical "flows" of packets.
 */
#ifndef FLOW_H
#define FLOW_H

/**
 * enum flow_type - Different types of packet flows we track
 */
enum flow_type {
	/* Represents an invalid or unused flow */
	FLOW_TYPE_NONE = 0,
	/* A TCP connection between a socket and tap interface */
	FLOW_TCP,
	/* A TCP connection between a host socket and ns socket */
	FLOW_TCP_SPLICE,

	FLOW_TYPE_MAX = FLOW_TCP_SPLICE,
};

extern const char *flow_type_str[];
#define FLOW_TYPE(f)							\
        ((f)->type <= FLOW_TYPE_MAX ? flow_type_str[(f)->type] : "?")

/**
 * struct flow_common - Common fields for packet flows
 * @type:	Type of packet flow
 */
struct flow_common {
	uint8_t		type;
};

#define FLOW_INDEX_BITS		17	/* 128k - 1 */
#define FLOW_MAX		MAX_FROM_BITS(FLOW_INDEX_BITS)

#define FLOW_TABLE_PRESSURE		30	/* % of FLOW_MAX */
#define FLOW_FILE_PRESSURE		30	/* % of c->nofile */

union flow;

void flow_table_compact(struct ctx *c, union flow *hole);

#endif /* FLOW_H */

debug log:

solving 9f49195 ...
found 9f49195 in https://archives.passt.top/passt-dev/20231123023629.2024938-6-david@gibson.dropbear.id.au/ ||
	https://archives.passt.top/passt-dev/20231126233348.1599864-6-david@gibson.dropbear.id.au/
found 57289a8 in https://archives.passt.top/passt-dev/20231123023629.2024938-4-david@gibson.dropbear.id.au/ ||
	https://archives.passt.top/passt-dev/20231126233348.1599864-3-david@gibson.dropbear.id.au/
found 88e6f0b in https://archives.passt.top/passt-dev/20231123023629.2024938-3-david@gibson.dropbear.id.au/ ||
	https://archives.passt.top/passt-dev/20231126233348.1599864-2-david@gibson.dropbear.id.au/

applying [1/3] https://archives.passt.top/passt-dev/20231123023629.2024938-3-david@gibson.dropbear.id.au/
diff --git a/flow.h b/flow.h
new file mode 100644
index 0000000..88e6f0b

Checking patch flow.h...
Applied patch flow.h cleanly.

skipping https://archives.passt.top/passt-dev/20231126233348.1599864-2-david@gibson.dropbear.id.au/ for 88e6f0b
index at:
100644 88e6f0b53cfaaf01bcf58ccd07ca6b6188d3dfb0	flow.h

applying [2/3] https://archives.passt.top/passt-dev/20231123023629.2024938-4-david@gibson.dropbear.id.au/
diff --git a/flow.h b/flow.h
index 88e6f0b..57289a8 100644

Checking patch flow.h...
Applied patch flow.h cleanly.

skipping https://archives.passt.top/passt-dev/20231126233348.1599864-3-david@gibson.dropbear.id.au/ for 57289a8
index at:
100644 57289a8ad2b697beff8a58ebbd11daa95142249b	flow.h

applying [3/3] https://archives.passt.top/passt-dev/20231123023629.2024938-6-david@gibson.dropbear.id.au/
diff --git a/flow.h b/flow.h
index 57289a8..9f49195 100644

Checking patch flow.h...
Applied patch flow.h cleanly.

skipping https://archives.passt.top/passt-dev/20231126233348.1599864-6-david@gibson.dropbear.id.au/ for 9f49195
index at:
100644 9f49195f6df856ce5069d3952c89444ab042e8a9	flow.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).