dev.dpdk.org archive mirror
 help / color / mirror / Atom feed
From: David Marchand <david.marchand-pdR9zngts4EAvxtiuMwx3w@public.gmane.org>
To: Jay Rolette <rolette-bIuJOMs36aleGPcbtGPokg@public.gmane.org>
Cc: "dev-VfR2kkLFssw@public.gmane.org" <dev-VfR2kkLFssw@public.gmane.org>
Subject: Re: [PATCH v2 14/17] e1000: clean log messages
Date: Tue, 2 Sep 2014 21:19:37 +0200	[thread overview]
Message-ID: <CALwxeUvLyFthbf8aaEpGkbCvhsWy+M7dfQr4+VusurBAOddBvA@mail.gmail.com> (raw)
In-Reply-To: <CADNuJVqhOy6AfYO5OuUn=kmQsBVkwrRunXKXKkQ88bexPtWgsg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>

On Tue, Sep 2, 2014 at 9:05 PM, Jay Rolette <rolette-bIuJOMs36aleGPcbtGPokg@public.gmane.org> wrote:

> Couple of minor nits noted. The bigger feedback would be that if you could
> keep the "whitespace / line-wrapping / formatting" only changes in separate
> patches, these reviews would be easier to get through.
>

Hum, indeed, I should have done this.
Will keep in mind.


        /* Free memory prior to re-allocation if needed */
>>         if (dev->data->tx_queues[queue_idx] != NULL) {
>> @@ -1271,7 +1271,7 @@ eth_igb_tx_queue_setup(struct rte_eth_dev *dev,
>>                 igb_tx_queue_release(txq);
>>                 return (-ENOMEM);
>>         }
>> -       PMD_INIT_LOG(DEBUG, "sw_ring=%p hw_ring=%p
>> dma_addr=0x%"PRIx64"\n",
>> +       PMD_INIT_LOG(DEBUG, "sw_ring=%p hw_ring=%p dma_addr=0x%"PRIx64"",
>>
> The empty string after PRIx64 is extraneous
>
>
>>                      txq->sw_ring, txq->tx_ring, txq->tx_ring_phys_addr);
>>
>>         igb_reset_tx_queue(txq, dev);
>> @@ -1409,7 +1409,7 @@ eth_igb_rx_queue_setup(struct rte_eth_dev *dev,
>>                 igb_rx_queue_release(rxq);
>>                 return (-ENOMEM);
>>         }
>> -       PMD_INIT_LOG(DEBUG, "sw_ring=%p hw_ring=%p
>> dma_addr=0x%"PRIx64"\n",
>> +       PMD_INIT_LOG(DEBUG, "sw_ring=%p hw_ring=%p dma_addr=0x%"PRIx64"",
>>
> The empty string after PRIx64 is extraneous
>
>

Ok, I will update.

Thanks.


-- 
David Marchand

  parent reply	other threads:[~2014-09-02 19:19 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-09-01 10:24 [PATCH v2 00/17] cleanup logs in main PMDs David Marchand
     [not found] ` <1409567080-27083-1-git-send-email-david.marchand-pdR9zngts4EAvxtiuMwx3w@public.gmane.org>
2014-09-01 10:24   ` [PATCH v2 01/17] ixgbe: use the right debug macro David Marchand
     [not found]     ` <1409567080-27083-2-git-send-email-david.marchand-pdR9zngts4EAvxtiuMwx3w@public.gmane.org>
2014-09-02 13:43       ` Jay Rolette
     [not found]         ` <CADNuJVpLLfiC_ROBkYQguHUGTgXNC1Bdu7HwveXcA23_Q3twxA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2014-09-02 14:16           ` David Marchand
     [not found]             ` <CALwxeUuC2O-YqB8yG01ZiBE2C7qQeCR2Km2gQ0i1fk+CHqXJ2w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2014-09-02 14:21               ` Thomas Monjalon
2014-09-02 17:57                 ` Jay Rolette
2014-09-01 10:24   ` [PATCH v2 02/17] ixgbe/base: add a _RAW macro for use by shared code David Marchand
2014-09-01 10:24   ` [PATCH v2 03/17] ixgbe: clean log messages David Marchand
     [not found]     ` <1409567080-27083-4-git-send-email-david.marchand-pdR9zngts4EAvxtiuMwx3w@public.gmane.org>
2014-09-02 15:19       ` Jay Rolette
2014-09-01 10:24   ` [PATCH v2 04/17] ixgbe: always log init messages David Marchand
2014-09-01 10:24   ` [PATCH v2 05/17] ixgbe: add a message when forcing scatter mode David Marchand
2014-09-01 10:24   ` [PATCH v2 06/17] ixgbe: add log messages when rx bulk mode is not usable David Marchand
2014-09-01 10:24   ` [PATCH v2 07/17] i40e: use the right debug macro David Marchand
     [not found]     ` <1409567080-27083-8-git-send-email-david.marchand-pdR9zngts4EAvxtiuMwx3w@public.gmane.org>
2014-09-02 18:25       ` Jay Rolette
2014-09-01 10:24   ` [PATCH v2 08/17] i40e/base: add a _RAW macro for use by shared code David Marchand
2014-09-01 10:24   ` [PATCH v2 09/17] i40e: clean log messages David Marchand
     [not found]     ` <1409567080-27083-10-git-send-email-david.marchand-pdR9zngts4EAvxtiuMwx3w@public.gmane.org>
2014-09-02 18:20       ` Jay Rolette
2014-09-01 10:24   ` [PATCH v2 10/17] i40e: always log init messages David Marchand
2014-09-01 10:24   ` [PATCH v2 11/17] i40e: add log messages when rx bulk mode is not usable David Marchand
2014-09-01 10:24   ` [PATCH v2 12/17] e1000: use the right debug macro David Marchand
     [not found]     ` <1409567080-27083-13-git-send-email-david.marchand-pdR9zngts4EAvxtiuMwx3w@public.gmane.org>
2014-09-02 18:29       ` Jay Rolette
2014-09-01 10:24   ` [PATCH v2 13/17] e1000/base: add a _RAW macro for use by shared code David Marchand
2014-09-01 10:24   ` [PATCH v2 14/17] e1000: clean log messages David Marchand
     [not found]     ` <1409567080-27083-15-git-send-email-david.marchand-pdR9zngts4EAvxtiuMwx3w@public.gmane.org>
2014-09-02 19:05       ` Jay Rolette
     [not found]         ` <CADNuJVqhOy6AfYO5OuUn=kmQsBVkwrRunXKXKkQ88bexPtWgsg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2014-09-02 19:19           ` David Marchand [this message]
2014-09-01 10:24   ` [PATCH v2 15/17] e1000: always log init messages David Marchand
2014-09-01 10:24   ` [PATCH v2 16/17] e1000: add a message when forcing scatter mode David Marchand
     [not found]     ` <1409567080-27083-17-git-send-email-david.marchand-pdR9zngts4EAvxtiuMwx3w@public.gmane.org>
2014-09-02 19:20       ` David Marchand
2014-09-01 10:24   ` [PATCH v2 17/17] eal: set log level from command line David Marchand
2014-09-12 12:32   ` [PATCH v2 00/17] cleanup logs in main PMDs Bruce Richardson

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=CALwxeUvLyFthbf8aaEpGkbCvhsWy+M7dfQr4+VusurBAOddBvA@mail.gmail.com \
    --to=david.marchand-pdr9zngts4eavxtiumwx3w@public.gmane.org \
    --cc=dev-VfR2kkLFssw@public.gmane.org \
    --cc=rolette-bIuJOMs36aleGPcbtGPokg@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).