Re: [PATCH net-next 7/9] i40e: Move memory allocation structures to i40e_alloc.h

From: Ivan Vecera
Date: Wed Sep 27 2023 - 03:09:08 EST




On 26. 09. 23 21:57, Przemek Kitszel wrote:
On 9/26/23 20:27, Ivan Vecera wrote:
Structures i40e_dma_mem & i40e_virt_mem are defined i40e_osdep.h while
memory allocation functions that use them are declared in i40e_alloc.h
Move them to i40e_alloc.h and remove this header file dependency on
i40e_osdep.h header.

Due to removal of this dependency we have to include i40e_osdep.h in files
that requires it.

Signed-off-by: Ivan Vecera <ivecera@xxxxxxxxxx>
---
  drivers/net/ethernet/intel/i40e/i40e_adminq.c |  1 +
  drivers/net/ethernet/intel/i40e/i40e_adminq.h |  2 +-
  drivers/net/ethernet/intel/i40e/i40e_alloc.h  | 21 ++++++++++++++++++-
  drivers/net/ethernet/intel/i40e/i40e_common.c |  1 +
  drivers/net/ethernet/intel/i40e/i40e_dcb.c    |  1 +
  drivers/net/ethernet/intel/i40e/i40e_diag.c   |  1 +
  drivers/net/ethernet/intel/i40e/i40e_hmc.c    |  1 +
  drivers/net/ethernet/intel/i40e/i40e_hmc.h    |  2 +-
  .../net/ethernet/intel/i40e/i40e_lan_hmc.c    |  1 +
  drivers/net/ethernet/intel/i40e/i40e_nvm.c    |  1 +
  drivers/net/ethernet/intel/i40e/i40e_osdep.h  | 19 -----------------
  11 files changed, 29 insertions(+), 22 deletions(-)

I very much like this series, but extending i40e_osdep.h usage asks for comment 😉 - please try to reorder patches to have less dependency on it first, and afterwards do split
(IOW first remove&reduce, then split what's left)

(disclaimer: I have not double checked if that's possible)

I will move the patch 5 after i40e_osdep split and memory allocation clean-up patches. This should simplify the changes.

Thanks for comment...

Ivan