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 38EE63DDDDB; Fri, 8 May 2026 12:41:50 +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=1778244110; cv=none; b=qbTCnsRhpiM7rmFk0k312AtvruruSwOw6vJG9+4sUxii/sWn7iji3mum2KA6bHt10tl5gaRfq9N1L513NQYTKyPm2i70t88pD56COiCwwQ82SocZoF+/Sm0D1y6c27LrBGzHYJg3xXMQTvvzrNnRZkINxPoz2Jj/svlXpH3lzeQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778244110; c=relaxed/simple; bh=72aEiAvSRBLj/HrCY8TEyqKEXpOpGEyoaHukuZcB87c=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=pBPH2Cjnxhcf+wxhApMjtWTsgPt/avOJJ3a/bC6Tdu7/cVXNI3YMbolfyWDkZzuUsn2ID1nE0j43ROIDTTT1F/6Bb82m/kRrUXIS2IOYMEgKwU9WYJI2ax5O5RXQkBKV8PE4OpEZiRof7VE10GqM4xGuGTI8SYJTqjtdSLtyZ+M= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=YWDWzpiL; 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="YWDWzpiL" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 83D18C2BCB0; Fri, 8 May 2026 12:41:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1778244109; bh=72aEiAvSRBLj/HrCY8TEyqKEXpOpGEyoaHukuZcB87c=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=YWDWzpiLoxC+IKkvzbMEVHiCqsRFITC6NIDBdIb6GE4rxu+CpuFoW2APnzWq5Pc0z o3cQBFmCKxcCwSIeh4E/4OlGzSenIvWxymq4/mPIXJwyTsz5TSBrxkEUceQTuuR0dQ 4YGYejrhmuWn08WGhJLo1ZfP7tGyE3gZSPep6Czc= Date: Fri, 8 May 2026 14:41:47 +0200 From: "gregkh@linuxfoundation.org" To: Dominik Grzegorzek , Ben Hutchings Cc: "torvalds@linux-foundation.org" , "lwn@lwn.net" , "stable@vger.kernel.org" , "linux-kernel@vger.kernel.org" , "akpm@linux-foundation.org" , "jslaby@suse.cz" Subject: Re: Linux 5.15.205 Message-ID: <2026050829-gladiator-displease-57af@gregkh> References: <2026050835-appealing-stallion-a207@gregkh> <1b941a1353791ddd6fd75fb8e68b377367d689ff.camel@oracle.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1b941a1353791ddd6fd75fb8e68b377367d689ff.camel@oracle.com> On Fri, May 08, 2026 at 12:05:02PM +0000, Dominik Grzegorzek wrote: > Hi, > > I may be mistaken, but I think there might be a small typo in this hunk in net/ipv4/ip_output.c: > > skb_shinfo(skb)->tx_flags |= SKBFL_SHARED_FRAG; > > Would this need to be: > > skb_shinfo(skb)->flags |= SKBFL_SHARED_FRAG; > > My understanding is that SKBFL_SHARED_FRAG is a bit in skb_shared_info->flags, and skb_has_shared_frag() checks skb_shinfo(skb)->flags. Adding Ben who did the 5.10 backport so he can comment on this. thanks, greg k-h