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=-7.3 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, NICE_REPLY_A,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED 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 3724DC433DF for ; Tue, 25 Aug 2020 05:10:53 +0000 (UTC) Received: from kanga.kvack.org (kanga.kvack.org [205.233.56.17]) by mail.kernel.org (Postfix) with ESMTP id EB49C2071E for ; Tue, 25 Aug 2020 05:10:52 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=kernel.org header.i=@kernel.org header.b="T43Wjah6" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org EB49C2071E Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=linux-foundation.org Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=owner-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix) id 794A86B0089; Tue, 25 Aug 2020 01:10:52 -0400 (EDT) Received: by kanga.kvack.org (Postfix, from userid 40) id 745E48E000D; Tue, 25 Aug 2020 01:10:52 -0400 (EDT) X-Delivered-To: int-list-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix, from userid 63042) id 65B896B008C; Tue, 25 Aug 2020 01:10:52 -0400 (EDT) X-Delivered-To: linux-mm@kvack.org Received: from forelay.hostedemail.com (smtprelay0063.hostedemail.com [216.40.44.63]) by kanga.kvack.org (Postfix) with ESMTP id 503596B0089 for ; Tue, 25 Aug 2020 01:10:52 -0400 (EDT) Received: from smtpin21.hostedemail.com (10.5.19.251.rfc1918.com [10.5.19.251]) by forelay03.hostedemail.com (Postfix) with ESMTP id 0B4238248047 for ; Tue, 25 Aug 2020 05:10:52 +0000 (UTC) X-FDA: 77187916344.21.mask88_1003dfe27059 Received: from filter.hostedemail.com (10.5.16.251.rfc1918.com [10.5.16.251]) by smtpin21.hostedemail.com (Postfix) with ESMTP id C9843180442C0 for ; Tue, 25 Aug 2020 05:10:51 +0000 (UTC) X-HE-Tag: mask88_1003dfe27059 X-Filterd-Recvd-Size: 3990 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by imf50.hostedemail.com (Postfix) with ESMTP for ; Tue, 25 Aug 2020 05:10:51 +0000 (UTC) Received: from localhost.localdomain (c-73-231-172-41.hsd1.ca.comcast.net [73.231.172.41]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 27D782071E; Tue, 25 Aug 2020 05:10:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1598332250; bh=Tm5TGS9QxUQnZMSBd7cObay8VgPGZsJUas2eWOf9csE=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=T43Wjah61jO7E4dy/ROpCXV6YaMsYbfXW65GEfmoSfuVTQHHiONBQPnQ9AHvCiKKZ FnENnMAAPPpMAXEuoT5HpmlSTg1/Sfix7DgfKuLLIASWuAlEajxtod+WhD9StoKoVB kbV5AUYwDsPcWT8q18WH9VdGEL5wj/mrD3m6lKcg= Date: Mon, 24 Aug 2020 22:10:49 -0700 From: Andrew Morton To: js1304@gmail.com Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org, Michal Hocko , Vlastimil Babka , "Aneesh Kumar K . V" , kernel-team@lge.com, Joonsoo Kim Subject: Re: [PATCH for v5.9] mm/page_alloc: handle a missing case for memalloc_nocma_{save/restore} APIs Message-Id: <20200824221049.edb3c540bbfc859a6806600d@linux-foundation.org> In-Reply-To: <1598331582-19923-1-git-send-email-iamjoonsoo.kim@lge.com> References: <1598331582-19923-1-git-send-email-iamjoonsoo.kim@lge.com> X-Mailer: Sylpheed 3.5.1 (GTK+ 2.24.31; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Rspamd-Queue-Id: C9843180442C0 X-Spamd-Result: default: False [0.00 / 100.00] X-Rspamd-Server: rspam04 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 Tue, 25 Aug 2020 13:59:42 +0900 js1304@gmail.com wrote: > From: Joonsoo Kim > > memalloc_nocma_{save/restore} APIs can be used to skip page allocation > on CMA area, but, there is a missing case and the page on CMA area could > be allocated even if APIs are used. This patch handles this case to fix > the potential issue. > > Missing case is an allocation from the pcplist. MIGRATE_MOVABLE pcplist > could have the pages on CMA area so we need to skip it if ALLOC_CMA isn't > specified. > > This patch implements this behaviour by checking allocated page from > the pcplist rather than skipping an allocation from the pcplist entirely. > Skipping the pcplist entirely would result in a mismatch between watermark > check and actual page allocation. And, it requires to break current code > layering that order-0 page is always handled by the pcplist. I'd prefer > to avoid it so this patch uses different way to skip CMA page allocation > from the pcplist. > > ... > > --- a/mm/page_alloc.c > +++ b/mm/page_alloc.c > @@ -3341,6 +3341,22 @@ static struct page *rmqueue_pcplist(struct zone *preferred_zone, > pcp = &this_cpu_ptr(zone->pageset)->pcp; > list = &pcp->lists[migratetype]; > page = __rmqueue_pcplist(zone, migratetype, alloc_flags, pcp, list); > +#ifdef CONFIG_CMA > + if (page) { > + int mt = get_pcppage_migratetype(page); > + > + /* > + * pcp could have the pages on CMA area and we need to skip it > + * when !ALLOC_CMA. Free all pcplist and retry allocation. > + */ > + if (is_migrate_cma(mt) && !(alloc_flags & ALLOC_CMA)) { > + list_add(&page->lru, &pcp->lists[migratetype]); > + pcp->count++; > + free_pcppages_bulk(zone, pcp->count, pcp); > + page = __rmqueue_pcplist(zone, migratetype, alloc_flags, pcp, list); > + } > + } > +#endif > if (page) { > __count_zid_vm_events(PGALLOC, page_zonenum(page), 1); > zone_statistics(preferred_zone, zone); That's a bunch more code on a very hot path to serve an obscure feature which has a single obscure callsite. Can we instead put the burden on that callsite rather than upon everyone? For (dumb) example, teach __gup_longterm_locked() to put the page back if it's CMA and go get another one?