From mboxrd@z Thu Jan 1 00:00:00 1970 From: Santosh Shukla Subject: Re: [PATCH 27/28] net/vmxnet3: use eal I/O device memory read/write API Date: Wed, 14 Dec 2016 21:48:40 -0800 Message-ID: <20161215054839.GB10211@santosh-Latitude-E5530-non-vPro> References: <1481680558-4003-1-git-send-email-jerin.jacob@caviumnetworks.com> <1481680558-4003-28-git-send-email-jerin.jacob@caviumnetworks.com> <20161214025534.GG18991@yliu-dev.sh.intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Cc: Jerin Jacob , , , , , , , Yong Wang To: Yuanhan Liu Return-path: Received: from NAM03-BY2-obe.outbound.protection.outlook.com (mail-by2nam03on0083.outbound.protection.outlook.com [104.47.42.83]) by dpdk.org (Postfix) with ESMTP id 68F452934 for ; Thu, 15 Dec 2016 06:48:57 +0100 (CET) Content-Disposition: inline In-Reply-To: <20161214025534.GG18991@yliu-dev.sh.intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Wed, Dec 14, 2016 at 10:55:34AM +0800, Yuanhan Liu wrote: > On Wed, Dec 14, 2016 at 07:25:57AM +0530, Jerin Jacob wrote: > > From: Santosh Shukla > > > > Replace the raw I/O device memory read/write access with eal > > abstraction for I/O device memory read/write access to fix > > portability issues across different architectures. > > > > Signed-off-by: Santosh Shukla > > Signed-off-by: Jerin Jacob > > CC: Yong Wang > > --- > > drivers/net/vmxnet3/vmxnet3_ethdev.h | 14 ++++++++++---- > > 1 file changed, 10 insertions(+), 4 deletions(-) > > > > diff --git a/drivers/net/vmxnet3/vmxnet3_ethdev.h b/drivers/net/vmxnet3/vmxnet3_ethdev.h > > index 7d3b11e..5b6501b 100644 > > --- a/drivers/net/vmxnet3/vmxnet3_ethdev.h > > +++ b/drivers/net/vmxnet3/vmxnet3_ethdev.h > > @@ -34,6 +34,8 @@ > > #ifndef _VMXNET3_ETHDEV_H_ > > #define _VMXNET3_ETHDEV_H_ > > > > +#include > > + > > #define VMXNET3_MAX_MAC_ADDRS 1 > > > > /* UPT feature to negotiate */ > > @@ -120,7 +122,11 @@ struct vmxnet3_hw { > > > > /* Config space read/writes */ > > > > -#define VMXNET3_PCI_REG(reg) (*((volatile uint32_t *)(reg))) > > +#define VMXNET3_PCI_REG(reg) ({ \ > > + uint32_t __val; \ > > + __val = rte_readl(reg); \ > > + __val; \ > > +}) > > Why not simply using rte_readl directly? > > #define VMXNET3_PCI_REG(reg) rte_readl(reg) > Ok. > > > > static inline uint32_t > > vmxnet3_read_addr(volatile void *addr) > > @@ -128,9 +134,9 @@ vmxnet3_read_addr(volatile void *addr) > > return VMXNET3_PCI_REG(addr); > > } > > > > -#define VMXNET3_PCI_REG_WRITE(reg, value) do { \ > > - VMXNET3_PCI_REG((reg)) = (value); \ > > -} while(0) > > +#define VMXNET3_PCI_REG_WRITE(reg, value) ({ \ > > + rte_writel(value, reg); \ > > +}) > > I think this could be done in one line. > Ok. will take care in V2. > --yliu