mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-04 18:19:28 +09:00
net: mvneta: Fix big endian issue in mvneta_txq_desc_csum()
[ Upstream commit 0a19858794 ]
This commit fixes the command value generated for CSUM calculation
when running in big endian mode. The Ethernet protocol ID for IP was
being unconditionally byte-swapped in the layer 3 protocol check (with
swab16), which caused the mvneta driver to not function correctly in
big endian mode. This patch byte-swaps the ID conditionally with
htons.
Cc: <stable@vger.kernel.org> # v3.13+
Signed-off-by: Thomas Fitzsimmons <fitzsim@fitzsim.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
8a8d269dd2
commit
ba502e1e23
@@ -1145,7 +1145,7 @@ static u32 mvneta_txq_desc_csum(int l3_offs, int l3_proto,
|
||||
command = l3_offs << MVNETA_TX_L3_OFF_SHIFT;
|
||||
command |= ip_hdr_len << MVNETA_TX_IP_HLEN_SHIFT;
|
||||
|
||||
if (l3_proto == swab16(ETH_P_IP))
|
||||
if (l3_proto == htons(ETH_P_IP))
|
||||
command |= MVNETA_TXD_IP_CSUM;
|
||||
else
|
||||
command |= MVNETA_TX_L3_IP6;
|
||||
|
||||
Reference in New Issue
Block a user