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 C0932296BBE for ; Sat, 6 Dec 2025 03:12:56 +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=1764990776; cv=none; b=iuQzCQwPf3vg5GotK+7v17L14hYryU3sDEdqzDyjmHEf6FmLGWqDtLklSrLCRT63LMqyQ1/UMHorK8xrIykdiGXeLUGyOmX1EB+6y6pXu+CrOQC7iR7pR2UPpeNlkwIMDXftDi026rkJjUQ3ILMG3SJDALcST9qCOCiYLwn97tw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1764990776; c=relaxed/simple; bh=Ond4FsQaolgVCGsRJYSEIPpQjsP6TpYyCVBBKlrYlkw=; h=Date:From:To:Cc:Subject:Message-Id:In-Reply-To:References: Mime-Version:Content-Type; b=Axmn/GjBh+MAbs36gKGVW+v+UQ+wbI4bk6Rl+0auFUNsAzLY7Zw7hMjCLyG+W6OM8rAAxqFu7x2jDhc9YPnS2B0a2EfJvhqpGn2MJnCfFyy01HEroIaxjZBTRSM+TxJj2EUoTpxvtGLDWh74p5SGbGiNQg3ArYLJcJHPugZ10RQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux-foundation.org header.i=@linux-foundation.org header.b=iTlcIo5A; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux-foundation.org header.i=@linux-foundation.org header.b="iTlcIo5A" Received: by smtp.kernel.org (Postfix) with ESMTPSA id EB32BC4CEF1; Sat, 6 Dec 2025 03:12:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linux-foundation.org; s=korg; t=1764990776; bh=Ond4FsQaolgVCGsRJYSEIPpQjsP6TpYyCVBBKlrYlkw=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=iTlcIo5A2CSxaOfsU/36rIuiZVE8XTtuN8cNug06D1JYu8K1UVaqVLH1Tji2J8Be3 1qq58LFe4uU5K0xARRmj/Uq+4aGluze/UdesMrNWCE9pvYt5z5WpgAS0kgy/Dtw5iM JQ/UmcocYUbj2IlspcIRn49SlAHTD2z/eO9DGpQk= Date: Fri, 5 Dec 2025 19:12:55 -0800 From: Andrew Morton To: Stephen Rothwell Cc: Lorenzo Stoakes , David Hildenbrand , "Liam R . Howlett" , Vlastimil Babka , Mike Rapoport , Suren Baghdasaryan , Michal Hocko , oliver.sang@intel.com, linux-mm@kvack.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] mm: avoid use of BIT() macro for initialising VMA flags Message-Id: <20251205191255.e6da75c8511d23159f44b59f@linux-foundation.org> In-Reply-To: <20251206114034.24bdbf1f@canb.auug.org.au> References: <20251205175037.1287366-1-lorenzo.stoakes@oracle.com> <20251205121501.bf47efd78d0a1a8f0370645c@linux-foundation.org> <20251206114034.24bdbf1f@canb.auug.org.au> X-Mailer: Sylpheed 3.8.0beta1 (GTK+ 2.24.33; x86_64-pc-linux-gnu) 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-Transfer-Encoding: 7bit On Sat, 6 Dec 2025 11:40:34 +1100 Stephen Rothwell wrote: > Hi Andrew, > > On Fri, 5 Dec 2025 12:15:01 -0800 Andrew Morton wrote: > > > > I'm not really sure what's the best way to determine this. I use > > > > hp2:/usr/src/mm> git tag --contains 2b6a3f061f11 > > mm-everything-2025-11-29-19-43 > > mm-everything-2025-12-01-19-02 > > mm-everything-2025-12-03-23-49 > > mm-everything-2025-12-05-00-55 > > mm-stable-2025-12-03-21-26 > > > > What does "git branch --contains 2b6a3f061f11" say in your tree? hp2:/usr/src/mm> git branch --contains 2b6a3f061f11 * linus mm-everything mm-new mm-stable mm-unstable hp2:/usr/src/mm> git branch -r --contains 2b6a3f061f11 linus/master origin/mm-everything origin/mm-new origin/mm-stable origin/mm-unstable kinda random, but it tells me "that's in mm-stable", which is what counts. > In my linux-next tree it says (I need the -r to check remote branches): > > $ git branch -r --contains 2b6a3f061f11 > mm-stable/mm-stable > mm-unstable/mm-unstable > > but I don't export my remotes to my published tree.