* [dpdk-dev] [PATCH v5] net/tap: fix missing _SC_IOV_MAX
@ 2019-03-08 19:29 olegpoly123
2019-03-08 23:14 ` [dpdk-dev] [dpdk-stable] " Thomas Monjalon
0 siblings, 1 reply; 2+ messages in thread
From: olegpoly123 @ 2019-03-08 19:29 UTC (permalink / raw)
To: keith.wiles, thomas; +Cc: dev, Oleg Polyakov, stable
From: Oleg Polyakov <olegp123@walla.co.il>
If the value _SC_IOV_MAX is missing, sysconf returns -1.
In this case, iov_max is set to a default value of 1024.
Cc: stable@dpdk.org
Signed-off-by: Oleg Polyakov <olegp123@walla.co.il>
---
drivers/net/tap/rte_eth_tap.c | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/drivers/net/tap/rte_eth_tap.c b/drivers/net/tap/rte_eth_tap.c
index 6f5109fca..8f7c552b3 100644
--- a/drivers/net/tap/rte_eth_tap.c
+++ b/drivers/net/tap/rte_eth_tap.c
@@ -68,6 +68,8 @@
/* IPC key for queue fds sync */
#define TAP_MP_KEY "tap_mp_sync_queues"
+#define TAP_IOV_DEFAULT_MAX 1024
+
static int tap_devices_count;
static struct rte_vdev_driver pmd_tap_drv;
static struct rte_vdev_driver pmd_tun_drv;
@@ -1326,6 +1328,13 @@ tap_rx_queue_setup(struct rte_eth_dev *dev,
struct rx_queue *rxq = &internals->rxq[rx_queue_id];
struct rte_mbuf **tmp = &rxq->pool;
long iov_max = sysconf(_SC_IOV_MAX);
+
+ if (iov_max <= 0) {
+ TAP_LOG(WARNING,
+ "_SC_IOV_MAX is not defined. Using %d as default\n",
+ TAP_IOV_DEFAULT_MAX);
+ iov_max = TAP_IOV_DEFAULT_MAX;
+ }
uint16_t nb_desc = RTE_MIN(nb_rx_desc, iov_max - 1);
struct iovec (*iovecs)[nb_desc + 1];
int data_off = RTE_PKTMBUF_HEADROOM;
--
2.14.1
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [dpdk-dev] [dpdk-stable] [PATCH v5] net/tap: fix missing _SC_IOV_MAX
2019-03-08 19:29 [dpdk-dev] [PATCH v5] net/tap: fix missing _SC_IOV_MAX olegpoly123
@ 2019-03-08 23:14 ` Thomas Monjalon
0 siblings, 0 replies; 2+ messages in thread
From: Thomas Monjalon @ 2019-03-08 23:14 UTC (permalink / raw)
To: olegpoly123; +Cc: stable, keith.wiles, dev
08/03/2019 20:29, olegpoly123:
> From: Oleg Polyakov <olegp123@walla.co.il>
>
> If the value _SC_IOV_MAX is missing, sysconf returns -1.
> In this case, iov_max is set to a default value of 1024.
>
> Cc: stable@dpdk.org
>
> Signed-off-by: Oleg Polyakov <olegp123@walla.co.il>
Please add the "Fixes:" line and the "Acked-by" line from Keith.
Or, at least, please reply and confirm the "Fixes" line I suggested is the right one.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2019-03-08 23:19 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-08 19:29 [dpdk-dev] [PATCH v5] net/tap: fix missing _SC_IOV_MAX olegpoly123
2019-03-08 23:14 ` [dpdk-dev] [dpdk-stable] " Thomas Monjalon
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).