public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mm: vmalloc: don't remove inexistent guard hole in remove_vm_area()
@ 2015-11-12 15:17 Jerome Marchand
  2015-11-12 15:55 ` Andrey Ryabinin
  2015-11-12 16:37 ` [PATCH V2] " Jerome Marchand
  0 siblings, 2 replies; 6+ messages in thread
From: Jerome Marchand @ 2015-11-12 15:17 UTC (permalink / raw)
  To: linux-mm, Andrey Ryabinin; +Cc: linux-kernel

Commit 71394fe50146 ("mm: vmalloc: add flag preventing guard hole
allocation") missed a spot. Currently remove_vm_area() decreases
vm->size to remove the guard hole page, even when it isn't present.
This patch only decreases vm->size when VM_NO_GUARD isn't set.

Signed-off-by: Jerome Marchand <jmarchan@redhat.com>
---
 mm/vmalloc.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/mm/vmalloc.c b/mm/vmalloc.c
index d045634..1388c3d 100644
--- a/mm/vmalloc.c
+++ b/mm/vmalloc.c
@@ -1443,7 +1443,8 @@ struct vm_struct *remove_vm_area(const void *addr)
 		vmap_debug_free_range(va->va_start, va->va_end);
 		kasan_free_shadow(vm);
 		free_unmap_vmap_area(va);
-		vm->size -= PAGE_SIZE;
+		if (!(vm->flags & VM_NO_GUARD))
+			vm->size -= PAGE_SIZE;
 
 		return vm;
 	}
-- 
2.4.3


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

end of thread, other threads:[~2015-11-12 20:56 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-12 15:17 [PATCH] mm: vmalloc: don't remove inexistent guard hole in remove_vm_area() Jerome Marchand
2015-11-12 15:55 ` Andrey Ryabinin
2015-11-12 16:28   ` Jerome Marchand
2015-11-12 16:37 ` [PATCH V2] " Jerome Marchand
2015-11-12 18:48   ` Andrey Ryabinin
2015-11-12 20:55   ` David Rientjes

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