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 5D544CDB47E for ; Thu, 19 Oct 2023 03:13:13 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231993AbjJSDNL (ORCPT ); Wed, 18 Oct 2023 23:13:11 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:60618 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230304AbjJSDNI (ORCPT ); Wed, 18 Oct 2023 23:13:08 -0400 Received: from out-205.mta1.migadu.com (out-205.mta1.migadu.com [95.215.58.205]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 1BD229F for ; Wed, 18 Oct 2023 20:13:03 -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=1697685181; 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=dCELsRGpQtBTf7R2azG7q2KcnWrjo9t9BqbdwSm/g60=; b=YLXmnfCzsdB37AnUhu39i9fq1hffTF8aKBp5TUuQzCcLmHLlQoSbHChZVnRrQImtvJQKWt FG2yCQn+t+x/uNRXXNWv4lh8WJ0QTfQ2I0WfCVbKGJt+tOvOsqtXuQ0o0jOtUdZ6CN5bAO 8eGR/6vfX3H9ExeRv6nGekhBIEKeOM0= Mime-Version: 1.0 Subject: Re: [PATCH v8 3/8] hugetlb: perform vmemmap optimization on a list of pages X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Muchun Song In-Reply-To: <20231019023113.345257-4-mike.kravetz@oracle.com> Date: Thu, 19 Oct 2023 11:12:24 +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: References: <20231019023113.345257-1-mike.kravetz@oracle.com> <20231019023113.345257-4-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: > > When adding hugetlb pages to the pool, we first create a list of the > allocated pages before adding to the pool. Pass this list of pages to a > new routine hugetlb_vmemmap_optimize_folios() for vmemmap optimization. > > Due to significant differences in vmemmmap initialization for bootmem > allocated hugetlb pages, a new routine prep_and_add_bootmem_folios > is created. > > We also modify the routine vmemmap_should_optimize() to check for pages > that are already optimized. There are code paths that might request > vmemmap optimization twice and we want to make sure this is not > attempted. > > Signed-off-by: Mike Kravetz Reviewed-by: Muchun Song Thanks.