From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 2D8AFCDB483 for ; Thu, 19 Oct 2023 03:12:17 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232471AbjJSDMQ (ORCPT ); Wed, 18 Oct 2023 23:12:16 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:38332 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231421AbjJSDMO (ORCPT ); Wed, 18 Oct 2023 23:12:14 -0400 Received: from out-206.mta1.migadu.com (out-206.mta1.migadu.com [95.215.58.206]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D1F189F for ; Wed, 18 Oct 2023 20:12:11 -0700 (PDT) Content-Type: text/plain; charset=us-ascii DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1697685130; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=sdRbdmTqIVWIQiBunchnjyRkLxfYXVSBe4eJv/kibxw=; b=vHR5GN7t5FJjTs1VvuImp+7zOdtNGQlU0ySVTFZU+yxOoUt2DxLABScqPbYIkzj11DuKZw /gyc2aFR1pFTiC5SteAxlrtBAXD5B945anS0l4FWU0q8MLKEqnHuWgkjei8yr3z0wuncdS B3bWZtfRqaOVgKY+Oys9gr5mtqFt/TM= Mime-Version: 1.0 Subject: Re: [PATCH v8 2/8] hugetlb: restructure pool allocations X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Muchun Song In-Reply-To: <20231019023113.345257-3-mike.kravetz@oracle.com> Date: Thu, 19 Oct 2023 11:11:06 +0800 Cc: Linux-MM , LKML , Muchun Song , Joao Martins , Konrad Dybcio , Oscar Salvador , David Hildenbrand , Miaohe Lin , David Rientjes , Anshuman Khandual , Naoya Horiguchi , Barry Song <21cnbao@gmail.com>, Michal Hocko , Matthew Wilcox , Xiongchun Duan , Sergey Senozhatsky , Usama Arif , Andrew Morton Content-Transfer-Encoding: 7bit Message-Id: <367C3465-B07D-402A-9647-9E0890130107@linux.dev> References: <20231019023113.345257-1-mike.kravetz@oracle.com> <20231019023113.345257-3-mike.kravetz@oracle.com> To: Mike Kravetz X-Migadu-Flow: FLOW_OUT Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org > On Oct 19, 2023, at 10:31, Mike Kravetz wrote: > > Allocation of a hugetlb page for the hugetlb pool is done by the routine > alloc_pool_huge_page. This routine will allocate contiguous pages from > a low level allocator, prep the pages for usage as a hugetlb page and > then add the resulting hugetlb page to the pool. > > In the 'prep' stage, optional vmemmap optimization is done. For > performance reasons we want to perform vmemmap optimization on multiple > hugetlb pages at once. To do this, restructure the hugetlb pool > allocation code such that vmemmap optimization can be isolated and later > batched. > > The code to allocate hugetlb pages from bootmem was also modified to > allow batching. > > No functional changes, only code restructure. > > Signed-off-by: Mike Kravetz The difference is small compared with v7. So Reviewed-by: Muchun Song Thanks.