From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id F1BFD2BEC2C; Mon, 11 May 2026 06:33:20 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778481201; cv=none; b=owq1j0hifo4mkvcBtQnZGNuCOgS5kDCLzFgkFgvTntqt4VBisqQlOREJO3vSdZCVqXtc6mAFil3EDB/FbaWLvLLHudEboIFzmlgS2j1B1hQEMXwaQzNiW3Ab8wfOY3wYqCaBxh3VmDv5wLdKZSXOLpc3GLLjcCFA2ZzrQ1VzF/k= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778481201; c=relaxed/simple; bh=Qxk1Yz4gmkGEV3MKN71ZPmleOp+KqLqqukKaLCfiWFQ=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=qHMtR2Pi77I1a73J1UMohy4IS2Osg4qZqm1Io8kcDzSrLz3QdehhLNQ1dAbZ4koumk/F5pyzAY3hsPqWuIFb9lHICunvmgue9ofvTOWEdn9FKG28k2swYdWi++PgJ51HZPWeoQ+iW4429rwxbkLOT+QBkeMar75O5uj96LaEIa4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=azrTQIvh; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="azrTQIvh" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 429EAC2BCB0; Mon, 11 May 2026 06:33:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1778481200; bh=Qxk1Yz4gmkGEV3MKN71ZPmleOp+KqLqqukKaLCfiWFQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=azrTQIvhmPRnJ1MuiWjhLxiX4uWIK7niC09xRxbOYLt09a0aaHNMYAnF5qkndcbmz hAi90GQQBKx8UGAmeUp5otR7w7JXR5Ze035sBaMl9Pr0jhGJvNuoCef8r963P3UQfW dICwyI9pKaWNGHqIT5tUzcIAX5sykQpIjijB9iy0= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org, akpm@linux-foundation.org, torvalds@linux-foundation.org, stable@vger.kernel.org Cc: lwn@lwn.net, jslaby@suse.cz, Greg Kroah-Hartman Subject: Re: Linux 6.18.29 Date: Mon, 11 May 2026 08:33:09 +0200 Message-ID: <2026051108-grit-operator-498a@gregkh> X-Mailer: git-send-email 2.54.0 In-Reply-To: <2026051107-clash-designate-852d@gregkh> References: <2026051107-clash-designate-852d@gregkh> Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit diff --git a/Makefile b/Makefile index 8d068587e6bd..ca41f54bea2e 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-2.0 VERSION = 6 PATCHLEVEL = 18 -SUBLEVEL = 28 +SUBLEVEL = 29 EXTRAVERSION = NAME = Baby Opossum Posse diff --git a/net/rxrpc/call_event.c b/net/rxrpc/call_event.c index fdd683261226..2b19b252225e 100644 --- a/net/rxrpc/call_event.c +++ b/net/rxrpc/call_event.c @@ -334,7 +334,9 @@ bool rxrpc_input_call_event(struct rxrpc_call *call) if (sp->hdr.type == RXRPC_PACKET_TYPE_DATA && sp->hdr.securityIndex != 0 && - skb_cloned(skb)) { + (skb_cloned(skb) || + skb_has_frag_list(skb) || + skb_has_shared_frag(skb))) { /* Unshare the packet so that it can be * modified by in-place decryption. */ diff --git a/net/rxrpc/conn_event.c b/net/rxrpc/conn_event.c index a2130d25aaa9..442414d90ba1 100644 --- a/net/rxrpc/conn_event.c +++ b/net/rxrpc/conn_event.c @@ -245,7 +245,8 @@ static int rxrpc_verify_response(struct rxrpc_connection *conn, { int ret; - if (skb_cloned(skb)) { + if (skb_cloned(skb) || skb_has_frag_list(skb) || + skb_has_shared_frag(skb)) { /* Copy the packet if shared so that we can do in-place * decryption. */