[PATCH] mm: fix VM_WARN_ONCE indentation in page_alloc.c

Manish Kumar posted 1 patch 3 weeks, 2 days ago
mm/page_alloc.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
[PATCH] mm: fix VM_WARN_ONCE indentation in page_alloc.c
Posted by Manish Kumar 3 weeks, 2 days ago
Signed-off-by: Manish Kumar <manish1588@gmail.com>
---
 mm/page_alloc.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index 5e132ead5ea0..5f52d8e71872 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -858,9 +858,9 @@ static inline void __del_page_from_free_list(struct page *page, struct zone *zon
 {
 	int nr_pages = 1 << order;
 
-        VM_WARN_ONCE(get_pageblock_migratetype(page) != migratetype,
-		     "page type is %d, passed migratetype is %d (nr=%d)\n",
-		     get_pageblock_migratetype(page), migratetype, nr_pages);
+	VM_WARN_ONCE(get_pageblock_migratetype(page) != migratetype,
+			"page type is %d, passed migratetype is %d (nr=%d)\n",
+			get_pageblock_migratetype(page), migratetype, nr_pages);
 
 	/* clear reported state and update reported page count */
 	if (page_reported(page))
-- 
2.43.0
Re: [PATCH] mm: fix VM_WARN_ONCE indentation in page_alloc.c
Posted by Matthew Wilcox 3 weeks, 2 days ago
On Fri, Jan 16, 2026 at 01:43:05AM +0530, Manish Kumar wrote:
> Signed-off-by: Manish Kumar <manish1588@gmail.com>

Stop it.
Re: [PATCH] mm: fix VM_WARN_ONCE indentation in page_alloc.c
Posted by David Hildenbrand (Red Hat) 3 weeks, 1 day ago
On 1/15/26 21:23, Matthew Wilcox wrote:
> On Fri, Jan 16, 2026 at 01:43:05AM +0530, Manish Kumar wrote:
>> Signed-off-by: Manish Kumar <manish1588@gmail.com>
> 
> Stop it.
> 

Manish, these tiny cleanup patches that don't add any real value just 
consume reviewer and maintainer load.

Flooding the list with them is frowned upon ;)

-- 
Cheers

David