[PATCH] BUILD_LOCK_OPS: cleanup preempt_disable() usage
This patch changes the code from:
	preempt_disable();
	for (;;) {
		...
		preempt_disable();
	}
to:
	for (;;) {
		preempt_disable();
		...
	}
which seems more clean to me and saves a couple of bytes for
each function.
Signed-off-by: 
Oleg Nesterov <oleg@tv-sign.ru>
Acked-by: 
Ingo Molnar <mingo@elte.hu>
Signed-off-by: 
Andrew Morton <akpm@osdl.org>
Signed-off-by: 
Linus Torvalds <torvalds@osdl.org>
Loading
Please register or sign in to comment