From: Jeongtae Park Date: Thu, 4 Jun 2020 23:47:19 +0000 (-0700) Subject: mm/vmalloc: fix a typo in comment X-Git-Tag: v5.10.7~2446^2~102 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=73221d8887241103b4e6193b9c41114256ed4a18;p=platform%2Fkernel%2Flinux-rpi.git mm/vmalloc: fix a typo in comment There is a typo in comment, fix it. "nother" -> "another" Signed-off-by: Jeongtae Park Signed-off-by: Andrew Morton Reviewed-by: David Hildenbrand Cc: Andrey Ryabinin Cc: Christoph Hellwig Link: http://lkml.kernel.org/r/20200604185239.20765-1-jtp.park@samsung.com Signed-off-by: Linus Torvalds --- diff --git a/mm/vmalloc.c b/mm/vmalloc.c index 1e94497..3091c2c 100644 --- a/mm/vmalloc.c +++ b/mm/vmalloc.c @@ -2317,7 +2317,7 @@ static inline void __vfree_deferred(const void *addr) * Use raw_cpu_ptr() because this can be called from preemptible * context. Preemption is absolutely fine here, because the llist_add() * implementation is lockless, so it works even if we are adding to - * nother cpu's list. schedule_work() should be fine with this too. + * another cpu's list. schedule_work() should be fine with this too. */ struct vfree_deferred *p = raw_cpu_ptr(&vfree_deferred);