Revision ff01b9163655ace76b29b7ff2f56b25c32f795da authored by Roel Kluin on 03 February 2009, 07:19:50 UTC, committed by David S. Miller on 03 February 2009, 07:19:50 UTC
while (limit--)
	if (test())
		break;

if (limit <= 0)
	goto test_failed;

In the last iteration, limit is decremented after the test to 0.
If just thereafter test() succeeds and a break occurs, the goto
still occurs because limit is 0.

Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent 46578a6
History
File Mode Size
00-INDEX -rw-r--r-- 551 bytes
sched-arch.txt -rw-r--r-- 3.3 KB
sched-coding.txt -rw-r--r-- 4.0 KB
sched-design-CFS.txt -rw-r--r-- 11.6 KB
sched-domains.txt -rw-r--r-- 3.6 KB
sched-nice-design.txt -rw-r--r-- 5.1 KB
sched-rt-group.txt -rw-r--r-- 6.6 KB
sched-stats.txt -rw-r--r-- 7.4 KB

back to top