aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/mellanox
diff options
context:
space:
mode:
authorChen Wandun <chenwandun@huawei.com>2020-01-20 20:41:53 +0800
committerSaeed Mahameed <saeedm@mellanox.com>2020-01-22 22:28:26 -0800
commite15cf98ee8a76472144a19a24ca73d26fefa5237 (patch)
tree680284ee7abb16986355b629bdf6878e93ca38bc /drivers/net/ethernet/mellanox
parentnet/mlx5e: allow TSO on VXLAN over VLAN topologies (diff)
downloadlinux-dev-e15cf98ee8a76472144a19a24ca73d26fefa5237.tar.xz
linux-dev-e15cf98ee8a76472144a19a24ca73d26fefa5237.zip
net/mlx5: make the symbol 'ESW_POOLS' static
Fix the following sparse warning: drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads_chains.c:35:20: warning: symbol 'ESW_POOLS' was not declared. Should it be static? Fixes: 39ac237ce009 ("net/mlx5: E-Switch, Refactor chains and priorities") Signed-off-by: Chen Wandun <chenwandun@huawei.com> Acked-by: Paul Blakey <paulb@mellanox.com> Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
Diffstat (limited to 'drivers/net/ethernet/mellanox')
-rw-r--r--drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads_chains.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads_chains.c b/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads_chains.c
index 3a60eb5360bd..c5a446e295aa 100644
--- a/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads_chains.c
+++ b/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads_chains.c
@@ -32,10 +32,10 @@
* pools.
*/
#define ESW_SIZE (16 * 1024 * 1024)
-const unsigned int ESW_POOLS[] = { 4 * 1024 * 1024,
- 1 * 1024 * 1024,
- 64 * 1024,
- 4 * 1024, };
+static const unsigned int ESW_POOLS[] = { 4 * 1024 * 1024,
+ 1 * 1024 * 1024,
+ 64 * 1024,
+ 4 * 1024, };
struct mlx5_esw_chains_priv {
struct rhashtable chains_ht;