diff mbox series

mm/vmalloc.c: update the comment in __vmalloc_area_node()

Message ID 20200927155409.GA3315@rlk (mailing list archive)
State New, archived
Headers show
Series mm/vmalloc.c: update the comment in __vmalloc_area_node() | expand

Commit Message

Hui Su Sept. 27, 2020, 3:54 p.m. UTC
since c67dc624757 commit, the __vunmap() have been
changed to __vfree(), so update the confusing comment().

Signed-off-by: Hui Su <sh_def@163.com>
---
 mm/vmalloc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/mm/vmalloc.c b/mm/vmalloc.c
index be4724b916b3..689e7ef08a5d 100644
--- a/mm/vmalloc.c
+++ b/mm/vmalloc.c
@@ -2447,7 +2447,7 @@  static void *__vmalloc_area_node(struct vm_struct *area, gfp_t gfp_mask,
 			page = alloc_pages_node(node, alloc_mask|highmem_mask, 0);
 
 		if (unlikely(!page)) {
-			/* Successfully allocated i pages, free them in __vunmap() */
+			/* Successfully allocated i pages, free them in __vfree() */
 			area->nr_pages = i;
 			atomic_long_add(area->nr_pages, &nr_vmalloc_pages);
 			goto fail;