mbox series

[v4,net-next,0/4] Fix passing 0 to ERR_PTR in intel ether drivers

Message ID 20241026041249.1267664-1-yuehaibing@huawei.com (mailing list archive)
Headers show
Series Fix passing 0 to ERR_PTR in intel ether drivers | expand

Message

Yue Haibing Oct. 26, 2024, 4:12 a.m. UTC
Fixing sparse error in xdp run code by introducing new variable xdp_res
instead of overloading this into the skb pointer as i40e drivers done
in commit 12738ac4754e ("i40e: Fix sparse errors in i40e_txrx.c") and
commit ae4393dfd472 ("i40e: fix broken XDP support").

v4: Target to net-next
v3: https://lore.kernel.org/bpf/20241022065623.1282224-3-yuehaibing@huawei.com/T/
    Fix uninitialized 'xdp_res' in patch 3 and 4 which Reported-by
    kernel test robot
v2: Fix this as i40e drivers done instead of return NULL in xdp run code

Yue Haibing (4):
  igc: Fix passing 0 to ERR_PTR in igc_xdp_run_prog()
  igb: Fix passing 0 to ERR_PTR in igb_run_xdp()
  ixgbe: Fix passing 0 to ERR_PTR in ixgbe_run_xdp()
  ixgbevf: Fix passing 0 to ERR_PTR in ixgbevf_run_xdp()

 drivers/net/ethernet/intel/igb/igb_main.c     | 22 +++++++-----------
 drivers/net/ethernet/intel/igc/igc_main.c     | 20 ++++++----------
 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c | 23 ++++++++-----------
 .../net/ethernet/intel/ixgbevf/ixgbevf_main.c | 23 ++++++++-----------
 4 files changed, 34 insertions(+), 54 deletions(-)

Comments

Jakub Kicinski Oct. 29, 2024, 2:44 p.m. UTC | #1
On Sat, 26 Oct 2024 12:12:45 +0800 Yue Haibing wrote:
> v4: Target to net-next

Nonetheless I'm going to assume Jake / Tony will take these.
LMK if we should apply directly.
Tony Nguyen Oct. 29, 2024, 6:37 p.m. UTC | #2
On 10/29/2024 7:44 AM, Jakub Kicinski wrote:
> On Sat, 26 Oct 2024 12:12:45 +0800 Yue Haibing wrote:
>> v4: Target to net-next
> 
> Nonetheless I'm going to assume Jake / Tony will take these.
> LMK if we should apply directly.

Yes, I'll take these through IWL.

Thanks,
Tony