[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <cb5ec628-9274-5c09-1412-2c80b12890e2@gmail.com>
Date: Tue, 9 Jul 2019 11:11:24 -0600
From: David Ahern <dsahern@...il.com>
To: Parav Pandit <parav@...lanox.com>, netdev@...r.kernel.org
Cc: stephen@...workplumber.org, jiri@...lanox.com, dsahern@...nel.org
Subject: Re: [PATCH net-next iproute2] devlink: Show devlink port number
On 7/9/19 10:33 AM, Parav Pandit wrote:
> @@ -2806,6 +2806,11 @@ static void pr_out_port(struct dl *dl, struct nlattr **tb)
>
> pr_out_str(dl, "flavour", port_flavour_name(port_flavour));
> }
> + if (tb[DEVLINK_ATTR_PORT_NUMBER]) {
> + uint32_t port_number =
> + mnl_attr_get_u32(tb[DEVLINK_ATTR_PORT_NUMBER]);
declare and assign separately; nothing is gained when it is split across
lines like that.
> + pr_out_uint(dl, "port", port_number);
> + }
> if (tb[DEVLINK_ATTR_PORT_SPLIT_GROUP])
> pr_out_uint(dl, "split_group",
> mnl_attr_get_u32(tb[DEVLINK_ATTR_PORT_SPLIT_GROUP]));
Powered by blists - more mailing lists