[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1382297884.2041.48.camel@joe-AO722>
Date: Sun, 20 Oct 2013 12:38:04 -0700
From: Joe Perches <joe@...ches.com>
To: Tino Reichardt <milky-kernel@...ilk.de>
Cc: netdev@...r.kernel.org, "David S. Miller" <davem@...emloft.net>
Subject: Re: [PATCHSET net-next v3 00/07] Support for byte queue limits on
various drivers
On Sun, 2013-10-20 at 21:23 +0200, Tino Reichardt wrote:
> Hello again,
Hi again Tino.
> "if (likely(bql_disable == false))" was replaced by
> "if (unlikely(bql_disable))" ...
Sorry for suggesting this, but it's not an
equivalent transform unless the then & else
paths are also inverted.
Here there are no else branches.
Doesn't this need to be?
from:
if (likely(bql_disable == false))
to:
if (likely(!bql_disable))
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists