From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Marchand Subject: Re: [PATCH v2 14/17] e1000: clean log messages Date: Tue, 2 Sep 2014 21:19:37 +0200 Message-ID: References: <1409567080-27083-1-git-send-email-david.marchand@6wind.com> <1409567080-27083-15-git-send-email-david.marchand@6wind.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Cc: "dev-VfR2kkLFssw@public.gmane.org" To: Jay Rolette Return-path: In-Reply-To: List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces-VfR2kkLFssw@public.gmane.org Sender: "dev" On Tue, Sep 2, 2014 at 9:05 PM, Jay Rolette 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