[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <c9d3f0e1-d2c9-aedb-385c-82a8cb077253@web.de>
Date: Sat, 31 Aug 2019 13:25:29 +0200
From: Markus Elfring <Markus.Elfring@....de>
To: Denis Efremov <efremov@...ux.com>, linux-wimax@...el.com
Cc: Andrew Morton <akpm@...ux-foundation.org>,
Inaky Perez-Gonzalez <inaky.perez-gonzalez@...el.com>,
Joe Perches <joe@...ches.com>, linux-kernel@...r.kernel.org
Subject: Re: [PATCH v3 06/11] wimax/i2400m: remove unlikely() from WARN*()
condition
> pad_buf = i2400m_tx_fifo_push(i2400m, padding, 0, 0);
> - if (unlikely(WARN_ON(pad_buf == NULL
> - || pad_buf == TAIL_FULL))) {
> + if (WARN_ON(pad_buf == NULL || pad_buf == TAIL_FULL)) {
How do you think about to use the following code variant?
+ if (WARN_ON(!pad_buf || pad_buf == TAIL_FULL)) {
Regards,
Markus
Powered by blists - more mailing lists