Skip to content

Commit 90d2ea9

Browse files
ecree-solarflaredavem330
authored andcommitted
sfc: fix swapped arguments to efx_ef10_handle_rx_event_errors
Fixes: a0ee354 ("sfc: process RX event inner checksum flags") Reported-by: Colin Ian King <[email protected]> Signed-off-by: Edward Cree <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent dfcb7a1 commit 90d2ea9

File tree

1 file changed

+2
-1
lines changed
  • drivers/net/ethernet/sfc

1 file changed

+2
-1
lines changed

drivers/net/ethernet/sfc/ef10.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3356,8 +3356,9 @@ static int efx_ef10_handle_rx_event(struct efx_channel *channel,
33563356
EFX_AND_QWORD(errors, *event, errors);
33573357
if (unlikely(!EFX_QWORD_IS_ZERO(errors))) {
33583358
flags |= efx_ef10_handle_rx_event_errors(channel, n_packets,
3359+
rx_encap_hdr,
33593360
rx_l3_class, rx_l4_class,
3360-
rx_encap_hdr, event);
3361+
event);
33613362
} else {
33623363
bool tcpudp = rx_l4_class == ESE_DZ_L4_CLASS_TCP ||
33633364
rx_l4_class == ESE_DZ_L4_CLASS_UDP;

0 commit comments

Comments
 (0)