diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2022-02-24 08:08:50 +0100 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2022-02-26 06:58:01 +0100 |
commit | 3a67b8bb0d24f1b79f066257c8536d85b0e3ae83 (patch) | |
tree | efee609ade1b8e1eb540d64da5d77291615128f3 /src/network/networkd-link.h | |
parent | Merge pull request #22619 from yuwata/network-netdev-cleanups (diff) | |
download | systemd-3a67b8bb0d24f1b79f066257c8536d85b0e3ae83.tar.xz systemd-3a67b8bb0d24f1b79f066257c8536d85b0e3ae83.zip |
network: traffic control: drop meta from QDisc and TClass
Since #22248, it is not necessary to manage QDisc and TClass in same Set
or Hashmap. Let's manage them independently.
Diffstat (limited to 'src/network/networkd-link.h')
-rw-r--r-- | src/network/networkd-link.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/network/networkd-link.h b/src/network/networkd-link.h index 645a8e7147..733ac128ef 100644 --- a/src/network/networkd-link.h +++ b/src/network/networkd-link.h @@ -113,7 +113,8 @@ typedef struct Link { Set *neighbors; Set *routes; Set *nexthops; - Set *traffic_control; + Set *qdiscs; + Set *tclasses; sd_dhcp_client *dhcp_client; sd_dhcp_lease *dhcp_lease; |