Ver código fonte

[PATCH] x86-64: Fix idle=poll

x86_64 idle=poll might be a little less responsive than it should: unlike
mwait_idle, and unlike i386, its poll_idle left TIF_POLLING_NRFLAG set.

Signed-off-by: Hugh Dickins <hugh@veritas.com>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Hugh Dickins 20 anos atrás
pai
commit
b8f68e9ffa
1 arquivos alterados com 1 adições e 0 exclusões
  1. 1 0
      arch/x86_64/kernel/process.c

+ 1 - 0
arch/x86_64/kernel/process.c

@@ -123,6 +123,7 @@ static void poll_idle (void)
 			: :
 			: :
 			"i" (_TIF_NEED_RESCHED), 
 			"i" (_TIF_NEED_RESCHED), 
 			"m" (current_thread_info()->flags));
 			"m" (current_thread_info()->flags));
+		clear_thread_flag(TIF_POLLING_NRFLAG);
 	} else {
 	} else {
 		set_need_resched();
 		set_need_resched();
 	}
 	}