[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <c1cb87c2-0107-7b0d-966f-b26f44b23d80@gmail.com>
Date: Wed, 16 Mar 2022 18:56:42 -0600
From: David Ahern <dsahern@...il.com>
To: Wojciech Drewek <wojciech.drewek@...el.com>, netdev@...r.kernel.org
Cc: stephen@...workplumber.org
Subject: Re: [PATCH iproute2-next v5 1/2] ip: GTP support in ip link
On 3/16/22 5:08 AM, Wojciech Drewek wrote:
> +static void gtp_print_opt(struct link_util *lu, FILE *f, struct rtattr *tb[])
> +{
> +
> + if (tb[IFLA_GTP_ROLE]) {
> + __u32 role = rta_getattr_u32(tb[IFLA_GTP_ROLE]);
> +
> + print_string(PRINT_ANY, "role", "role %s ",
> + role == GTP_ROLE_SGSN ? "sgsn" : "ggsn");
> + }
as a u32 does that mean more roles might get added? Seems like this
should have a attr to string converter that handles future additions.
Powered by blists - more mailing lists