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 7499C1862A; Fri, 8 May 2026 15:00:57 +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=1778252457; cv=none; b=HIdJQr5BQtC9FyXZr84AvYcQ7RWrzfkdbBjFBzPdiWkee8TFK5lZS47DbEjsCBEVr1iTYq1XnAFxiVtyNvnZ/4KF8d+ofxjusJmc04nK2C/1spsC5NOES8DrtLv9QI3kTxPbTcfi+wWupyWr3R2SsOjAsoR8pSWNkvFRQqAPr8k= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778252457; c=relaxed/simple; bh=8T67dEJHVJEsT6/Dd8SFvX8UWBkzp3GF8ycHTMDGEnw=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=leGRRjPh34CVnf9UCSS8c4XsYrtsDqCUGnqnTiS0G/oM9udDFDh/cAzN8JlIHotZhsdIvj+erdlghi+W7lMYaBtk4J7FdvtNEGJj4pK1lUPZkZLhLrVw0Olw9yJ59hhlbmdAWrN7gXFhbJ+5saKTTN1D/DTTzsVm+j68euDX5og= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=v5EMPEoy; 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="v5EMPEoy" Received: by smtp.kernel.org (Postfix) with ESMTPSA id BCEE0C2BCB0; Fri, 8 May 2026 15:00:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1778252457; bh=8T67dEJHVJEsT6/Dd8SFvX8UWBkzp3GF8ycHTMDGEnw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=v5EMPEoy3Mz6nKVrtPDfZi33LL4YfWXFJ7n0VGA1rDlsHCTGu8Y67NQNm+E8ES/ig XIo8oLLEPjLhuN4Zu0aChVtIoeKedMWAWlKl0z1cs+owDP6sZRinR1/qox88qD9WgZ B8SNWA2YgyeQ0ffI6VBJaHGBRwtBB77lQHveABFY= 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.1.172 Date: Fri, 8 May 2026 17:00:46 +0200 Message-ID: <2026050845-stamp-referee-bbb7@gregkh> X-Mailer: git-send-email 2.54.0 In-Reply-To: <2026050845-uncouple-capricorn-acc4@gregkh> References: <2026050845-uncouple-capricorn-acc4@gregkh> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit diff --git a/Makefile b/Makefile index 2b467b2216e7..ce814807f22d 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-2.0 VERSION = 6 PATCHLEVEL = 1 -SUBLEVEL = 171 +SUBLEVEL = 172 EXTRAVERSION = NAME = Curry Ramen diff --git a/net/ipv4/ip_output.c b/net/ipv4/ip_output.c index ec8279278dea..f5a2ad2b2dbd 100644 --- a/net/ipv4/ip_output.c +++ b/net/ipv4/ip_output.c @@ -1463,7 +1463,7 @@ ssize_t ip_append_page(struct sock *sk, struct flowi4 *fl4, struct page *page, goto error; } - skb_shinfo(skb)->tx_flags |= SKBFL_SHARED_FRAG; + skb_shinfo(skb)->flags |= SKBFL_SHARED_FRAG; if (skb->ip_summed == CHECKSUM_NONE) { __wsum csum;