Whole zero-copy variant of clean Rx irq is executed when xsk_pool is
attached to rx_ring and it can happen only when XDP program is present
on interface. Therefore it is safe to assume that program is always
!NULL and there is no need for checking it in ice_run_xdp_zc.

Signed-off-by: Maciej Fijalkowski <maciej.fijalkow...@intel.com>
---
 drivers/net/ethernet/intel/ice/ice_xsk.c | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/drivers/net/ethernet/intel/ice/ice_xsk.c 
b/drivers/net/ethernet/intel/ice/ice_xsk.c
index 797886524054..9aea97ca4a04 100644
--- a/drivers/net/ethernet/intel/ice/ice_xsk.c
+++ b/drivers/net/ethernet/intel/ice/ice_xsk.c
@@ -514,11 +514,10 @@ ice_run_xdp_zc(struct ice_ring *rx_ring, struct xdp_buff 
*xdp)
        u32 act;
 
        rcu_read_lock();
+       /* ZC patch is enabled only when XDP program is set,
+        * so here it can not be NULL
+        */
        xdp_prog = READ_ONCE(rx_ring->xdp_prog);
-       if (!xdp_prog) {
-               rcu_read_unlock();
-               return ICE_XDP_PASS;
-       }
 
        act = bpf_prog_run_xdp(xdp_prog, xdp);
        switch (act) {
-- 
2.20.1

Reply via email to