• Anshuman Khandual's avatar
    mm/hotplug: reorder memblock_[free|remove]() calls in try_remove_memory() · 32d1fe8f
    Anshuman Khandual authored
    Currently during memory hot add procedure, memory gets into memblock
    before calling arch_add_memory() which creates its linear mapping.
    
      add_memory_resource() {
    	..................
    	memblock_add_node()
    	..................
    	arch_add_memory()
    	..................
      }
    
    But during memory hot remove procedure, removal from memblock happens
    first before its linear mapping gets teared down with
    arch_remove_memory() which is not consistent.  Resource removal should
    happen in reverse order as they were added.  However this does not pose
    any problem for now, unless there is an assumption regarding linear
    mapping.  One example was a subtle failure on arm64 platform [1].
    Though this has now found a different solution.
    
      try_remove_memory() {
    	..................
    	memblock_free()
    	memblock_remove()
    	..................
    	arch_remove_memory()
    	..................
      }
    
    This changes the sequence of resource removal including memblock and
    linear mapping tear down during memory hot remove which will now be the
    reverse order in which they were added during memory hot add.  The
    changed removal order looks like the following.
    
      try_remove_memory() {
    	..................
    	arch_remove_memory()
    	..................
    	memblock_free()
    	memblock_remove()
    	..................
      }
    
    [1] https://patchwork.kernel.org/patch/11127623/
    
    Memory hot remove now works on arm64 without this because a recent
    commit 60bb462fc7ad ("drivers/base/node.c: simplify
    unregister_memory_block_under_nodes()").
    
    This does not fix a serious problem.  It just removes an inconsistency
    while freeing resources during memory hot remove which for now does not
    pose a real problem.
    
    David mentioned that re-ordering should still make sense for consistency
    purpose (removing stuff in the reverse order they were added).  This
    patch is now detached from arm64 hot-remove series.
    
    Michal:
    
    : I would just a note that the inconsistency doesn't pose any problem now
    : but if somebody makes any assumptions about linear mappings then it could
    : get subtly broken like your example for arm64 which has found a different
    : solution in the meantime.
    
    Link: http://lkml.kernel.org/r/1569380273-7708-1-git-send-email-anshuman.khandual@arm.comSigned-off-by: default avatarAnshuman Khandual <anshuman.khandual@arm.com>
    Acked-by: default avatarMichal Hocko <mhocko@suse.com>
    Reviewed-by: default avatarDavid Hildenbrand <david@redhat.com>
    Cc: Oscar Salvador <osalvador@suse.de>
    Cc: Pavel Tatashin <pasha.tatashin@soleen.com>
    Cc: Dan Williams <dan.j.williams@intel.com>
    Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
    Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
    32d1fe8f
memory_hotplug.c 47.2 KB