]> git.droids-corp.org - dpdk.git/commitdiff
net/mlx5: fix number of retries for UAR allocation
authorDekel Peled <dekelp@mellanox.com>
Mon, 3 Aug 2020 09:18:27 +0000 (12:18 +0300)
committerThomas Monjalon <thomas@monjalon.net>
Wed, 5 Aug 2020 14:10:50 +0000 (16:10 +0200)
Previous fix added definition of number of retries for UAR allocation.
This value is adequate for x86 systems with 4K pages.
On Power9 system with 64K pages the required value is 32.
This patch updates the defined value from 2 to 32.

Fixes: a0bfe9d56f74 ("net/mlx5: fix UAR memory mapping type")
Signed-off-by: Dekel Peled <dekelp@mellanox.com>
Acked-by: Viacheslav Ovsiienko <viacheslavo@mellanox.com>
drivers/net/mlx5/mlx5_defs.h

index e5f7acc40c672b5a7903812871d2a46f998bd429..c26d5a292754fc3b79402df39c9a1d7bf14d893c 100644 (file)
  * UAR base address if UAR was not the first object in the UAR page.
  * It caused the PMD failure and we should try to get another UAR
  * till we get the first one with non-NULL base address returned.
- * Should follow the rdma_core internal (not exported) definition
- * MLX5_NUM_NON_FP_BFREGS_PER_UAR.
  */
-#define MLX5_ALLOC_UAR_RETRY 2
+#define MLX5_ALLOC_UAR_RETRY 32
 
 #endif /* RTE_PMD_MLX5_DEFS_H_ */