From: Panu Matilainen <pmatilai-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
To: "Ananyev,
Konstantin"
<konstantin.ananyev-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>,
"dev-VfR2kkLFssw@public.gmane.org"
<dev-VfR2kkLFssw@public.gmane.org>
Subject: Re: [PATCH] i40e: fix build with gcc 5
Date: Thu, 19 Feb 2015 13:09:53 +0200 [thread overview]
Message-ID: <54E5C481.6020701@redhat.com> (raw)
In-Reply-To: <2601191342CEEE43887BDE71AB977258213F0C28-pww93C2UFcwu0RiL9chJVbfspsVTdybXVpNB7YpNyf8@public.gmane.org>
On 02/19/2015 01:05 PM, Ananyev, Konstantin wrote:
>
>
>> -----Original Message-----
>> From: dev [mailto:dev-bounces-VfR2kkLFssw@public.gmane.org] On Behalf Of Panu Matilainen
>> Sent: Thursday, February 19, 2015 10:25 AM
>> To: dev-VfR2kkLFssw@public.gmane.org
>> Subject: [dpdk-dev] [PATCH] i40e: fix build with gcc 5
>>
>> Eliminate embiguity in the condition which trips up a "logical not
>> is only applied to the left..." warning from gcc 5, causing build
>> failure with -Werror.
>>
>> Signed-off-by: Panu Matilainen <pmatilai-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
>> ---
>> lib/librte_pmd_i40e/i40e_rxtx.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/lib/librte_pmd_i40e/i40e_rxtx.c b/lib/librte_pmd_i40e/i40e_rxtx.c
>> index c9f1026..ede5405 100644
>> --- a/lib/librte_pmd_i40e/i40e_rxtx.c
>> +++ b/lib/librte_pmd_i40e/i40e_rxtx.c
>> @@ -613,7 +613,7 @@ check_rx_burst_bulk_alloc_preconditions(__rte_unused struct i40e_rx_queue *rxq)
>> "rxq->nb_rx_desc=%d",
>> rxq->rx_free_thresh, rxq->nb_rx_desc);
>> ret = -EINVAL;
>> - } else if (!(rxq->nb_rx_desc % rxq->rx_free_thresh) == 0) {
>> + } else if (!(rxq->nb_rx_desc % rxq->rx_free_thresh == 0)) {
>
> Why just not:
> else if (rxq->nb_rx_desc % rxq->rx_free_thresh != 0)
> ?
The same occurred to me right after hitting send, it'll make it a whole
lot more obvious. I'll send another version.
- Panu -
next prev parent reply other threads:[~2015-02-19 11:09 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-02-19 10:25 [PATCH] ixgbe: fix build with gcc 5 Panu Matilainen
[not found] ` <a90ae275e7fc4bac15fcef89119accdf1821b552.1424341431.git.pmatilai-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2015-02-19 10:25 ` [PATCH] i40e: " Panu Matilainen
[not found] ` <442c1d71592455d2f3c8df4cc944cc48c1092fc6.1424341431.git.pmatilai-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2015-02-19 11:05 ` Ananyev, Konstantin
[not found] ` <2601191342CEEE43887BDE71AB977258213F0C28-pww93C2UFcwu0RiL9chJVbfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2015-02-19 11:09 ` Panu Matilainen [this message]
2015-02-19 11:21 ` [PATCH v2] " Panu Matilainen
[not found] ` <581bc65f3701e08b035e4d08fbd2831e03c030d8.1424344715.git.pmatilai-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2015-02-19 11:41 ` Ananyev, Konstantin
[not found] ` <2601191342CEEE43887BDE71AB977258213F0C8F-pww93C2UFcwu0RiL9chJVbfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2015-02-20 14:11 ` Thomas Monjalon
2015-02-19 12:02 ` [PATCH] ixgbe: " Ananyev, Konstantin
[not found] ` <2601191342CEEE43887BDE71AB977258213F0CA8-pww93C2UFcwu0RiL9chJVbfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2015-02-19 12:37 ` Panu Matilainen
2015-02-19 13:07 ` Neil Horman
2015-02-24 13:13 ` [PATCH v2] " Panu Matilainen
[not found] ` <b185ffdaacf91cf99f0d6442e7fcf9a3a736b7fb.1424783608.git.pmatilai-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2015-02-24 13:45 ` Ananyev, Konstantin
[not found] ` <2601191342CEEE43887BDE71AB977258213F2123-pww93C2UFcwu0RiL9chJVbfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2015-02-25 15:26 ` Thomas Monjalon
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=54E5C481.6020701@redhat.com \
--to=pmatilai-h+wxahxf7alqt0dzr+alfa@public.gmane.org \
--cc=dev-VfR2kkLFssw@public.gmane.org \
--cc=konstantin.ananyev-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.