From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dvora Fuxbrumer Date: Thu, 20 May 2021 09:56:17 +0300 Subject: [Intel-wired-lan] [PATCH v6 2/9] igc: Refactor __igc_xdp_run_prog() In-Reply-To: <20210423062555.14972-3-jithu.joseph@intel.com> References: <20210423062555.14972-1-jithu.joseph@intel.com> <20210423062555.14972-3-jithu.joseph@intel.com> Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: intel-wired-lan@osuosl.org List-ID: On 23/04/2021 09:25, Jithu Joseph wrote: > From: Andre Guedes > > Refactor __igc_xdp_run_prog() helper from igc_xdp_run_prog(), > preparing the code for AF_XDP zero-copy support which is added > by upcoming patches. > > The existing igc_xdp_run_prog() caters to regular XDP rx path > which has to verify if bpf_prog is not NULL. Zero-copy > path assumes that bpf_prog is not NULL and hence this check is > not required. Therefore it makes sense to refactor the common > code into a helper function, to avoid code duplication. > > Signed-off-by: Andre Guedes > Signed-off-by: Vedang Patel > Signed-off-by: Jithu Joseph > Reviewed-by: Maciej Fijalkowski > --- > drivers/net/ethernet/intel/igc/igc_main.c | 56 +++++++++++------------ > 1 file changed, 28 insertions(+), 28 deletions(-) > Tested-by: Dvora Fuxbrumer