]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
mm: don't panic when links can't be created in sysfs
authorLaurent Dufour <ldufour@linux.ibm.com>
Fri, 16 Oct 2020 03:09:15 +0000 (20:09 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 16 Oct 2020 18:11:18 +0000 (11:11 -0700)
At boot time, or when doing memory hot-add operations, if the links in
sysfs can't be created, the system is still able to run, so just report
the error in the kernel log rather than BUG_ON and potentially make system
unusable because the callpath can be called with locks held.

Since the number of memory blocks managed could be high, the messages are
rate limited.

As a consequence, link_mem_sections() has no status to report anymore.

Signed-off-by: Laurent Dufour <ldufour@linux.ibm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Reviewed-by: Oscar Salvador <osalvador@suse.de>
Acked-by: Michal Hocko <mhocko@suse.com>
Acked-by: David Hildenbrand <david@redhat.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Fenghua Yu <fenghua.yu@intel.com>
Cc: Nathan Lynch <nathanl@linux.ibm.com>
Cc: "Rafael J . Wysocki" <rafael@kernel.org>
Cc: Scott Cheloha <cheloha@linux.ibm.com>
Cc: Tony Luck <tony.luck@intel.com>
Link: https://lkml.kernel.org/r/20200915094143.79181-4-ldufour@linux.ibm.com
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
drivers/base/node.c
include/linux/node.h
mm/memory_hotplug.c

index 43d21f9e88b17f377caed0b4030fd9ef8ed6cc93..6ffa470e298403b9a5e8785e699dd5a40d68a1fa 100644 (file)
@@ -772,8 +772,8 @@ static int __ref get_nid_for_pfn(unsigned long pfn)
        return pfn_to_nid(pfn);
 }
 
-static int do_register_memory_block_under_node(int nid,
-                                              struct memory_block *mem_blk)
+static void do_register_memory_block_under_node(int nid,
+                                               struct memory_block *mem_blk)
 {
        int ret;
 
@@ -786,12 +786,19 @@ static int do_register_memory_block_under_node(int nid,
        ret = sysfs_create_link_nowarn(&node_devices[nid]->dev.kobj,
                                       &mem_blk->dev.kobj,
                                       kobject_name(&mem_blk->dev.kobj));
-       if (ret)
-               return ret;
+       if (ret && ret != -EEXIST)
+               dev_err_ratelimited(&node_devices[nid]->dev,
+                                   "can't create link to %s in sysfs (%d)\n",
+                                   kobject_name(&mem_blk->dev.kobj), ret);
 
-       return sysfs_create_link_nowarn(&mem_blk->dev.kobj,
+       ret = sysfs_create_link_nowarn(&mem_blk->dev.kobj,
                                &node_devices[nid]->dev.kobj,
                                kobject_name(&node_devices[nid]->dev.kobj));
+       if (ret && ret != -EEXIST)
+               dev_err_ratelimited(&mem_blk->dev,
+                                   "can't create link to %s in sysfs (%d)\n",
+                                   kobject_name(&node_devices[nid]->dev.kobj),
+                                   ret);
 }
 
 /* register memory section under specified node if it spans that node */
@@ -827,7 +834,8 @@ static int register_mem_block_under_node_early(struct memory_block *mem_blk,
                if (page_nid != nid)
                        continue;
 
-               return do_register_memory_block_under_node(nid, mem_blk);
+               do_register_memory_block_under_node(nid, mem_blk);
+               return 0;
        }
        /* mem section does not span the specified node */
        return 0;
@@ -842,7 +850,8 @@ static int register_mem_block_under_node_hotplug(struct memory_block *mem_blk,
 {
        int nid = *(int *)arg;
 
-       return do_register_memory_block_under_node(nid, mem_blk);
+       do_register_memory_block_under_node(nid, mem_blk);
+       return 0;
 }
 
 /*
@@ -860,8 +869,8 @@ void unregister_memory_block_under_nodes(struct memory_block *mem_blk)
                          kobject_name(&node_devices[mem_blk->nid]->dev.kobj));
 }
 
-int link_mem_sections(int nid, unsigned long start_pfn, unsigned long end_pfn,
-                     enum meminit_context context)
+void link_mem_sections(int nid, unsigned long start_pfn, unsigned long end_pfn,
+                      enum meminit_context context)
 {
        walk_memory_blocks_func_t func;
 
@@ -870,9 +879,9 @@ int link_mem_sections(int nid, unsigned long start_pfn, unsigned long end_pfn,
        else
                func = register_mem_block_under_node_early;
 
-       return walk_memory_blocks(PFN_PHYS(start_pfn),
-                                 PFN_PHYS(end_pfn - start_pfn), (void *)&nid,
-                                 func);
+       walk_memory_blocks(PFN_PHYS(start_pfn), PFN_PHYS(end_pfn - start_pfn),
+                          (void *)&nid, func);
+       return;
 }
 
 #ifdef CONFIG_HUGETLBFS
index 014ba3ab2efd8b7b7b1dc58b0d9e9d63bf3d1e90..8e5a29897936c8b37f625561755eb857ca04dac9 100644 (file)
@@ -99,15 +99,14 @@ extern struct node *node_devices[];
 typedef  void (*node_registration_func_t)(struct node *);
 
 #if defined(CONFIG_MEMORY_HOTPLUG_SPARSE) && defined(CONFIG_NUMA)
-int link_mem_sections(int nid, unsigned long start_pfn,
-                     unsigned long end_pfn,
-                     enum meminit_context context);
+void link_mem_sections(int nid, unsigned long start_pfn,
+                      unsigned long end_pfn,
+                      enum meminit_context context);
 #else
-static inline int link_mem_sections(int nid, unsigned long start_pfn,
-                                   unsigned long end_pfn,
-                                   enum meminit_context context)
+static inline void link_mem_sections(int nid, unsigned long start_pfn,
+                                    unsigned long end_pfn,
+                                    enum meminit_context context)
 {
-       return 0;
 }
 #endif
 
@@ -130,8 +129,7 @@ static inline int register_one_node(int nid)
                if (error)
                        return error;
                /* link memory sections under this node */
-               error = link_mem_sections(nid, start_pfn, end_pfn,
-                                         MEMINIT_EARLY);
+               link_mem_sections(nid, start_pfn, end_pfn, MEMINIT_EARLY);
        }
 
        return error;
index 1efc92f66b9dab22b7ba1a674a87ccb010970efb..d397af38f9cefee15141e191ceffe3871eeb9d05 100644 (file)
@@ -1092,9 +1092,8 @@ int __ref add_memory_resource(int nid, struct resource *res, mhp_t mhp_flags)
        }
 
        /* link memory sections under this node.*/
-       ret = link_mem_sections(nid, PFN_DOWN(start), PFN_UP(start + size - 1),
-                               MEMINIT_HOTPLUG);
-       BUG_ON(ret);
+       link_mem_sections(nid, PFN_DOWN(start), PFN_UP(start + size - 1),
+                         MEMINIT_HOTPLUG);
 
        /* create new memmap entry */
        if (!strcmp(res->name, "System RAM"))