]> git.ipfire.org Git - thirdparty/iproute2.git/commitdiff
bridge: Provide rta_type()
authorBenjamin Poirier <bpoirier@nvidia.com>
Mon, 11 Dec 2023 14:07:32 +0000 (09:07 -0500)
committerStephen Hemminger <stephen@networkplumber.org>
Fri, 22 Dec 2023 17:58:16 +0000 (09:58 -0800)
Factor out the repeated code pattern
rta_type = attr->rta_type & NLA_TYPE_MASK
into a helper which is similar to the existing kernel function nla_type().

Reviewed-by: Petr Machata <petrm@nvidia.com>
Tested-by: Petr Machata <petrm@nvidia.com>
Signed-off-by: Benjamin Poirier <bpoirier@nvidia.com>
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
bridge/vlan.c
bridge/vni.c
include/libnetlink.h

index 05e6a6206d8d20175ac26e9211b1eb7bcc15de68..5352eb24fb4c4a2c218195e4af8c0d867bf8adb7 100644 (file)
@@ -851,7 +851,7 @@ static void print_vlan_global_opts(struct rtattr *a, int ifindex)
        struct rtattr *vtb[BRIDGE_VLANDB_GOPTS_MAX + 1], *vattr;
        __u16 vid, vrange = 0;
 
-       if ((a->rta_type & NLA_TYPE_MASK) != BRIDGE_VLANDB_GLOBAL_OPTIONS)
+       if (rta_type(a) != BRIDGE_VLANDB_GLOBAL_OPTIONS)
                return;
 
        parse_rtattr_flags(vtb, BRIDGE_VLANDB_GOPTS_MAX, RTA_DATA(a),
@@ -960,7 +960,7 @@ static void print_vlan_opts(struct rtattr *a, int ifindex)
        __u16 vrange = 0;
        __u8 state = 0;
 
-       if ((a->rta_type & NLA_TYPE_MASK) != BRIDGE_VLANDB_ENTRY)
+       if (rta_type(a) != BRIDGE_VLANDB_ENTRY)
                return;
 
        parse_rtattr_flags(vtb, BRIDGE_VLANDB_ENTRY_MAX, RTA_DATA(a),
@@ -1086,14 +1086,14 @@ int print_vlan_rtm(struct nlmsghdr *n, void *arg, bool monitor, bool global_only
 
        rem = len;
        for (a = BRVLAN_RTA(bvm); RTA_OK(a, rem); a = RTA_NEXT(a, rem)) {
-               unsigned short rta_type = a->rta_type & NLA_TYPE_MASK;
+               unsigned short attr_type = rta_type(a);
 
                /* skip unknown attributes */
-               if (rta_type > BRIDGE_VLANDB_MAX ||
-                   (global_only && rta_type != BRIDGE_VLANDB_GLOBAL_OPTIONS))
+               if (attr_type > BRIDGE_VLANDB_MAX ||
+                   (global_only && attr_type != BRIDGE_VLANDB_GLOBAL_OPTIONS))
                        continue;
 
-               switch (rta_type) {
+               switch (attr_type) {
                case BRIDGE_VLANDB_ENTRY:
                        print_vlan_opts(a, bvm->ifindex);
                        break;
index ffc3e18879617d43540f0cb633d9edf0180cd412..a7abe6de5df0c842a57b0b53aecca3f129187636 100644 (file)
@@ -319,9 +319,7 @@ int print_vnifilter_rtm(struct nlmsghdr *n, void *arg)
 
        rem = len;
        for (t = TUNNEL_RTA(tmsg); RTA_OK(t, rem); t = RTA_NEXT(t, rem)) {
-               unsigned short rta_type = t->rta_type & NLA_TYPE_MASK;
-
-               if (rta_type != VXLAN_VNIFILTER_ENTRY)
+               if (rta_type(t) != VXLAN_VNIFILTER_ENTRY)
                        continue;
 
                if (!opened) {
index 39ed87a7976e477b4a5bbae4ae54b4f7f58c2e11..ad7e71272bfa9a93c45df8b00e6dea4ee9b766c5 100644 (file)
@@ -275,6 +275,10 @@ static inline const char *rta_getattr_str(const struct rtattr *rta)
 {
        return (const char *)RTA_DATA(rta);
 }
+static inline int rta_type(const struct rtattr *rta)
+{
+       return rta->rta_type & NLA_TYPE_MASK;
+}
 
 int rtnl_listen_all_nsid(struct rtnl_handle *);
 int rtnl_listen(struct rtnl_handle *, rtnl_listen_filter_t handler,