From: Domen Puncer Date: Thu, 5 May 2005 23:16:19 +0000 (-0700) Subject: [PATCH] correctly name the Shell sort X-Git-Tag: v2.6.12-rc4~33 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=ebe8b54134314cc31331f6e26f42276cd947d1df;p=linux-2.6-omap-h63xx.git [PATCH] correctly name the Shell sort As per http://www.nist.gov/dads/HTML/shellsort.html, this should be referred to as a Shell sort. Shell-Metzner is a misnomer. Signed-off-by: Daniel Dickman Signed-off-by: Domen Puncer Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/kernel/sys.c b/kernel/sys.c index f64e97cabe2..f006632c2ba 100644 --- a/kernel/sys.c +++ b/kernel/sys.c @@ -1195,7 +1195,7 @@ static int groups_from_user(struct group_info *group_info, return 0; } -/* a simple shell-metzner sort */ +/* a simple Shell sort */ static void groups_sort(struct group_info *group_info) { int base, max, stride;