]> xenbits.xensource.com Git - arm/linux.git/commitdiff
net/mlx5: Fix lowest FDB pool size
authorPaul Blakey <paulb@mellanox.com>
Tue, 31 Dec 2019 15:04:15 +0000 (17:04 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 29 Jan 2020 15:45:23 +0000 (16:45 +0100)
commit 93b8a7ecb7287cc9b0196f12a25b57c2462d11dc upstream.

The pool sizes represent the pool sizes in the fw. when we request
a pool size from fw, it will return the next possible group.
We track how many pools the fw has left and start requesting groups
from the big to the small.
When we start request 4k group, which doesn't exists in fw, fw
wants to allocate the next possible size, 64k, but will fail since
its exhausted. The correct smallest pool size in fw is 128 and not 4k.

Fixes: e52c28024008 ("net/mlx5: E-Switch, Add chains and priorities")
Signed-off-by: Paul Blakey <paulb@mellanox.com>
Reviewed-by: Roi Dayan <roid@mellanox.com>
Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c

index 9004a07e457a48ca63cbdde6f5b280181e108c09..5acfdea3a75a80589af676b5bba51137919c4eb9 100644 (file)
@@ -858,7 +858,7 @@ out:
  */
 #define ESW_SIZE (16 * 1024 * 1024)
 const unsigned int ESW_POOLS[4] = { 4 * 1024 * 1024, 1 * 1024 * 1024,
-                                   64 * 1024, 4 * 1024 };
+                                   64 * 1024, 128 };
 
 static int
 get_sz_from_pool(struct mlx5_eswitch *esw)