Re: [Intel-gfx] [patch 23/30] net/mlx5: Use effective interrupt affinity

2020-12-14 Thread Tariq Toukan
c->lag_port = mlx5e_enumerate_lag_port(priv->mdev, ix); netif_napi_add(netdev, &c->napi, mlx5e_napi_poll, 64); Reviewed-by: Tariq Toukan Thanks. ___ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx

Re: [Intel-gfx] [patch 21/30] net/mlx4: Use effective interrupt affinity

2020-12-14 Thread Tariq Toukan
must reduce the mask to the effective set, which means that checking the affinity mask itself does not really tell about the actual target CPUs. Signed-off-by: Thomas Gleixner Cc: Tariq Toukan Cc: "David S. Miller" Cc: Jakub Kicinski Cc: net...@vger.kernel.org Cc: linux-r...@vger.

Re: [Intel-gfx] [patch 20/30] net/mlx4: Replace irq_to_desc() abuse

2020-12-14 Thread Tariq Toukan
encapsulation does not mean that the kernel has no limits. Retrieve a pointer to the affinity mask itself and use that. It's still using an interface which is usually not for random drivers, but definitely less hideous than the previous hack. Signed-off-by: Thomas Gleixner Cc: Tariq Toukan Cc: &qu

Re: [Intel-gfx] [patch 22/30] net/mlx5: Replace irq_to_desc() abuse

2020-12-14 Thread Tariq Toukan
lanox/mlx5/core/en.h |2 +- drivers/net/ethernet/mellanox/mlx5/core/en_main.c |2 +- drivers/net/ethernet/mellanox/mlx5/core/en_txrx.c |6 +- 3 files changed, 3 insertions(+), 7 deletions(-) Reviewed-by: Tariq Toukan T