[dpdk-stable] patch 'net/af_xdp: fix umem size' has been queued to stable release 19.11.6
luca.boccassi at gmail.com
luca.boccassi at gmail.com
Wed Oct 28 11:43:30 CET 2020
Hi,
FYI, your patch has been queued to stable release 19.11.6
Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 10/30/20. So please
shout if anyone has objections.
Also note that after the patch there's a diff of the upstream commit vs the
patch applied to the branch. This will indicate if there was any rebasing
needed to apply to the stable branch. If there were code changes for rebasing
(ie: not only metadata diffs), please double check that the rebase was
correctly done.
Thanks.
Luca Boccassi
---
>From fc8892c12e467fe1dd4aec41f328a0ffec7ce58f Mon Sep 17 00:00:00 2001
From: Ciara Loftus <ciara.loftus at intel.com>
Date: Thu, 10 Sep 2020 09:06:47 +0000
Subject: [PATCH] net/af_xdp: fix umem size
[ upstream commit fb053c35c66ee0052fcb715f137c49305f83a6db ]
The kernel expects the start address of the UMEM to be page size
aligned.
Since the mempool is not guaranteed to have such alignment, we have been
aligning the address to the start of the page the mempool is on. However
when passing the 'size' of the UMEM during it's creation we did not take
this into account.
This commit adds the amount by which the address was aligned to the size
of the UMEM.
Bugzilla ID: 532
Fixes: d8a210774e1d ("net/af_xdp: support unaligned umem chunks")
Signed-off-by: Ciara Loftus <ciara.loftus at intel.com>
---
drivers/net/af_xdp/rte_eth_af_xdp.c | 19 ++++++++++++-------
1 file changed, 12 insertions(+), 7 deletions(-)
diff --git a/drivers/net/af_xdp/rte_eth_af_xdp.c b/drivers/net/af_xdp/rte_eth_af_xdp.c
index 844cd9986c..fbc95e5483 100644
--- a/drivers/net/af_xdp/rte_eth_af_xdp.c
+++ b/drivers/net/af_xdp/rte_eth_af_xdp.c
@@ -743,12 +743,17 @@ eth_link_update(struct rte_eth_dev *dev __rte_unused,
}
#if defined(XDP_UMEM_UNALIGNED_CHUNK_FLAG)
-static inline uint64_t get_base_addr(struct rte_mempool *mp)
+static inline uint64_t get_base_addr(struct rte_mempool *mp, uint64_t *align)
{
struct rte_mempool_memhdr *memhdr;
+ uint64_t memhdr_addr, aligned_addr;
memhdr = STAILQ_FIRST(&mp->mem_list);
- return (uint64_t)memhdr->addr & ~(getpagesize() - 1);
+ memhdr_addr = (uint64_t)memhdr->addr;
+ aligned_addr = memhdr_addr & ~(getpagesize() - 1);
+ *align = memhdr_addr - aligned_addr;
+
+ return aligned_addr;
}
static struct
@@ -763,6 +768,7 @@ xsk_umem_info *xdp_umem_configure(struct pmd_internals *internals __rte_unused,
.flags = XDP_UMEM_UNALIGNED_CHUNK_FLAG};
void *base_addr = NULL;
struct rte_mempool *mb_pool = rxq->mb_pool;
+ uint64_t umem_size, align = 0;
usr_config.frame_size = rte_mempool_calc_obj_size(mb_pool->elt_size,
mb_pool->flags,
@@ -779,12 +785,11 @@ xsk_umem_info *xdp_umem_configure(struct pmd_internals *internals __rte_unused,
}
umem->mb_pool = mb_pool;
- base_addr = (void *)get_base_addr(mb_pool);
+ base_addr = (void *)get_base_addr(mb_pool, &align);
+ umem_size = mb_pool->populated_size * usr_config.frame_size + align;
- ret = xsk_umem__create(&umem->umem, base_addr,
- mb_pool->populated_size * usr_config.frame_size,
- &umem->fq, &umem->cq,
- &usr_config);
+ ret = xsk_umem__create(&umem->umem, base_addr, umem_size,
+ &umem->fq, &umem->cq, &usr_config);
if (ret) {
AF_XDP_LOG(ERR, "Failed to create umem");
--
2.20.1
---
Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- - 2020-10-28 10:35:13.372652229 +0000
+++ 0051-net-af_xdp-fix-umem-size.patch 2020-10-28 10:35:11.516830200 +0000
@@ -1,8 +1,10 @@
-From fb053c35c66ee0052fcb715f137c49305f83a6db Mon Sep 17 00:00:00 2001
+From fc8892c12e467fe1dd4aec41f328a0ffec7ce58f Mon Sep 17 00:00:00 2001
From: Ciara Loftus <ciara.loftus at intel.com>
Date: Thu, 10 Sep 2020 09:06:47 +0000
Subject: [PATCH] net/af_xdp: fix umem size
+[ upstream commit fb053c35c66ee0052fcb715f137c49305f83a6db ]
+
The kernel expects the start address of the UMEM to be page size
aligned.
Since the mempool is not guaranteed to have such alignment, we have been
@@ -15,7 +17,6 @@
Bugzilla ID: 532
Fixes: d8a210774e1d ("net/af_xdp: support unaligned umem chunks")
-Cc: stable at dpdk.org
Signed-off-by: Ciara Loftus <ciara.loftus at intel.com>
---
@@ -23,10 +24,10 @@
1 file changed, 12 insertions(+), 7 deletions(-)
diff --git a/drivers/net/af_xdp/rte_eth_af_xdp.c b/drivers/net/af_xdp/rte_eth_af_xdp.c
-index 7ce4ad04af..b65ee449fc 100644
+index 844cd9986c..fbc95e5483 100644
--- a/drivers/net/af_xdp/rte_eth_af_xdp.c
+++ b/drivers/net/af_xdp/rte_eth_af_xdp.c
-@@ -746,12 +746,17 @@ eth_link_update(struct rte_eth_dev *dev __rte_unused,
+@@ -743,12 +743,17 @@ eth_link_update(struct rte_eth_dev *dev __rte_unused,
}
#if defined(XDP_UMEM_UNALIGNED_CHUNK_FLAG)
@@ -46,7 +47,7 @@
}
static struct
-@@ -766,6 +771,7 @@ xsk_umem_info *xdp_umem_configure(struct pmd_internals *internals __rte_unused,
+@@ -763,6 +768,7 @@ xsk_umem_info *xdp_umem_configure(struct pmd_internals *internals __rte_unused,
.flags = XDP_UMEM_UNALIGNED_CHUNK_FLAG};
void *base_addr = NULL;
struct rte_mempool *mb_pool = rxq->mb_pool;
@@ -54,7 +55,7 @@
usr_config.frame_size = rte_mempool_calc_obj_size(mb_pool->elt_size,
mb_pool->flags,
-@@ -782,12 +788,11 @@ xsk_umem_info *xdp_umem_configure(struct pmd_internals *internals __rte_unused,
+@@ -779,12 +785,11 @@ xsk_umem_info *xdp_umem_configure(struct pmd_internals *internals __rte_unused,
}
umem->mb_pool = mb_pool;
More information about the stable
mailing list