[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <YJp2hwGLeYcOt+gu@lunn.ch>
Date: Tue, 11 May 2021 14:20:23 +0200
From: Andrew Lunn <andrew@...n.ch>
To: "Leizhen (ThunderTown)" <thunder.leizhen@...wei.com>
Cc: Rain River <rain.1986.08.12@...il.com>,
Zhu Yanjun <zyjzyj2000@...il.com>,
"David S . Miller" <davem@...emloft.net>,
Jakub Kicinski <kuba@...nel.org>,
netdev <netdev@...r.kernel.org>
Subject: Re: [PATCH 1/1] forcedeth: Delete a redundant condition branch
> If it must exist, it should be in the form of comments. Otherwise, the
> intuition is that there was a mistake in writing this code.
I agree that it could look like there is an error in the code. But
that is where the bot stops and the human takes over. When you read
the code, and understand what it does, you can see there is no
error. You should also look at the history. This is old code, if it
was broken, it would of been fixed by now, since the hulk bot has been
around for quiet a while.
For me, the optimization argument is not correct. We have a lot of
code, in macros for example, where we assume the compiler will
optimize it. Think about all the
if (IS_ENABLED(CONFIG_FOO))
{}
code. The code you are suggesting to change is also on the very slow
path. We want to optimize it for human understandability, not code
generation. It is much more important humans understand it, than the
few microsecods it takes the compiler to optimize it.
Andrew
Powered by blists - more mailing lists