[dpdk-dev] [PATCH 0/4] net/mlx5: implicit mempool registration

Dmitry Kozlyuk dkozlyuk at nvidia.com
Wed Aug 18 11:07:51 CEST 2021


MLX5 hardware has its internal IOMMU where PMD registers the memory.
On the data path, PMD translates VA into a key consumed by the device
IOMMU.  It is impractical for the PMD to register all allocated memory
because of increased lookup cost both in HW and SW.  Most often mbuf
memory comes from mempools, so if PMD tracks them, it can almost always
have mbuf memory registered before an mbuf hits the PMD. This patchset
adds such tracking in the PMD and internal API to support it.

Please see [1] for a more thorough explanation of the patch 2/4
and how it can be useful outside of the MLX5 PMD.

[1]: http://inbox.dpdk.org/dev/CH0PR12MB509112FADB778AB28AF3771DB9F99@CH0PR12MB5091.namprd12.prod.outlook.com/

Dmitry Kozlyuk (4):
  mempool: add event callbacks
  mempool: add non-IO flag
  common/mlx5: add mempool registration facilities
  net/mlx5: support mempool registration

 doc/guides/nics/mlx5.rst               |  11 +
 doc/guides/rel_notes/release_21_11.rst |   9 +
 drivers/common/mlx5/mlx5_common_mp.c   |  50 +++
 drivers/common/mlx5/mlx5_common_mp.h   |  14 +
 drivers/common/mlx5/mlx5_common_mr.c   | 564 +++++++++++++++++++++++++
 drivers/common/mlx5/mlx5_common_mr.h   |  17 +
 drivers/common/mlx5/version.map        |   5 +
 drivers/net/mlx5/linux/mlx5_mp_os.c    |  44 ++
 drivers/net/mlx5/linux/mlx5_os.c       |   4 +-
 drivers/net/mlx5/linux/mlx5_os.h       |   2 +
 drivers/net/mlx5/mlx5.c                | 128 ++++++
 drivers/net/mlx5/mlx5.h                |  13 +
 drivers/net/mlx5/mlx5_mr.c             |  27 ++
 drivers/net/mlx5/mlx5_trigger.c        |  10 +-
 lib/mempool/rte_mempool.c              | 153 ++++++-
 lib/mempool/rte_mempool.h              |  60 +++
 lib/mempool/version.map                |   8 +
 17 files changed, 1110 insertions(+), 9 deletions(-)

-- 
2.25.1



More information about the dev mailing list