From: Rolf Eike Beer Date: Tue, 3 Oct 2006 21:07:31 +0000 (+0200) Subject: remove duplicate "until" from kernel/workqueue.c X-Git-Tag: v2.6.19-rc1~165^2~17 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9f5d785e93f7c68c37582ddea848de23689fdd76;p=linux-2.6 remove duplicate "until" from kernel/workqueue.c s/until until/until/ Signed-off-by: Rolf Eike Beer Signed-off-by: Adrian Bunk --- diff --git a/kernel/workqueue.c b/kernel/workqueue.c index 835fe28b87..cfc737bffe 100644 --- a/kernel/workqueue.c +++ b/kernel/workqueue.c @@ -34,7 +34,7 @@ * possible cpu). * * The sequence counters are for flush_scheduled_work(). It wants to wait - * until until all currently-scheduled works are completed, but it doesn't + * until all currently-scheduled works are completed, but it doesn't * want to be livelocked by new, incoming ones. So it waits until * remove_sequence is >= the insert_sequence which pertained when * flush_scheduled_work() was called.