Re: [PATCH net-next v2] net/mlx5e: xsk: dynamically allocate mlx5e_channel_param

2019-07-23 Thread David Miller
From: Maxim Mikityanskiy Date: Tue, 23 Jul 2019 12:02:26 + > From: Arnd Bergmann > > The structure is too large to put on the stack, resulting in a > warning on 32-bit ARM: > > drivers/net/ethernet/mellanox/mlx5/core/en/xsk/setup.c:59:5: error: stack > frame size of 1344 bytes in function

[PATCH net-next v2] net/mlx5e: xsk: dynamically allocate mlx5e_channel_param

2019-07-23 Thread Maxim Mikityanskiy
From: Arnd Bergmann The structure is too large to put on the stack, resulting in a warning on 32-bit ARM: drivers/net/ethernet/mellanox/mlx5/core/en/xsk/setup.c:59:5: error: stack frame size of 1344 bytes in function 'mlx5e_open_xsk' [-Werror,-Wframe-larger-than=] Use kvzalloc() instead.