[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <0e9f41a9-e09c-9e28-7df1-efbe2eb69bbb@mellanox.com>
Date: Thu, 14 Nov 2019 08:24:31 +0000
From: Roi Dayan <roid@...lanox.com>
To: Stephen Hemminger <stephen@...workplumber.org>
CC: "netdev@...r.kernel.org" <netdev@...r.kernel.org>,
David Ahern <dsahern@...il.com>,
Jiri Pirko <jiri@...lanox.com>,
Eli Britstein <elibr@...lanox.com>
Subject: Re: [PATCH iproute2 1/5] tc_util: introduce a function to print
JSON/non-JSON masked numbers
On 2019-11-13 7:18 PM, Stephen Hemminger wrote:
> On Wed, 13 Nov 2019 12:12:41 +0200
> Roi Dayan <roid@...lanox.com> wrote:
>
>> +static void print_masked_type(__u32 type_max,
>> + __u32 (*rta_getattr_type)(const struct rtattr *),
>> + const char *name, struct rtattr *attr,
>> + struct rtattr *mask_attr)
>> +{
>> + SPRINT_BUF(namefrm);
>> + __u32 value, mask;
>> + SPRINT_BUF(out);
>> + size_t done;
>> +
>> + if (attr) {
>
> code is cleaner if you use short circuit return here. i.e
>
> if (!attr)
> return;
>
> ...
>
right. thanks for the comments. we'll fix it.
Powered by blists - more mailing lists