ixgbe: Fix NULL pointer dereference in ethtool loopback test
authorAlexander Duyck <alexanderduyck@fb.com>
Mon, 8 Mar 2021 20:41:56 +0000 (12:41 -0800)
committerTony Nguyen <anthony.l.nguyen@intel.com>
Tue, 13 Apr 2021 18:03:36 +0000 (11:03 -0700)
commit31166efb1cee348eb6314e9c0095d84cbeb66b9d
tree5b17e3d0c8ff86f5a701b706471f7f1bd74c408b
parentccb39c6285581992f0225c45e4de704028a8ec17
ixgbe: Fix NULL pointer dereference in ethtool loopback test

The ixgbe driver currently generates a NULL pointer dereference when
performing the ethtool loopback test. This is due to the fact that there
isn't a q_vector associated with the test ring when it is setup as
interrupts are not normally added to the test rings.

To address this I have added code that will check for a q_vector before
returning a napi_id value. If a q_vector is not present it will return a
value of 0.

Fixes: b02e5a0ebb17 ("xsk: Propagate napi_id to XDP socket Rx path")
Signed-off-by: Alexander Duyck <alexanderduyck@fb.com>
Acked-by: Björn Töpel <bjorn.topel@intel.com>
Tested-by: Dave Switzer <david.switzer@intel.com>
Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
drivers/net/ethernet/intel/ixgbe/ixgbe_main.c