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 X-Spam-Level: X-Spam-Status: No, score=-5.3 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS, USER_AGENT_SANE_1 autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 666D9C433E0 for ; Fri, 19 Feb 2021 10:14:38 +0000 (UTC) Received: from kanga.kvack.org (kanga.kvack.org [205.233.56.17]) by mail.kernel.org (Postfix) with ESMTP id C2E4864E5C for ; Fri, 19 Feb 2021 10:14:37 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org C2E4864E5C Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=suse.de Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=owner-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix) id 370A16B0082; Fri, 19 Feb 2021 05:14:37 -0500 (EST) Received: by kanga.kvack.org (Postfix, from userid 40) id 2FAAE6B0083; Fri, 19 Feb 2021 05:14:37 -0500 (EST) X-Delivered-To: int-list-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix, from userid 63042) id 19DCB8D000A; Fri, 19 Feb 2021 05:14:37 -0500 (EST) X-Delivered-To: linux-mm@kvack.org Received: from forelay.hostedemail.com (smtprelay0006.hostedemail.com [216.40.44.6]) by kanga.kvack.org (Postfix) with ESMTP id 007416B0082 for ; Fri, 19 Feb 2021 05:14:36 -0500 (EST) Received: from smtpin22.hostedemail.com (10.5.19.251.rfc1918.com [10.5.19.251]) by forelay01.hostedemail.com (Postfix) with ESMTP id BC8D1180AC14B for ; Fri, 19 Feb 2021 10:14:36 +0000 (UTC) X-FDA: 77834608152.22.764D770 Received: from mx2.suse.de (mx2.suse.de [195.135.220.15]) by imf29.hostedemail.com (Postfix) with ESMTP id 2A00013A for ; Fri, 19 Feb 2021 10:14:36 +0000 (UTC) X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.221.27]) by mx2.suse.de (Postfix) with ESMTP id D735FACCF; Fri, 19 Feb 2021 10:14:34 +0000 (UTC) Date: Fri, 19 Feb 2021 11:14:32 +0100 From: Oscar Salvador To: Michal Hocko Cc: Andrew Morton , Mike Kravetz , David Hildenbrand , Muchun Song , linux-mm@kvack.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 1/2] mm: Make alloc_contig_range handle free hugetlb pages Message-ID: <20210219101427.GA19588@linux> References: <20210217100816.28860-1-osalvador@suse.de> <20210217100816.28860-2-osalvador@suse.de> <20210218100917.GA4842@localhost.localdomain> <20210218133250.GA7983@localhost.localdomain> <20210219090548.GA17266@linux> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.10.1 (2018-07-13) X-Stat-Signature: 7dwhrp94iizknsqfg9941w4t3bbea5qq X-Rspamd-Server: rspam05 X-Rspamd-Queue-Id: 2A00013A Received-SPF: none (suse.de>: No applicable sender policy available) receiver=imf29; identity=mailfrom; envelope-from=""; helo=mx2.suse.de; client-ip=195.135.220.15 X-HE-DKIM-Result: none/none X-HE-Tag: 1613729676-400762 X-Bogosity: Ham, tests=bogofilter, spamicity=0.000000, version=1.2.4 Sender: owner-linux-mm@kvack.org Precedence: bulk X-Loop: owner-majordomo@kvack.org List-ID: On Fri, Feb 19, 2021 at 10:56:42AM +0100, Michal Hocko wrote: > OK, this should work but I am really wondering whether it wouldn't be > just simpler to replace the old page by a new one in the free list > directly. Or is there any reason we have to go through the generic > helpers path? I mean something like this > > new_page = alloc_fresh_huge_page(); > if (!new_page) > goto fail; > spin_lock(hugetlb_lock); > if (!PageHuge(old_page)) { > /* freed from under us, nothing to do */ > __update_and_free_page(new_page); > goto unlock; > } > list_del(&old_page->lru); > __update_and_free_page(old_page); > __enqueue_huge_page(new_page); > unlock: > spin_unlock(hugetlb_lock); > > This will require to split update_and_free_page and enqueue_huge_page to > counters independent parts but that shouldn't be a big deal. But it will > also protect from any races. Not an act of beauty but seems less hackish > to me. Yes, I think this would to the trick, and it is race-free. Let me play with it a bit and see what I can come up with. Thanks for the valuable insight. -- Oscar Salvador SUSE L3