Merge b729e0e88e on remote branch

Change-Id: I435c40d833131fdc5101878b2e423146f6f04a3d
This commit is contained in:
Linux Build Service Account 2024-05-13 09:22:03 -07:00
commit 92c74b6331

View File

@ -1,5 +1,5 @@
/* Copyright (c) 2013-2020, The Linux Foundation. All rights reserved.
* Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved.
* Copyright (c) 2023-2024 Qualcomm Innovation Center, Inc. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 and
@ -1447,7 +1447,7 @@ static int rmnet_frag_checksum_pkt(struct rmnet_frag_descriptor *frag_desc)
csum_len -= frag_desc->ip_len;
/* IPv4 checksum must be valid */
if (ip_fast_csum((u8 *)iph, frag_desc->ip_len)) {
if (ip_fast_csum((u8 *)iph, iph->ihl)) {
priv->stats.csum_sw++;
return 0;
}