All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jerin Jacob <jerin.jacob@caviumnetworks.com>
To: "Jan Mędala" <jan@semihalf.com>
Cc: Santosh Shukla <santosh.shukla@caviumnetworks.com>,
	<dev@dpdk.org>,
	"Ananyev, Konstantin" <konstantin.ananyev@intel.com>,
	Thomas Monjalon <thomas.monjalon@6wind.com>,
	Bruce Richardson <bruce.richardson@intel.com>,
	<jianbo.liu@linaro.org>, <viktorin@rehivetech.com>,
	Jakub Palider <jpa@semihalf.com>
Subject: Re: [PATCH v4 20/29] net/ena: use eal I/O device memory read/write API
Date: Tue, 17 Jan 2017 19:43:13 +0530	[thread overview]
Message-ID: <20170117141312.GA7844@localhost.localdomain> (raw)
In-Reply-To: <CANw_3ZfwS1dMer3PcCnV3bnZbjww0w2eiAu1NithQ283WJPxPA@mail.gmail.com>

On Tue, Jan 17, 2017 at 01:51:38PM +0100, Jan Mędala wrote:
> Jerin, Santosh,

Hello Jan,

> 
> As you are introducing improved I/O access API, I would like to ask to
> change ENA platform code to:
> 
> * #define ENA_REG_WRITE32(value, reg) rte_write32_relaxed((value), (reg))*
> * #define ENA_REG_READ32(reg) rte_read32_relaxed((reg))*
> 
> There is no more need to have read/write functions within platform code (
> *readl()*, *writel()*, *writel_relaxed()*), as we can directly map our API
> macro to DPDK platform implementation.
> Also I would prefer to keep API within *drivers/net/ena/base/ena_eth_com.h*

I have tried to make change as per your requirement. looks like, read32/write
has been called from following files.

drivers/net/ena/base/ena_eth_com.c
drivers/net/ena/base/ena_com.c

So, Is make sense to keep it in drivers/net/ena/base/ena_eth_com.h or
in drivers/net/ena/base/ena_com.h ?

Following diff is an working build-able version. If you are not happy with the
change then can you send a patch so that in can include in v5 or if you
want me to change the let me know(What is the change required wrt the
following change)

➜ [dpdk-master] $ git diff
diff --git a/drivers/net/ena/base/ena_com.h
b/drivers/net/ena/base/ena_com.h
index e534592..f34e416 100644
--- a/drivers/net/ena/base/ena_com.h
+++ b/drivers/net/ena/base/ena_com.h
@@ -42,9 +42,13 @@
 #if defined(__linux__) && !defined(__KERNEL__)
 #include <rte_lcore.h>
 #include <rte_spinlock.h>
+#include <rte_io.h>
 #define __iomem
 #endif
 
+#define ENA_REG_WRITE32(value, reg) rte_write32_relaxed((value), (reg))
+#define ENA_REG_READ32(reg) rte_read32_relaxed((reg))
+
 #define ENA_MAX_NUM_IO_QUEUES          128U
 /* We need to queues for each IO (on for Tx and one for Rx) */
 #define ENA_TOTAL_NUM_QUEUES           (2 * (ENA_MAX_NUM_IO_QUEUES))
diff --git a/drivers/net/ena/base/ena_plat_dpdk.h
b/drivers/net/ena/base/ena_plat_dpdk.h
index 87c3bf1..ee81648 100644
--- a/drivers/net/ena/base/ena_plat_dpdk.h
+++ b/drivers/net/ena/base/ena_plat_dpdk.h
@@ -224,19 +224,6 @@ typedef uint64_t dma_addr_t;
 #define ENA_MEM_ALLOC(dmadev, size) rte_zmalloc(NULL, size, 1)
 #define ENA_MEM_FREE(dmadev, ptr) ({ENA_TOUCH(dmadev); rte_free(ptr);
})
 
-static inline void writel(u32 value, volatile void  *addr)
-{
-       *(volatile u32 *)addr = value;
-}
-
-static inline u32 readl(const volatile void *addr)
-{
-       return *(const volatile u32 *)addr;
-}
-
-#define ENA_REG_WRITE32(value, reg) writel((value), (reg))
-#define ENA_REG_READ32(reg) readl((reg))
-
 #define ATOMIC32_INC(i32_ptr) rte_atomic32_inc(i32_ptr)
 #define ATOMIC32_DEC(i32_ptr) rte_atomic32_dec(i32_ptr)
 #define ATOMIC32_SET(i32_ptr, val) rte_atomic32_set(i32_ptr, v

> and map define ENA_REG_WRITE32 to relaxed version (when barrier is needed
> we call it explicitly in driver code, there is no need to have
> ENA_REG_WRITE32_RELAXED). That will help us to manage code together between
> the different platforms.
> 
> Should I do the change for ENA or do you want to keep the current flow and
> take care of it?
> 
> ​Best regards
> Jan

  reply	other threads:[~2017-01-17 14:13 UTC|newest]

Thread overview: 222+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-12-14  1:55 [PATCH 00/28] introduce I/O device memory read/write operations Jerin Jacob
2016-12-14  1:55 ` [PATCH 01/28] eal: introduce I/O device memory barriers Jerin Jacob
2016-12-14  1:55 ` [PATCH 02/28] eal/x86: define I/O device memory barriers for IA Jerin Jacob
2016-12-14  1:55 ` [PATCH 03/28] eal/tile: define I/O device memory barriers for tile Jerin Jacob
2016-12-14  1:55 ` [PATCH 04/28] eal/ppc64: define I/O device memory barriers for ppc64 Jerin Jacob
2016-12-14  1:55 ` [PATCH 05/28] eal/arm: separate smp barrier definition for ARMv7 and ARMv8 Jerin Jacob
2016-12-14  1:55 ` [PATCH 06/28] eal/armv7: define I/O device memory barriers for ARMv7 Jerin Jacob
2016-12-14  1:55 ` [PATCH 07/28] eal/arm64: fix memory barrier definition for arm64 Jerin Jacob
2016-12-14  1:55 ` [PATCH 08/28] eal/arm64: define smp " Jerin Jacob
2016-12-15  8:13   ` Jianbo Liu
2016-12-15  8:20     ` Jerin Jacob
2016-12-14  1:55 ` [PATCH 09/28] eal/arm64: define I/O device memory barriers " Jerin Jacob
2016-12-14  1:55 ` [PATCH 10/28] eal: introduce I/O device memory read/write operations Jerin Jacob
2016-12-14  1:55 ` [PATCH 11/28] eal: generic implementation for I/O device read/write access Jerin Jacob
2016-12-14  1:55 ` [PATCH 12/28] eal: let all architectures use generic I/O implementation Jerin Jacob
2016-12-14  1:55 ` [PATCH 13/28] eal/arm64: override I/O device read/write access for arm64 Jerin Jacob
2016-12-15  9:53   ` Jianbo Liu
2016-12-15 10:04     ` Jerin Jacob
2016-12-15 10:17       ` Jianbo Liu
2016-12-15 11:08         ` Jerin Jacob
2016-12-16 10:12           ` Jianbo Liu
2016-12-16 10:25             ` Jerin Jacob
2016-12-14  1:55 ` [PATCH 14/28] crypto/qat: use eal I/O device memory read/write API Jerin Jacob
2016-12-14  1:55 ` [PATCH 15/28] net/bnx2x: " Jerin Jacob
2016-12-14  1:55 ` [PATCH 16/28] net/bnxt: " Jerin Jacob
2016-12-14  1:55 ` [PATCH 17/28] net/cxgbe: " Jerin Jacob
2016-12-14  1:55 ` [PATCH 18/28] net/e1000: " Jerin Jacob
2016-12-14  1:55 ` [PATCH 19/28] net/ena: " Jerin Jacob
2016-12-14 14:36   ` Jan Mędala
2016-12-14  1:55 ` [PATCH 20/28] net/enic: " Jerin Jacob
2016-12-14  1:55 ` [PATCH 21/28] net/fm10k: " Jerin Jacob
2016-12-14  1:55 ` [PATCH 22/28] net/i40e: " Jerin Jacob
2016-12-14  1:55 ` [PATCH 23/28] net/ixgbe: " Jerin Jacob
2016-12-15  8:37   ` Jianbo Liu
2016-12-16  4:40     ` Santosh Shukla
2016-12-22 12:36       ` Santosh Shukla
2016-12-23  1:42         ` Jianbo Liu
2016-12-14  1:55 ` [PATCH 24/28] net/nfp: " Jerin Jacob
2016-12-14  1:55 ` [PATCH 25/28] net/qede: " Jerin Jacob
2016-12-14  1:55 ` [PATCH 26/28] net/virtio: " Jerin Jacob
2016-12-14  2:46   ` Yuanhan Liu
2016-12-14  3:02   ` Yuanhan Liu
2016-12-15  5:45     ` Santosh Shukla
2016-12-16  2:12       ` Yuanhan Liu
2016-12-14  1:55 ` [PATCH 27/28] net/vmxnet3: " Jerin Jacob
2016-12-14  2:55   ` Yuanhan Liu
2016-12-15  5:48     ` Santosh Shukla
2016-12-14  1:55 ` [PATCH 28/28] net/thunderx: " Jerin Jacob
2016-12-14  2:53 ` [PATCH 00/28] introduce I/O device memory read/write operations Yuanhan Liu
2016-12-14 10:12   ` Bruce Richardson
2016-12-14 13:18   ` Jerin Jacob
2016-12-16 17:04     ` Thomas Monjalon
2016-12-27  9:49 ` [PATCH v2 00/29] " Jerin Jacob
2016-12-27  9:49   ` [PATCH v2 01/29] eal: introduce I/O device memory barriers Jerin Jacob
2016-12-27  9:49   ` [PATCH v2 02/29] eal/x86: define I/O device memory barriers for IA Jerin Jacob
2016-12-27  9:49   ` [PATCH v2 03/29] eal/tile: define I/O device memory barriers for tile Jerin Jacob
2016-12-27  9:49   ` [PATCH v2 04/29] eal/ppc64: define I/O device memory barriers for ppc64 Jerin Jacob
2016-12-27  9:49   ` [PATCH v2 05/29] eal/arm: separate smp barrier definition for ARMv7 and ARMv8 Jerin Jacob
2016-12-27  9:49   ` [PATCH v2 06/29] eal/armv7: define I/O device memory barriers for ARMv7 Jerin Jacob
2016-12-27  9:49   ` [PATCH v2 07/29] eal/arm64: fix memory barrier definition for arm64 Jerin Jacob
2017-01-03  7:40     ` Jianbo Liu
2016-12-27  9:49   ` [PATCH v2 08/29] eal/arm64: define smp " Jerin Jacob
2016-12-27  9:49   ` [PATCH v2 09/29] eal/arm64: define I/O device memory barriers " Jerin Jacob
2017-01-03  7:48     ` Jianbo Liu
2017-01-04 10:01       ` Jerin Jacob
2017-01-05  5:31         ` Jianbo Liu
2017-01-05  6:24           ` Jerin Jacob
2017-01-05  6:47             ` Jianbo Liu
2017-01-05  7:22               ` Jerin Jacob
2016-12-27  9:49   ` [PATCH v2 10/29] eal: introduce I/O device memory read/write operations Jerin Jacob
2016-12-27  9:49   ` [PATCH v2 11/29] eal: generic implementation for I/O device read/write access Jerin Jacob
2016-12-27  9:49   ` [PATCH v2 12/29] eal: let all architectures use generic I/O implementation Jerin Jacob
2016-12-27  9:49   ` [PATCH v2 13/29] eal/arm64: override I/O device read/write access for arm64 Jerin Jacob
2016-12-27  9:49   ` [PATCH v2 14/29] eal/arm64: change barrier definitions to macros Jerin Jacob
2017-01-03  7:55     ` Jianbo Liu
2017-01-04 10:09       ` Jerin Jacob
2017-01-04 11:00         ` Tiwei Bie
2017-01-04 13:03           ` Jerin Jacob
2016-12-27  9:49   ` [PATCH v2 15/29] crypto/qat: use eal I/O device memory read/write API Jerin Jacob
2016-12-27  9:49   ` [PATCH v2 16/29] net/bnxt: " Jerin Jacob
2016-12-27  9:49   ` [PATCH v2 17/29] net/bnx2x: " Jerin Jacob
2016-12-27  9:49   ` [PATCH v2 18/29] net/cxgbe: " Jerin Jacob
2016-12-27  9:49   ` [PATCH v2 19/29] net/e1000: " Jerin Jacob
2016-12-27  9:49   ` [PATCH v2 20/29] net/ena: " Jerin Jacob
2016-12-27  9:49   ` [PATCH v2 21/29] net/enic: " Jerin Jacob
2016-12-27  9:49   ` [PATCH v2 22/29] net/fm10k: " Jerin Jacob
2016-12-27  9:49   ` [PATCH v2 23/29] net/i40e: " Jerin Jacob
2017-01-04 13:53     ` Tiwei Bie
2017-01-04 15:22       ` Santosh Shukla
2016-12-27  9:49   ` [PATCH v2 24/29] net/ixgbe: " Jerin Jacob
2016-12-27  9:49   ` [PATCH v2 25/29] net/nfp: " Jerin Jacob
2016-12-27  9:49   ` [PATCH v2 26/29] net/qede: " Jerin Jacob
2016-12-27  9:49   ` [PATCH v2 27/29] net/thunderx: " Jerin Jacob
2016-12-27  9:49   ` [PATCH v2 28/29] net/virtio: " Jerin Jacob
2016-12-27  9:49   ` [PATCH v2 29/29] net/vmxnet3: " Jerin Jacob
2017-01-12  9:16   ` [PATCH v3 00/29] introduce I/O device memory read/write operations Jerin Jacob
2017-01-12  9:16     ` [PATCH v3 01/29] eal: introduce I/O device memory barriers Jerin Jacob
2017-01-12  9:16     ` [PATCH v3 02/29] eal/x86: define I/O device memory barriers for IA Jerin Jacob
2017-01-12  9:17     ` [PATCH v3 03/29] eal/tile: define I/O device memory barriers for tile Jerin Jacob
2017-01-12  9:17     ` [PATCH v3 04/29] eal/ppc64: define I/O device memory barriers for ppc64 Jerin Jacob
2017-01-12  9:17     ` [PATCH v3 05/29] eal/arm: separate smp barrier definition for ARMv7 and ARMv8 Jerin Jacob
2017-01-12  9:17     ` [PATCH v3 06/29] eal/armv7: define I/O device memory barriers for ARMv7 Jerin Jacob
2017-01-12  9:17     ` [PATCH v3 07/29] eal/arm64: fix memory barrier definition for arm64 Jerin Jacob
2017-01-12  9:17     ` [PATCH v3 08/29] eal/arm64: define smp " Jerin Jacob
2017-01-12  9:17     ` [PATCH v3 09/29] eal/arm64: define I/O device memory barriers " Jerin Jacob
2017-01-12  9:17     ` [PATCH v3 10/29] eal: introduce I/O device memory read/write operations Jerin Jacob
2017-01-12  9:17     ` [PATCH v3 11/29] eal: generic implementation for I/O device read/write access Jerin Jacob
2017-01-15 21:29       ` Thomas Monjalon
2017-01-16  3:26         ` Jerin Jacob
2017-01-16 11:01           ` Bruce Richardson
2017-01-16 11:17             ` Jerin Jacob
2017-01-12  9:17     ` [PATCH v3 12/29] eal: let all architectures use generic I/O implementation Jerin Jacob
2017-01-12  9:17     ` [PATCH v3 13/29] eal/arm64: override I/O device read/write access for arm64 Jerin Jacob
2017-01-12  9:17     ` [PATCH v3 14/29] eal/arm64: change barrier definitions to macros Jerin Jacob
2017-01-12  9:17     ` [PATCH v3 15/29] crypto/qat: use eal I/O device memory read/write API Jerin Jacob
2017-01-12 19:09       ` Ferruh Yigit
2017-01-13  8:17         ` Jerin Jacob
2017-01-13 11:32           ` Ferruh Yigit
2017-01-13 14:57             ` Jerin Jacob
2017-01-13 15:50               ` Ferruh Yigit
2017-01-13 16:21                 ` Jerin Jacob
2017-01-13 18:20                   ` Ferruh Yigit
2017-01-13 11:40           ` Ferruh Yigit
2017-01-13 11:47             ` Bruce Richardson
2017-01-13 12:04               ` Ananyev, Konstantin
2017-01-12  9:17     ` [PATCH v3 16/29] net/bnxt: " Jerin Jacob
2017-01-12 19:10       ` Ferruh Yigit
2017-01-13  8:30         ` Jerin Jacob
2017-01-12  9:17     ` [PATCH v3 17/29] net/bnx2x: " Jerin Jacob
2017-01-12 19:11       ` Ferruh Yigit
2017-01-13  8:32         ` Jerin Jacob
2017-01-12  9:17     ` [PATCH v3 18/29] net/cxgbe: " Jerin Jacob
2017-01-12 19:12       ` Ferruh Yigit
2017-01-13  8:37         ` Jerin Jacob
2017-01-13 11:41           ` Ferruh Yigit
2017-01-12  9:17     ` [PATCH v3 19/29] net/e1000: " Jerin Jacob
2017-01-12  9:17     ` [PATCH v3 20/29] net/ena: " Jerin Jacob
2017-01-12  9:17     ` [PATCH v3 21/29] net/enic: " Jerin Jacob
2017-01-12  9:17     ` [PATCH v3 22/29] net/fm10k: " Jerin Jacob
2017-01-12  9:17     ` [PATCH v3 23/29] net/i40e: " Jerin Jacob
2017-01-12  9:17     ` [PATCH v3 24/29] net/ixgbe: " Jerin Jacob
2017-01-12  9:17     ` [PATCH v3 25/29] net/nfp: " Jerin Jacob
2017-01-12 10:53       ` Alejandro Lucero
2017-01-12 13:40         ` Jerin Jacob
2017-01-13 10:49           ` Alejandro Lucero
2017-01-13 10:57             ` Jerin Jacob
2017-01-13 11:11               ` Alejandro Lucero
2017-01-12  9:17     ` [PATCH v3 26/29] net/qede: " Jerin Jacob
2017-01-12  9:17     ` [PATCH v3 27/29] net/thunderx: " Jerin Jacob
2017-01-12  9:17     ` [PATCH v3 28/29] net/virtio: " Jerin Jacob
2017-01-12  9:17     ` [PATCH v3 29/29] net/vmxnet3: " Jerin Jacob
2017-01-17  7:13     ` [PATCH v4 00/29] introduce I/O device memory read/write operations Jerin Jacob
2017-01-17  7:13       ` [PATCH v4 01/29] eal: introduce I/O device memory barriers Jerin Jacob
2017-01-17  7:13       ` [PATCH v4 02/29] eal/x86: define I/O device memory barriers for IA Jerin Jacob
2017-01-17  7:13       ` [PATCH v4 03/29] eal/tile: define I/O device memory barriers for tile Jerin Jacob
2017-01-17  7:13       ` [PATCH v4 04/29] eal/ppc64: define I/O device memory barriers for ppc64 Jerin Jacob
2017-01-17  7:13       ` [PATCH v4 05/29] eal/arm: separate smp barrier definition for ARMv7 and ARMv8 Jerin Jacob
2017-01-17  7:13       ` [PATCH v4 06/29] eal/armv7: define I/O device memory barriers for ARMv7 Jerin Jacob
2017-01-17  7:13       ` [PATCH v4 07/29] eal/arm64: fix memory barrier definition for arm64 Jerin Jacob
2017-01-17  7:13       ` [PATCH v4 08/29] eal/arm64: define smp " Jerin Jacob
2017-01-17  7:13       ` [PATCH v4 09/29] eal/arm64: define I/O device memory barriers " Jerin Jacob
2017-01-17  7:13       ` [PATCH v4 10/29] eal: introduce I/O device memory read/write operations Jerin Jacob
2017-01-17  7:13       ` [PATCH v4 11/29] eal: generic implementation for I/O device read/write access Jerin Jacob
2017-01-17  7:13       ` [PATCH v4 12/29] eal: let all architectures use generic I/O implementation Jerin Jacob
2017-01-17  7:13       ` [PATCH v4 13/29] eal/arm64: override I/O device read/write access for arm64 Jerin Jacob
2017-01-17  7:13       ` [PATCH v4 14/29] eal/arm64: change barrier definitions to macros Jerin Jacob
2017-01-17  7:13       ` [PATCH v4 15/29] crypto/qat: use eal I/O device memory read/write API Jerin Jacob
2017-01-17  7:13       ` [PATCH v4 16/29] net/bnxt: " Jerin Jacob
2017-01-17  7:13       ` [PATCH v4 17/29] net/bnx2x: " Jerin Jacob
2017-01-17  7:13       ` [PATCH v4 18/29] net/cxgbe: " Jerin Jacob
2017-01-17  7:13       ` [PATCH v4 19/29] net/e1000: " Jerin Jacob
2017-01-17  7:13       ` [PATCH v4 20/29] net/ena: " Jerin Jacob
2017-01-17 12:51         ` Jan Mędala
2017-01-17 14:13           ` Jerin Jacob [this message]
2017-01-17 14:27             ` Jan Mędala
2017-01-17 14:30               ` Jerin Jacob
2017-01-17 14:31                 ` Jan Mędala
2017-01-17  7:13       ` [PATCH v4 21/29] net/enic: " Jerin Jacob
2017-01-17  7:13       ` [PATCH v4 22/29] net/fm10k: " Jerin Jacob
2017-01-17  7:13       ` [PATCH v4 23/29] net/i40e: " Jerin Jacob
2017-01-17  7:13       ` [PATCH v4 24/29] net/ixgbe: " Jerin Jacob
2017-01-17  7:14       ` [PATCH v4 25/29] net/nfp: " Jerin Jacob
2017-01-17  7:14       ` [PATCH v4 26/29] net/qede: " Jerin Jacob
2017-01-17  7:14       ` [PATCH v4 27/29] net/thunderx: " Jerin Jacob
2017-01-17  7:14       ` [PATCH v4 28/29] net/virtio: " Jerin Jacob
2017-01-17  7:14       ` [PATCH v4 29/29] net/vmxnet3: " Jerin Jacob
2017-01-18  1:21       ` [PATCH v5 00/29] introduce I/O device memory read/write operations Jerin Jacob
2017-01-18  1:21         ` [PATCH v5 01/29] eal: introduce I/O device memory barriers Jerin Jacob
2017-01-18  1:21         ` [PATCH v5 02/29] eal/x86: define I/O device memory barriers for IA Jerin Jacob
2017-01-18  1:21         ` [PATCH v5 03/29] eal/tile: define I/O device memory barriers for tile Jerin Jacob
2017-01-18  1:21         ` [PATCH v5 04/29] eal/ppc64: define I/O device memory barriers for ppc64 Jerin Jacob
2017-01-18  1:21         ` [PATCH v5 05/29] eal/arm: separate smp barrier definition for ARMv7 and ARMv8 Jerin Jacob
2017-01-18  1:21         ` [PATCH v5 06/29] eal/armv7: define I/O device memory barriers for ARMv7 Jerin Jacob
2017-01-18  1:21         ` [PATCH v5 07/29] eal/arm64: fix memory barrier definition for arm64 Jerin Jacob
2017-01-18  1:21         ` [PATCH v5 08/29] eal/arm64: define smp " Jerin Jacob
2017-01-18  1:21         ` [PATCH v5 09/29] eal/arm64: define I/O device memory barriers " Jerin Jacob
2017-01-18  1:21         ` [PATCH v5 10/29] eal: introduce I/O device memory read/write operations Jerin Jacob
2017-01-18  1:21         ` [PATCH v5 11/29] eal: generic implementation for I/O device read/write access Jerin Jacob
2017-01-18  1:21         ` [PATCH v5 12/29] eal: let all architectures use generic I/O implementation Jerin Jacob
2017-01-18  1:21         ` [PATCH v5 13/29] eal/arm64: override I/O device read/write access for arm64 Jerin Jacob
2017-01-18  1:21         ` [PATCH v5 14/29] eal/arm64: change barrier definitions to macros Jerin Jacob
2017-01-18  1:21         ` [PATCH v5 15/29] crypto/qat: use eal I/O device memory read/write API Jerin Jacob
2017-01-18  1:21         ` [PATCH v5 16/29] net/bnxt: " Jerin Jacob
2017-01-18  1:21         ` [PATCH v5 17/29] net/bnx2x: " Jerin Jacob
2017-01-18  1:21         ` [PATCH v5 18/29] net/cxgbe: " Jerin Jacob
2017-01-18  1:21         ` [PATCH v5 19/29] net/e1000: " Jerin Jacob
2017-01-18  1:21         ` [PATCH v5 20/29] net/enic: " Jerin Jacob
2017-01-18  1:21         ` [PATCH v5 21/29] net/ena: " Jerin Jacob
2017-01-18  1:21         ` [PATCH v5 22/29] net/fm10k: " Jerin Jacob
2017-01-18  1:21         ` [PATCH v5 23/29] net/i40e: " Jerin Jacob
2017-01-18  1:21         ` [PATCH v5 24/29] net/ixgbe: " Jerin Jacob
2017-01-18  1:21         ` [PATCH v5 25/29] net/nfp: " Jerin Jacob
2017-01-18  1:21         ` [PATCH v5 26/29] net/qede: " Jerin Jacob
2017-01-18  1:21         ` [PATCH v5 27/29] net/thunderx: " Jerin Jacob
2017-01-18  1:21         ` [PATCH v5 28/29] net/virtio: " Jerin Jacob
2017-01-18  1:21         ` [PATCH v5 29/29] net/vmxnet3: " Jerin Jacob
2017-01-18  9:56         ` [PATCH v5 00/29] introduce I/O device memory read/write operations Thomas Monjalon
2017-01-18 10:55           ` Jerin Jacob
2017-01-18 16:25         ` Thomas Monjalon
2017-01-19  4:14           ` Jerin Jacob
2017-01-19  4:51             ` Thomas Monjalon
2017-01-19  5:46               ` Jerin Jacob

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=20170117141312.GA7844@localhost.localdomain \
    --to=jerin.jacob@caviumnetworks.com \
    --cc=bruce.richardson@intel.com \
    --cc=dev@dpdk.org \
    --cc=jan@semihalf.com \
    --cc=jianbo.liu@linaro.org \
    --cc=jpa@semihalf.com \
    --cc=konstantin.ananyev@intel.com \
    --cc=santosh.shukla@caviumnetworks.com \
    --cc=thomas.monjalon@6wind.com \
    --cc=viktorin@rehivetech.com \
    /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.