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=-10.3 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,MAILING_LIST_MULTI, NICE_REPLY_A,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=ham 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 C5D90C433E0 for ; Tue, 26 Jan 2021 13:47:19 +0000 (UTC) Received: from kanga.kvack.org (kanga.kvack.org [205.233.56.17]) by mail.kernel.org (Postfix) with ESMTP id 4D25A2255F for ; Tue, 26 Jan 2021 13:47:19 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 4D25A2255F Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=suse.cz Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=owner-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix) id 833888D00CF; Tue, 26 Jan 2021 08:47:18 -0500 (EST) Received: by kanga.kvack.org (Postfix, from userid 40) id 7E2818D00B0; Tue, 26 Jan 2021 08:47:18 -0500 (EST) X-Delivered-To: int-list-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix, from userid 63042) id 6D1268D00CF; Tue, 26 Jan 2021 08:47:18 -0500 (EST) X-Delivered-To: linux-mm@kvack.org Received: from forelay.hostedemail.com (smtprelay0064.hostedemail.com [216.40.44.64]) by kanga.kvack.org (Postfix) with ESMTP id 57D998D00B0 for ; Tue, 26 Jan 2021 08:47:18 -0500 (EST) Received: from smtpin27.hostedemail.com (10.5.19.251.rfc1918.com [10.5.19.251]) by forelay03.hostedemail.com (Postfix) with ESMTP id 1AD4E8249980 for ; Tue, 26 Jan 2021 13:47:18 +0000 (UTC) X-FDA: 77748052956.27.mist15_2217f842758e Received: from filter.hostedemail.com (10.5.16.251.rfc1918.com [10.5.16.251]) by smtpin27.hostedemail.com (Postfix) with ESMTP id F14503D663 for ; Tue, 26 Jan 2021 13:47:17 +0000 (UTC) X-HE-Tag: mist15_2217f842758e X-Filterd-Recvd-Size: 1504 Received: from mx2.suse.de (mx2.suse.de [195.135.220.15]) by imf47.hostedemail.com (Postfix) with ESMTP for ; Tue, 26 Jan 2021 13:47:17 +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 7675BAD19; Tue, 26 Jan 2021 13:47:16 +0000 (UTC) Subject: Re: [PATCH 2/2] mm: Combine __alloc_pages and __alloc_pages_nodemask To: "Matthew Wilcox (Oracle)" , linux-mm@kvack.org References: <20210124120357.701077-1-willy@infradead.org> <20210124120357.701077-3-willy@infradead.org> From: Vlastimil Babka Message-ID: <36b2bedb-43c5-0710-20a8-c10a8de0e336@suse.cz> Date: Tue, 26 Jan 2021 14:47:16 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.6.1 MIME-Version: 1.0 In-Reply-To: <20210124120357.701077-3-willy@infradead.org> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit 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 1/24/21 1:03 PM, Matthew Wilcox (Oracle) wrote: > There are only two callers of __alloc_pages() so prune the thicket of > alloc_pages variants by combining the two functions together. Current > callers of __alloc_pages() simply add an extra 'NULL' parameter and > current callers of __alloc_pages_nodemask() call __alloc_pages() instead. > > Signed-off-by: Matthew Wilcox (Oracle) Acked-by: Vlastimil Babka