From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mta0.migadu.com (out-104.mta0.migadu.com [91.218.175.104]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id C1A71386C3B for ; Tue, 25 Aug 2026 13:40:34 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.104 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1787665236; cv=none; b=iq2zJaHTdHnvcGgQ4QAeoq3CCuKaf8/cDnUrPE6jme454VnlEbQTJKObieJaXvqbTXYvdd+pTPYy4xe0Zxva6aruxqaHYH3uvmYzbz4fTRytKX0ChD3XJX80rwOeuYe7ZGaDxnRGdR0fifvwAAOoWPfDfOYqX4SnwNgY+hCtU8w= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1787665236; c=relaxed/simple; bh=0A3Ji21+yf4EPW8I2x+QmKHNXnWo8d4jWhEB3lqoREs=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=JbrtY71diUAK1yMhsF7U1ecN1FzfE5zdinLgN/bE3lAJSiO02HiKg2LRPqG31STEmPPdjxRYgiH/NDLcBViWkH6q9TcQv5EKcsqmHJar4ChWMc0JdTuNRA07uP71TvUuQxk3SWA22nRXa39GTR9HPfeBoHP+L+hbjrSW0gsClpA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=QIJi4YWi; arc=none smtp.client-ip=91.218.175.104 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="QIJi4YWi" X-Envelope-To: linux-kernel@vger.kernel.org DKIM-Signature: a=rsa-sha256; bh=0A3Ji21+yf4EPW8I2x+QmKHNXnWo8d4jWhEB3lqoREs=; c=simple/simple; d=linux.dev; h=from:to:subject:date:message-id:mime-version:content-type; s=key1; t=1787665232; v=1; x=1788270032; b=QIJi4YWipiH/JWYaQAGC/0pR5+wRdnaR0LYs91IUcHZoLCfGDExVUoWaB1Ig4e8axjQSDeQN W5hR2mBQajsppiefyN5OKsec51GQ9wTf923yqBm6p8xyZP6Lve8XdEozPUz52BnCqIgNjRH1nAF PH7RyMPGcpyu9+MVQm4+SSg4= X-Envelope-To: linux-kernel@vger.kernel.org Received: from [10.254.116.35] (101.126.56.83) by smtp.migadu.com with ESMTPS id 09d1a17ef30c8715; Tue, 25 Aug 2026 13:40:32 +0000 X-Mizu-Trace-ID: 09d1a17ef30c8715 X-Migadu-Flow: FLOW_OUT Message-ID: <0d300afb-cc12-498b-a350-77fde67d85f3@linux.dev> Date: Tue, 25 Aug 2026 21:40:17 +0800 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH v5 17/17] mm/hugetlb: localize HUGE_BOOTMEM_ZONES_VALID To: Muchun Song , Andrew Morton , Oscar Salvador , David Hildenbrand Cc: Mike Rapoport , Vlastimil Babka , Lorenzo Stoakes , Michal Hocko , David Laight , "Liam R . Howlett" , Suren Baghdasaryan , linux-mm@kvack.org, linux-kernel@vger.kernel.org, Muchun Song References: <20260825084608.47437-1-songmuchun@bytedance.com> <20260825084608.47437-18-songmuchun@bytedance.com> From: Qi Zheng In-Reply-To: <20260825084608.47437-18-songmuchun@bytedance.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit On 8/25/26 4:46 PM, Muchun Song wrote: > HUGE_BOOTMEM_ZONES_VALID is only used by the huge_bootmem_page flag > handling in mm/hugetlb.c. Keep the definition next to that private data > structure instead of exposing it through the public hugetlb header. > > No functional change is intended. > > Signed-off-by: Muchun Song > Acked-by: Mike Rapoport (Microsoft) > --- > v2: > - Collect Acked-by from Mike Rapoport > --- > include/linux/hugetlb.h | 2 -- > mm/hugetlb.c | 2 ++ > 2 files changed, 2 insertions(+), 2 deletions(-) > Acked-by: Qi Zheng Thanks, Qi