public inbox for linux-mm@kvack.org
 help / color / mirror / Atom feed
* [PATCH] mm: mmap: add missing space after comma in vma_expand_up macro
@ 2026-03-24 10:29 Giorgi Tchankvetadze
  2026-03-24 10:45 ` Pedro Falcato
  2026-03-24 11:07 ` Lorenzo Stoakes (Oracle)
  0 siblings, 2 replies; 4+ messages in thread
From: Giorgi Tchankvetadze @ 2026-03-24 10:29 UTC (permalink / raw)
  To: akpm
  Cc: Liam.Howlett, lorenzo.stoakes, vbabka, jannh, pfalcato, linux-mm,
	linux-kernel, Giorgi Tchankvetadze

Fix minor style inconsistency in macro parameter list to match
kernel coding style.

No functional change.

Signed-off-by: Giorgi Tchankvetadze <giorgitchankvetadze1997@gmail.com>
---
 mm/mmap.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/mm/mmap.c b/mm/mmap.c
index 843160946aa5..37414e4ea362 100644
--- a/mm/mmap.c
+++ b/mm/mmap.c
@@ -1001,12 +1001,12 @@ struct vm_area_struct *find_extend_vma_locked(struct mm_struct *mm, unsigned lon
 
 #if defined(CONFIG_STACK_GROWSUP)
 
-#define vma_expand_up(vma,addr) expand_upwards(vma, addr)
+#define vma_expand_up(vma, addr) expand_upwards(vma, addr)
 #define vma_expand_down(vma, addr) (-EFAULT)
 
 #else
 
-#define vma_expand_up(vma,addr) (-EFAULT)
+#define vma_expand_up(vma, addr) (-EFAULT)
 #define vma_expand_down(vma, addr) expand_downwards(vma, addr)
 
 #endif
-- 
2.52.0



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

end of thread, other threads:[~2026-03-24 12:11 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-24 10:29 [PATCH] mm: mmap: add missing space after comma in vma_expand_up macro Giorgi Tchankvetadze
2026-03-24 10:45 ` Pedro Falcato
2026-03-24 11:07 ` Lorenzo Stoakes (Oracle)
2026-03-24 12:11   ` Giorgi Tchankvetadze

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox