]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/network/tc/fq-pie.h
8de9593c44fa6012fd91e68574555b148fd1e923
[thirdparty/systemd.git] / src / network / tc / fq-pie.h
1 /* SPDX-License-Identifier: LGPL-2.1+
2 * Copyright © 2020 VMware, Inc. */
3 #pragma once
4
5 #include "conf-parser.h"
6 #include "qdisc.h"
7
8 typedef struct FlowQueuePIE {
9 QDisc meta;
10
11 uint32_t packet_limit;
12 } FlowQueuePIE;
13
14 DEFINE_QDISC_CAST(FQ_PIE, FlowQueuePIE);
15 extern const QDiscVTable fq_pie_vtable;
16
17 CONFIG_PARSER_PROTOTYPE(config_parse_fq_pie_packet_limit);