[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <063D6719AE5E284EB5DD2968C1650D6DCFFC0145@AcuExch.aculab.com>
Date: Tue, 28 Mar 2017 14:13:03 +0000
From: David Laight <David.Laight@...LAB.COM>
To: 'simran singhal' <singhalsimran0@...il.com>,
"pablo@...filter.org" <pablo@...filter.org>
CC: "outreachy-kernel@...glegroups.com"
<outreachy-kernel@...glegroups.com>,
Jozsef Kadlecsik <kadlec@...ckhole.kfki.hu>,
"David S. Miller" <davem@...emloft.net>,
"netfilter-devel@...r.kernel.org" <netfilter-devel@...r.kernel.org>,
"coreteam@...filter.org" <coreteam@...filter.org>,
"netdev@...r.kernel.org" <netdev@...r.kernel.org>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>
Subject: RE: [PATCH] netfilter: ipset: Use max macro instead of ternary
operator
From: simran singhal
> Sent: 28 March 2017 14:33
> This patch replaces ternary operator with macro max as it shorter and
> thus increases code readability. Macro max return the maximum of the two
> compared values.
...
> /* Convert error codes to nomatch */
> - return (ret < 0 ? 0 : ret);
> + return max(0, ret);
It might be shorter but it isn't more readable.
David
Powered by blists - more mailing lists