diff mbox series

[v3,1/7] config: increase the num of rawdev to be 64

Message ID 20190404114818.21286-1-hemant.agrawal@nxp.com
State Accepted
Commit bca4350ed72283e386645c85431aa628e181e166
Headers show
Series [v3,1/7] config: increase the num of rawdev to be 64 | expand

Commit Message

Hemant Agrawal April 4, 2019, 11:50 a.m. UTC
The current value is 10, which is not sufficient for many use-cases.
e.g. NXP LX2 with raw qdma devices can use 32-48 raw devices in some
use-cases. So, making it to 64 to cover various cases.

Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>

---
 config/common_base  | 2 +-
 config/rte_config.h | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

-- 
2.17.1

Comments

Bruce Richardson April 4, 2019, 1:04 p.m. UTC | #1
On Thu, Apr 04, 2019 at 11:50:18AM +0000, Hemant Agrawal wrote:
> The current value is 10, which is not sufficient for many use-cases.

> e.g. NXP LX2 with raw qdma devices can use 32-48 raw devices in some

> use-cases. So, making it to 64 to cover various cases.

> 

> Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>


Acked-by: Bruce Richardson <bruce.richardson@intel.com>
Thomas Monjalon April 4, 2019, 11:07 p.m. UTC | #2
04/04/2019 15:04, Bruce Richardson:
> On Thu, Apr 04, 2019 at 11:50:18AM +0000, Hemant Agrawal wrote:

> > The current value is 10, which is not sufficient for many use-cases.

> > e.g. NXP LX2 with raw qdma devices can use 32-48 raw devices in some

> > use-cases. So, making it to 64 to cover various cases.

> > 

> > Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>

> 

> Acked-by: Bruce Richardson <bruce.richardson@intel.com>


Series applied, thanks
diff mbox series

Patch

diff --git a/config/common_base b/config/common_base
index a0a9fe0c7..1e55c8076 100644
--- a/config/common_base
+++ b/config/common_base
@@ -709,7 +709,7 @@  CONFIG_RTE_LIBRTE_PMD_DPAA2_EVENTDEV=n
 # EXPERIMENTAL: API may change without prior notice
 #
 CONFIG_RTE_LIBRTE_RAWDEV=y
-CONFIG_RTE_RAWDEV_MAX_DEVS=10
+CONFIG_RTE_RAWDEV_MAX_DEVS=64
 CONFIG_RTE_LIBRTE_PMD_SKELETON_RAWDEV=y
 
 #
diff --git a/config/rte_config.h b/config/rte_config.h
index cda51af47..0bbbe274f 100644
--- a/config/rte_config.h
+++ b/config/rte_config.h
@@ -82,7 +82,7 @@ 
 #define RTE_EVENT_ETH_TX_ADAPTER_MAX_INSTANCE 32
 
 /* rawdev defines */
-#define RTE_RAWDEV_MAX_DEVS 10
+#define RTE_RAWDEV_MAX_DEVS 64
 
 /* ip_fragmentation defines */
 #define RTE_LIBRTE_IP_FRAG_MAX_FRAG 4