diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2010-03-10 23:45:34 +0100 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2010-03-10 23:45:34 +0100 |
commit | 4216e30a7199d574f98acc68fa1e08a2f8b7cc2a (patch) | |
tree | 5fbb37c96de491e2f48d9f9e06939202e89a7424 | |
parent | 70331516e2d98b6f114fa15c9a9590275f666447 (diff) | |
download | lwn-4216e30a7199d574f98acc68fa1e08a2f8b7cc2a.tar.gz lwn-4216e30a7199d574f98acc68fa1e08a2f8b7cc2a.zip |
vga console: Remove the CON_ATOMIC flag
vgacon_restore_screen() takes > 3ms in the worst case. !@#$%!
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-rw-r--r-- | drivers/char/vt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/vt.c b/drivers/char/vt.c index 2cdf548b011e..6c6bf9c8bb7f 100644 --- a/drivers/char/vt.c +++ b/drivers/char/vt.c @@ -2575,7 +2575,7 @@ static struct console vt_console_driver = { .write = vt_console_print, .device = vt_console_device, .unblank = unblank_screen, - .flags = CON_PRINTBUFFER | CON_ATOMIC, + .flags = CON_PRINTBUFFER, .index = -1, }; #endif |