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 93DCEECAAD3 for ; Thu, 15 Sep 2022 04:44:29 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229577AbiIOEo1 (ORCPT ); Thu, 15 Sep 2022 00:44:27 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35884 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229550AbiIOEoZ (ORCPT ); Thu, 15 Sep 2022 00:44:25 -0400 Received: from smtp-out2.suse.de (smtp-out2.suse.de [195.135.220.29]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 437B391088 for ; Wed, 14 Sep 2022 21:44:23 -0700 (PDT) Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by smtp-out2.suse.de (Postfix) with ESMTPS id A8CCE5CC6C; Thu, 15 Sep 2022 04:44:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1663217062; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=eEZSJ2L42Kmrv2TY3H2eMASjpoqY5XSkBJlalhqKLgo=; b=qvjiNxgofJWYxPYmORHxYmJ+2UyJBSrUhEIvz23oABdCe2RTNkIXPVk1MQCtH/Lo5JUZLQ P4iPEy/bqzc55t813O+e2tnl2u030OwI+53LjFCQVPXPoE7lrUjgaG36gjfCIQvsnBSu8x FfoDI2qNipeHdTVvjz5DdSn8UknfSS8= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1663217062; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=eEZSJ2L42Kmrv2TY3H2eMASjpoqY5XSkBJlalhqKLgo=; b=p1GtpaARgp56h5XU/O78xjxzT+GbY2ZIoZ+YXOs0IMTRJy+WKWf7QLAiEsNg5PESAHkfXx 9ngJjjErFt78eQDg== Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id 4B574139C8; Thu, 15 Sep 2022 04:44:22 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id 0MuiD6atImMUKwAAMHmgww (envelope-from ); Thu, 15 Sep 2022 04:44:22 +0000 Date: Thu, 15 Sep 2022 06:44:20 +0200 From: Oscar Salvador To: Miaohe Lin Cc: akpm@linux-foundation.org, david@redhat.com, linux-mm@kvack.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 03/16] mm: remove obsolete macro NR_PCP_ORDER_MASK Message-ID: References: <20220909092451.24883-1-linmiaohe@huawei.com> <20220909092451.24883-4-linmiaohe@huawei.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220909092451.24883-4-linmiaohe@huawei.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Sep 09, 2022 at 05:24:38PM +0800, Miaohe Lin wrote: > Since commit 8b10b465d0e1 ("mm/page_alloc: free pages in a single pass > during bulk free"), it's not used anymore. Remove it. > > Signed-off-by: Miaohe Lin with the changes from Matthew applied: Reviewed-by: Oscar Salvador > --- > include/linux/mmzone.h | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/include/linux/mmzone.h b/include/linux/mmzone.h > index d907a29cc429..6950179a20a2 100644 > --- a/include/linux/mmzone.h > +++ b/include/linux/mmzone.h > @@ -569,7 +569,6 @@ enum zone_watermarks { > * in the least significant bits. > */ > #define NR_PCP_ORDER_WIDTH 8 > -#define NR_PCP_ORDER_MASK ((1< > #define min_wmark_pages(z) (z->_watermark[WMARK_MIN] + z->watermark_boost) > #define low_wmark_pages(z) (z->_watermark[WMARK_LOW] + z->watermark_boost) > -- > 2.23.0 > > -- Oscar Salvador SUSE Labs