linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/16] A few cleanup patches for mm
@ 2022-09-09  9:24 Miaohe Lin
  2022-09-09  9:24 ` [PATCH 01/16] mm/page_alloc: ensure kswapd doesn't accidentally go to sleep Miaohe Lin
                   ` (15 more replies)
  0 siblings, 16 replies; 71+ messages in thread
From: Miaohe Lin @ 2022-09-09  9:24 UTC (permalink / raw)
  To: akpm; +Cc: david, osalvador, linux-mm, linux-kernel, linmiaohe

Hi everyone,
This series contains a few cleanup patches to remove the obsolete
comments and functions, use helper macro to improve readability and
so on. More details can be found in the respective changelogs.
Thanks!

Miaohe Lin (16):
  mm/page_alloc: ensure kswapd doesn't accidentally go to sleep
  mm/page_alloc: make zone_pcp_update() static
  mm: remove obsolete macro NR_PCP_ORDER_MASK
  mm/page_alloc: remove obsolete comment in zone_statistics()
  mm/page_alloc: add __init annotations to
    init_mem_debugging_and_hardening()
  mm/page_alloc: fix freeing static percpu memory
  mm: remove obsolete pgdat_is_empty()
  mm/page_alloc: add missing is_migrate_isolate() check in
    set_page_guard()
  mm/page_alloc: use local variable zone_idx directly
  mm, memory_hotplug: remove obsolete generic_free_nodedata()
  mm/page_alloc: make boot_nodestats static
  mm/page_alloc: use helper macro SZ_1{K,M}
  mm/page_alloc: init local variable buddy_pfn
  mm/page_alloc: use costly_order in WARN_ON_ONCE_GFP()
  mm/page_alloc: remove obsolete gfpflags_normal_context()
  mm/page_alloc: fix obsolete comment in deferred_pfn_valid()

 include/linux/gfp.h            | 23 -------------
 include/linux/memory_hotplug.h |  8 -----
 include/linux/mm.h             |  2 +-
 include/linux/mmzone.h         |  6 ----
 mm/internal.h                  |  3 --
 mm/page_alloc.c                | 60 ++++++++++++++++------------------
 6 files changed, 30 insertions(+), 72 deletions(-)

-- 
2.23.0


^ permalink raw reply	[flat|nested] 71+ messages in thread

end of thread, other threads:[~2022-09-15  8:11 UTC | newest]

Thread overview: 71+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-09  9:24 [PATCH 00/16] A few cleanup patches for mm Miaohe Lin
2022-09-09  9:24 ` [PATCH 01/16] mm/page_alloc: ensure kswapd doesn't accidentally go to sleep Miaohe Lin
2022-09-09 11:39   ` David Hildenbrand
2022-09-13  7:02   ` Anshuman Khandual
2022-09-13  7:58     ` Matthew Wilcox
2022-09-13 11:23       ` Anshuman Khandual
2022-09-15  4:34   ` Oscar Salvador
2022-09-09  9:24 ` [PATCH 02/16] mm/page_alloc: make zone_pcp_update() static Miaohe Lin
2022-09-09 11:26   ` David Hildenbrand
2022-09-13  7:58   ` Anshuman Khandual
2022-09-15  4:41   ` Oscar Salvador
2022-09-09  9:24 ` [PATCH 03/16] mm: remove obsolete macro NR_PCP_ORDER_MASK Miaohe Lin
2022-09-09 11:26   ` David Hildenbrand
2022-09-09 19:37   ` Matthew Wilcox
2022-09-13  3:14     ` Miaohe Lin
2022-09-13  8:03   ` Anshuman Khandual
2022-09-15  4:44   ` Oscar Salvador
2022-09-09  9:24 ` [PATCH 04/16] mm/page_alloc: remove obsolete comment in zone_statistics() Miaohe Lin
2022-09-09 11:27   ` David Hildenbrand
2022-09-13  8:15   ` Anshuman Khandual
2022-09-15  4:47   ` Oscar Salvador
2022-09-09  9:24 ` [PATCH 05/16] mm/page_alloc: add __init annotations to init_mem_debugging_and_hardening() Miaohe Lin
2022-09-09 11:27   ` David Hildenbrand
2022-09-13  8:20   ` Anshuman Khandual
2022-09-15  4:49   ` Oscar Salvador
2022-09-09  9:24 ` [PATCH 06/16] mm/page_alloc: fix freeing static percpu memory Miaohe Lin
2022-09-09 11:28   ` David Hildenbrand
2022-09-15  4:53   ` Oscar Salvador
2022-09-09  9:24 ` [PATCH 07/16] mm: remove obsolete pgdat_is_empty() Miaohe Lin
2022-09-09 11:28   ` David Hildenbrand
2022-09-13  8:43   ` Anshuman Khandual
2022-09-15  4:55   ` Oscar Salvador
2022-09-09  9:24 ` [PATCH 08/16] mm/page_alloc: add missing is_migrate_isolate() check in set_page_guard() Miaohe Lin
2022-09-09 11:31   ` David Hildenbrand
2022-09-13  6:51     ` Miaohe Lin
2022-09-15  7:26   ` Oscar Salvador
2022-09-15  8:11     ` Miaohe Lin
2022-09-09  9:24 ` [PATCH 09/16] mm/page_alloc: use local variable zone_idx directly Miaohe Lin
2022-09-09 11:31   ` David Hildenbrand
2022-09-13  8:49   ` Anshuman Khandual
2022-09-15  7:36   ` Oscar Salvador
2022-09-15  8:06     ` Miaohe Lin
2022-09-09  9:24 ` [PATCH 10/16] mm, memory_hotplug: remove obsolete generic_free_nodedata() Miaohe Lin
2022-09-09 11:32   ` David Hildenbrand
2022-09-13  8:57   ` Anshuman Khandual
2022-09-15  7:37   ` Oscar Salvador
2022-09-09  9:24 ` [PATCH 11/16] mm/page_alloc: make boot_nodestats static Miaohe Lin
2022-09-09 11:32   ` David Hildenbrand
2022-09-13  9:00   ` Anshuman Khandual
2022-09-15  7:38   ` Oscar Salvador
2022-09-09  9:24 ` [PATCH 12/16] mm/page_alloc: use helper macro SZ_1{K,M} Miaohe Lin
2022-09-09 11:34   ` David Hildenbrand
2022-09-09 19:44     ` Matthew Wilcox
2022-09-13  7:04       ` Miaohe Lin
2022-09-09  9:24 ` [PATCH 13/16] mm/page_alloc: init local variable buddy_pfn Miaohe Lin
2022-09-09 11:36   ` David Hildenbrand
2022-09-13  9:06   ` Anshuman Khandual
2022-09-15  7:42   ` Oscar Salvador
2022-09-09  9:24 ` [PATCH 14/16] mm/page_alloc: use costly_order in WARN_ON_ONCE_GFP() Miaohe Lin
2022-09-09 11:37   ` David Hildenbrand
2022-09-13  9:08   ` Anshuman Khandual
2022-09-15  7:45   ` Oscar Salvador
2022-09-09  9:24 ` [PATCH 15/16] mm/page_alloc: remove obsolete gfpflags_normal_context() Miaohe Lin
2022-09-09 11:37   ` David Hildenbrand
2022-09-13 11:12   ` Anshuman Khandual
2022-09-13 11:13   ` Anshuman Khandual
2022-09-15  7:48   ` Oscar Salvador
2022-09-09  9:24 ` [PATCH 16/16] mm/page_alloc: fix obsolete comment in deferred_pfn_valid() Miaohe Lin
2022-09-09 11:25   ` David Hildenbrand
2022-09-13 11:17   ` Anshuman Khandual
2022-09-15  7:50   ` Oscar Salvador

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).