From: Randy Dunlap Date: Wed, 12 Aug 2020 01:33:23 +0000 (-0700) Subject: mm/usercopy.c: delete duplicated word X-Git-Tag: v5.15~3116^2~105 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5ce1be0e40fe64cbf540ba54dd10824a8cef99e1;p=platform%2Fkernel%2Flinux-starfive.git mm/usercopy.c: delete duplicated word Drop the repeated word "the". Signed-off-by: Randy Dunlap Signed-off-by: Andrew Morton Reviewed-by: Andrew Morton Reviewed-by: Zi Yan Link: http://lkml.kernel.org/r/20200801173822.14973-13-rdunlap@infradead.org Signed-off-by: Linus Torvalds --- diff --git a/mm/usercopy.c b/mm/usercopy.c index 660717a..b3de3c4 100644 --- a/mm/usercopy.c +++ b/mm/usercopy.c @@ -43,7 +43,7 @@ static noinline int check_stack_object(const void *obj, unsigned long len) /* * Reject: object partially overlaps the stack (passing the - * the check above means at least one end is within the stack, + * check above means at least one end is within the stack, * so if this check fails, the other end is outside the stack). */ if (obj < stack || stackend < obj + len)