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 mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 6373BC433F5 for ; Wed, 13 Oct 2021 14:40:40 +0000 (UTC) Received: from kanga.kvack.org (kanga.kvack.org [205.233.56.17]) by mail.kernel.org (Postfix) with ESMTP id 0361C61100 for ; Wed, 13 Oct 2021 14:40:39 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 0361C61100 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=kvack.org Received: by kanga.kvack.org (Postfix) id 96CC66B0072; Wed, 13 Oct 2021 10:40:39 -0400 (EDT) Received: by kanga.kvack.org (Postfix, from userid 40) id 91C366B0073; Wed, 13 Oct 2021 10:40:39 -0400 (EDT) X-Delivered-To: int-list-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix, from userid 63042) id 7BDE6900002; Wed, 13 Oct 2021 10:40:39 -0400 (EDT) X-Delivered-To: linux-mm@kvack.org Received: from forelay.hostedemail.com (smtprelay0246.hostedemail.com [216.40.44.246]) by kanga.kvack.org (Postfix) with ESMTP id 6D0EB6B0072 for ; Wed, 13 Oct 2021 10:40:39 -0400 (EDT) Received: from smtpin05.hostedemail.com (10.5.19.251.rfc1918.com [10.5.19.251]) by forelay03.hostedemail.com (Postfix) with ESMTP id 1337B82499A8 for ; Wed, 13 Oct 2021 14:40:39 +0000 (UTC) X-FDA: 78691675398.05.2487D01 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by imf18.hostedemail.com (Postfix) with ESMTP id 8B4FB400208F for ; Wed, 13 Oct 2021 14:40:38 +0000 (UTC) Received: by mail.kernel.org (Postfix) with ESMTPSA id 63489610E5; Wed, 13 Oct 2021 14:40:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1634136035; bh=NSsOZtszn2RKnRJ99lqqhr3bfOpANz3roH2E0vUWbUc=; h=From:To:Cc:Subject:Date:From; b=KQgClq1PEFXYIQSRwFbtZlrX5QH93JOoLXeTJtkqqAtEK0uGTeieeVevismUES+zn EuOBaJNs1vlvFiQxHOpCuCNvHiOHluoiapQpaERgrronGRa2z7Bz6+WLvLmf506IUd h9tSr4g1GUNGK3qx0tR5ypuKaxNehXbECsBp+n+yTA3TgeRePU7pQiezUJK9jMUUwW ZWbR0f5TMid/F4ojIjpf5l4L+k/SJf7JNeG6yCpTLFfd2P/ZMz36XHcG8amEaM+MN0 kxcWJOsXgbdqwJdJFBiq0S5IaF10bO2Jy0vJbtsJxvo5/h8fB8+Ljn0tQabuik6XzD 5EkWZ/zC7hQBw== From: Arnd Bergmann To: Andrew Morton , Christoph Lameter , Pekka Enberg , David Rientjes , Joonsoo Kim , Vlastimil Babka , Dave Hansen , Stephen Rothwell Cc: Arnd Bergmann , David Hildenbrand , Michal Hocko , Oscar Salvador , linux-kernel@vger.kernel.org, linux-mm@kvack.org Subject: [PATCH] mm/migrate: rework hotplug_memory_notifier() stub Date: Wed, 13 Oct 2021 16:39:38 +0200 Message-Id: <20211013144029.2154629-1-arnd@kernel.org> X-Mailer: git-send-email 2.29.2 MIME-Version: 1.0 X-Rspamd-Server: rspam03 X-Rspamd-Queue-Id: 8B4FB400208F X-Stat-Signature: bqzpigbabj37pfq44w7z43n6xi51ioid Authentication-Results: imf18.hostedemail.com; dkim=pass header.d=kernel.org header.s=k20201202 header.b=KQgClq1P; dmarc=pass (policy=none) header.from=kernel.org; spf=pass (imf18.hostedemail.com: domain of arnd@kernel.org designates 198.145.29.99 as permitted sender) smtp.mailfrom=arnd@kernel.org X-HE-Tag: 1634136038-505930 Content-Transfer-Encoding: quoted-printable 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: From: Arnd Bergmann The previous change added a compile time warning for the CONFIG_MEMORY_HOTPLUG=3Dn case: mm/migrate.c:3216:22: error: 'migrate_on_reclaim_callback' defined but no= t used [-Werror=3Dunused-function] 3216 | static int __meminit migrate_on_reclaim_callback(struct notifier_= block *self, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ mm/migrate.c:3197:13: error: 'set_migration_target_nodes' defined but not= used [-Werror=3Dunused-function] 3197 | static void set_migration_target_nodes(void) | ^~~~~~~~~~~~~~~~~~~~~~~~~~ Rework the hotplug_memory_notifier() stub implementation into an inline function so it always references its argument but ignores it, leading the compiler to silently drop the hotplug memory notifier function and further code referenced from it. To do this, the #ifdef around those functions need to be removed as well, but this tends to help with readability and build coverage. Fixes: dd3e24b84bc1 ("mm/migrate: add CPU hotplug to demotion #ifdef") Signed-off-by: Arnd Bergmann --- include/linux/memory.h | 5 ++++- mm/migrate.c | 6 +----- mm/page_ext.c | 4 +--- mm/slab.c | 4 ++-- 4 files changed, 8 insertions(+), 11 deletions(-) diff --git a/include/linux/memory.h b/include/linux/memory.h index a216829df280..95af54f585a1 100644 --- a/include/linux/memory.h +++ b/include/linux/memory.h @@ -125,7 +125,10 @@ static inline int memory_notify(unsigned long val, v= oid *v) { return 0; } -#define hotplug_memory_notifier(fn, pri) ({ 0; }) +static inline int hotplug_memory_notifier(notifier_fn_t fn, int pri) +{ + return 0; +} /* These aren't inline functions due to a GCC bug. */ #define register_hotmemory_notifier(nb) ({ (void)(nb); 0; }) #define unregister_hotmemory_notifier(nb) ({ (void)(nb); }) diff --git a/mm/migrate.c b/mm/migrate.c index 7769abac8aad..32303d517e10 100644 --- a/mm/migrate.c +++ b/mm/migrate.c @@ -3059,7 +3059,7 @@ void migrate_vma_finalize(struct migrate_vma *migra= te) EXPORT_SYMBOL(migrate_vma_finalize); #endif /* CONFIG_DEVICE_PRIVATE */ =20 -#if defined(CONFIG_MEMORY_HOTPLUG) || defined(CONFIG_HOTPLUG_CPU) +#if defined(CONFIG_HOTPLUG_CPU) /* Disable reclaim-based migration. */ static void __disable_all_migrate_targets(void) { @@ -3201,7 +3201,6 @@ static void set_migration_target_nodes(void) put_online_mems(); } =20 -#if defined(CONFIG_MEMORY_HOTPLUG) /* * This leaves migrate-on-reclaim transiently disabled between * the MEM_GOING_OFFLINE and MEM_OFFLINE events. This runs @@ -3258,9 +3257,7 @@ static int __meminit migrate_on_reclaim_callback(st= ruct notifier_block *self, =20 return notifier_from_errno(0); } -#endif /* CONFIG_MEMORY_HOTPLUG */ =20 -#ifdef CONFIG_HOTPLUG_CPU /* * React to hotplug events that might affect the migration targets * like events that online or offline NUMA nodes. @@ -3302,4 +3299,3 @@ static int __init migrate_on_reclaim_init(void) } late_initcall(migrate_on_reclaim_init); #endif /* CONFIG_HOTPLUG_CPU */ -#endif /* CONFIG_MEMORY_HOTPLUG || CONFIG_HOTPLUG_CPU */ diff --git a/mm/page_ext.c b/mm/page_ext.c index 106079e67c2e..6242afb24d84 100644 --- a/mm/page_ext.c +++ b/mm/page_ext.c @@ -269,7 +269,7 @@ static int __meminit init_section_page_ext(unsigned l= ong pfn, int nid) total_usage +=3D table_size; return 0; } -#ifdef CONFIG_MEMORY_HOTPLUG + static void free_page_ext(void *addr) { if (is_vmalloc_addr(addr)) { @@ -374,8 +374,6 @@ static int __meminit page_ext_callback(struct notifie= r_block *self, return notifier_from_errno(ret); } =20 -#endif - void __init page_ext_init(void) { unsigned long pfn; diff --git a/mm/slab.c b/mm/slab.c index 01775fe0e002..da132a9ae6f8 100644 --- a/mm/slab.c +++ b/mm/slab.c @@ -1095,7 +1095,7 @@ static int slab_offline_cpu(unsigned int cpu) return 0; } =20 -#if defined(CONFIG_NUMA) && defined(CONFIG_MEMORY_HOTPLUG) +#if defined(CONFIG_NUMA) /* * Drains freelist for a node on each slab cache, used for memory hot-re= move. * Returns -EBUSY if all objects cannot be drained so that the node is n= ot @@ -1157,7 +1157,7 @@ static int __meminit slab_memory_callback(struct no= tifier_block *self, out: return notifier_from_errno(ret); } -#endif /* CONFIG_NUMA && CONFIG_MEMORY_HOTPLUG */ +#endif /* CONFIG_NUMA */ =20 /* * swap the static kmem_cache_node with kmalloced memory --=20 2.29.2