All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jankowski, Konrad0 <konrad0.jankowski@intel.com>
To: intel-wired-lan@osuosl.org
Subject: [Intel-wired-lan] [net-next PATCH 16/25] ice: move reset functionality into ice_vf_lib.c
Date: Wed, 2 Mar 2022 19:56:27 +0000	[thread overview]
Message-ID: <SJ0PR11MB56299347D8DF754357E24C18AB039@SJ0PR11MB5629.namprd11.prod.outlook.com> (raw)
In-Reply-To: <20220223002712.2771809-17-jacob.e.keller@intel.com>



> -----Original Message-----
> From: Intel-wired-lan <intel-wired-lan-bounces@osuosl.org> On Behalf Of
> Jacob Keller
> Sent: Wednesday, February 23, 2022 1:27 AM
> To: Intel Wired LAN <intel-wired-lan@lists.osuosl.org>
> Subject: [Intel-wired-lan] [net-next PATCH 16/25] ice: move reset
> functionality into ice_vf_lib.c
> 
> Now that the reset functions do not rely on Single Root specific behavior,
> move the ice_reset_vf, ice_reset_all_vfs, and ice_vf_rebuild_host_cfg
> functions and their dependent helper functions out of ice_sriov.c and into
> ice_vf_lib.c
> 
> Signed-off-by: Jacob Keller <jacob.e.keller@intel.com>
> ---
>  drivers/net/ethernet/intel/ice/ice_sriov.c    | 475 ------------------
>  drivers/net/ethernet/intel/ice/ice_sriov.h    |  15 -
>  drivers/net/ethernet/intel/ice/ice_vf_lib.c   | 475 ++++++++++++++++++
>  drivers/net/ethernet/intel/ice/ice_vf_lib.h   |  12 +
>  .../ethernet/intel/ice/ice_vf_lib_private.h   |   1 +
>  5 files changed, 488 insertions(+), 490 deletions(-)
> 
> diff --git a/drivers/net/ethernet/intel/ice/ice_sriov.c
> b/drivers/net/ethernet/intel/ice/ice_sriov.c
> index b2376e3b746e..4a8cf8f646c8 100644
> --- a/drivers/net/ethernet/intel/ice/ice_sriov.c
> +++ b/drivers/net/ethernet/intel/ice/ice_sriov.c
> @@ -466,37 +466,6 @@ void ice_free_vfs(struct ice_pf *pf)

Tested-by: Konrad Jankowski <konrad0.jankowski@intel.com>

  reply	other threads:[~2022-03-02 19:56 UTC|newest]

Thread overview: 55+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-02-23  0:26 [Intel-wired-lan] [net-next PATCH 00/25] ice: reorganize virtualization code Jacob Keller
2022-02-23  0:26 ` [Intel-wired-lan] [net-next PATCH 01/25] ice: rename ice_sriov.c to ice_vf_mbx.c Jacob Keller
2022-03-02 20:05   ` Jankowski, Konrad0
2022-02-23  0:26 ` [Intel-wired-lan] [net-next PATCH 02/25] ice: rename ice_virtchnl_pf.c to ice_sriov.c Jacob Keller
2022-03-02 20:05   ` Jankowski, Konrad0
2022-02-23  0:26 ` [Intel-wired-lan] [net-next PATCH 03/25] ice: remove circular header dependencies on ice.h Jacob Keller
2022-03-02  8:20   ` G, GurucharanX
2022-02-23  0:26 ` [Intel-wired-lan] [net-next PATCH 04/25] ice: convert vf->vc_ops to a const pointer Jacob Keller
2022-03-02 11:15   ` Penigalapati, Sandeep
2022-02-23  0:26 ` [Intel-wired-lan] [net-next PATCH 05/25] ice: remmove unused definitions from ice_sriov.h Jacob Keller
2022-03-02 20:03   ` Jankowski, Konrad0
2022-02-23  0:26 ` [Intel-wired-lan] [net-next PATCH 06/25] ice: rename ICE_MAX_VF_COUNT to avoid confusion Jacob Keller
2022-03-02 20:03   ` Jankowski, Konrad0
2022-02-23  0:26 ` [Intel-wired-lan] [net-next PATCH 07/25] ice: refactor spoofchk control code in ice_sriov.c Jacob Keller
2022-03-02 20:02   ` Jankowski, Konrad0
2022-02-23  0:26 ` [Intel-wired-lan] [net-next PATCH 08/25] ice: move ice_set_vf_port_vlan near other .ndo ops Jacob Keller
2022-03-02 20:02   ` Jankowski, Konrad0
2022-02-23  0:26 ` [Intel-wired-lan] [net-next PATCH 09/25] ice: cleanup error logging for ice_ena_vfs Jacob Keller
2022-03-02 20:01   ` Jankowski, Konrad0
2022-02-23  0:26 ` [Intel-wired-lan] [net-next PATCH 10/25] ice: log an error message when eswitch fails to configure Jacob Keller
2022-03-03  7:51   ` Penigalapati, Sandeep
2022-02-23  0:26 ` [Intel-wired-lan] [net-next PATCH 11/25] ice: use ice_is_vf_trusted helper function Jacob Keller
2022-03-02 20:01   ` Jankowski, Konrad0
2022-02-23  0:26 ` [Intel-wired-lan] [net-next PATCH 12/25] ice: introduce ice_vf_lib.c, ice_vf_lib.h, and ice_vf_lib_private.h Jacob Keller
2022-03-02 20:00   ` Jankowski, Konrad0
2022-02-23  0:27 ` [Intel-wired-lan] [net-next PATCH 13/25] ice: fix incorrect dev_dbg print mistaking 'i' for vf->vf_id Jacob Keller
2022-03-02 20:00   ` Jankowski, Konrad0
2022-02-23  0:27 ` [Intel-wired-lan] [net-next PATCH 14/25] ice: introduce VF operations structure for reset flows Jacob Keller
2022-03-02 19:59   ` Jankowski, Konrad0
2022-02-23  0:27 ` [Intel-wired-lan] [net-next PATCH 15/25] ice: fix a long line warning in ice_reset_vf Jacob Keller
2022-03-02 19:57   ` Jankowski, Konrad0
2022-02-23  0:27 ` [Intel-wired-lan] [net-next PATCH 16/25] ice: move reset functionality into ice_vf_lib.c Jacob Keller
2022-03-02 19:56   ` Jankowski, Konrad0 [this message]
2022-02-23  0:27 ` [Intel-wired-lan] [net-next PATCH 17/25] ice: drop is_vflr parameter from ice_reset_all_vfs Jacob Keller
2022-03-02 19:47   ` Jankowski, Konrad0
2022-02-23  0:27 ` [Intel-wired-lan] [net-next PATCH 18/25] ice: make ice_reset_all_vfs void Jacob Keller
2022-03-02 19:47   ` Jankowski, Konrad0
2022-02-23  0:27 ` [Intel-wired-lan] [net-next PATCH 19/25] ice: convert ice_reset_vf to standard error codes Jacob Keller
2022-03-02 19:46   ` Jankowski, Konrad0
2022-02-23  0:27 ` [Intel-wired-lan] [net-next PATCH 20/25] ice: convert ice_reset_vf to take flags Jacob Keller
2022-03-02 19:45   ` Jankowski, Konrad0
2022-02-23  0:27 ` [Intel-wired-lan] [net-next PATCH 21/25] ice: introduce ICE_VF_RESET_NOTIFY flag Jacob Keller
2022-03-02 19:55   ` Jankowski, Konrad0
2022-02-23  0:27 ` [Intel-wired-lan] [net-next PATCH 22/25] ice: introduce ICE_VF_RESET_LOCK flag Jacob Keller
2022-03-02 19:44   ` Jankowski, Konrad0
2022-03-02 19:45   ` Jankowski, Konrad0
2022-02-23  0:27 ` [Intel-wired-lan] [net-next PATCH 23/25] ice: cleanup long longs in ice_sriov.c Jacob Keller
2022-02-23  1:47   ` Jesse Brandeburg
2022-02-23  9:42     ` Keller, Jacob E
2022-02-23 18:02       ` Nguyen, Anthony L
2022-03-02 19:43   ` Jankowski, Konrad0
2022-02-23  0:27 ` [Intel-wired-lan] [net-next PATCH 24/25] ice: introduce ice_virtchnl.c and ice_virtchnl.h Jacob Keller
2022-03-02 19:41   ` Jankowski, Konrad0
2022-02-23  0:27 ` [Intel-wired-lan] [net-next PATCH 25/25] ice: remove PF pointer from ice_check_vf_init Jacob Keller
2022-03-02 19:40   ` Jankowski, Konrad0

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=SJ0PR11MB56299347D8DF754357E24C18AB039@SJ0PR11MB5629.namprd11.prod.outlook.com \
    --to=konrad0.jankowski@intel.com \
    --cc=intel-wired-lan@osuosl.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.