Skip to content

Commit 98c1ad1

Browse files
committed
revert "ipv4: Should use consistent conditional judgement for ip fragment in __ip_append_data and ip_finish_output"
This reverts commit f102bb7164c9020e12662998f0fd99c3be72d4f6 which is commit 0a28cfd51e17f4f0a056bcf66bfbe492c3b99f38 upstream as there is another patch that needs to be applied instead of this one. Cc: Zheng Li <james.z.li@ericsson.com> Cc: David S. Miller <davem@davemloft.net> Cc: Sasha Levin <alexander.levin@verizon.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 54fc0c3 commit 98c1ad1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

net/ipv4/ip_output.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -922,7 +922,7 @@ static int __ip_append_data(struct sock *sk,
922922
csummode = CHECKSUM_PARTIAL;
923923

924924
cork->length += length;
925-
if ((((length + fragheaderlen) > mtu) || (skb && skb_is_gso(skb))) &&
925+
if (((length > mtu) || (skb && skb_is_gso(skb))) &&
926926
(sk->sk_protocol == IPPROTO_UDP) &&
927927
(rt->dst.dev->features & NETIF_F_UFO) && !rt->dst.header_len &&
928928
(sk->sk_type == SOCK_DGRAM) && !sk->sk_no_check_tx) {

0 commit comments

Comments
 (0)