projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dfcb7a1
)
sfc: fix swapped arguments to efx_ef10_handle_rx_event_errors
author
Edward Cree
<
[email protected]
>
Fri, 10 Feb 2017 17:34:59 +0000
(17:34 +0000)
committer
David S. Miller
<
[email protected]
>
Sun, 12 Feb 2017 02:21:28 +0000
(21:21 -0500)
Fixes: a0ee35414837 ("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]
>
drivers/net/ethernet/sfc/ef10.c
patch
|
blob
|
history
diff --git
a/drivers/net/ethernet/sfc/ef10.c
b/drivers/net/ethernet/sfc/ef10.c
index 6bba2d206d82a7566ba3b1894b7142b00d0b2c9c..761ccc64eee980a96438d8d627344d77ccc1e14a 100644
(file)
--- a/
drivers/net/ethernet/sfc/ef10.c
+++ b/
drivers/net/ethernet/sfc/ef10.c
@@
-3356,8
+3356,9
@@
static int efx_ef10_handle_rx_event(struct efx_channel *channel,
EFX_AND_QWORD(errors, *event, errors);
if (unlikely(!EFX_QWORD_IS_ZERO(errors))) {
flags |= efx_ef10_handle_rx_event_errors(channel, n_packets,
+ rx_encap_hdr,
rx_l3_class, rx_l4_class,
-
rx_encap_hdr,
event);
+ event);
} else {
bool tcpudp = rx_l4_class == ESE_DZ_L4_CLASS_TCP ||
rx_l4_class == ESE_DZ_L4_CLASS_UDP;