From: Donatas Abraitis Date: Fri, 9 Aug 2024 13:33:52 +0000 (+0300) Subject: bgpd: Shrink rmap_change_flags to 2-bytes X-Git-Tag: base_10.2~208^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=5c84cddab8ec7fd4343ed7bc2c7602b01d4f6846;p=matthieu%2Ffrr.git bgpd: Shrink rmap_change_flags to 2-bytes 4 bytes is not needed for this thing clearly. Signed-off-by: Donatas Abraitis --- diff --git a/bgpd/bgp_attr.h b/bgpd/bgp_attr.h index 34393a0f1b..561024e7c8 100644 --- a/bgpd/bgp_attr.h +++ b/bgpd/bgp_attr.h @@ -209,7 +209,7 @@ struct attr { /* has the route-map changed any attribute? Used on the peer outbound side. */ - uint32_t rmap_change_flags; + uint16_t rmap_change_flags; /* Multi-Protocol Nexthop, AFI IPv6 */ struct in6_addr mp_nexthop_global;