diff options
Diffstat (limited to 'drivers/tty/vt')
| -rw-r--r-- | drivers/tty/vt/keyboard.c | 26 | ||||
| -rw-r--r-- | drivers/tty/vt/vt.c | 3 | 
2 files changed, 20 insertions, 9 deletions
diff --git a/drivers/tty/vt/keyboard.c b/drivers/tty/vt/keyboard.c index 86dd1e302bb..29ca20dbd33 100644 --- a/drivers/tty/vt/keyboard.c +++ b/drivers/tty/vt/keyboard.c @@ -1085,15 +1085,21 @@ void vt_set_led_state(int console, int leds)   *   *	Handle console start. This is a wrapper for the VT layer   *	so that we can keep kbd knowledge internal + * + *	FIXME: We eventually need to hold the kbd lock here to protect + *	the LED updating. We can't do it yet because fn_hold calls stop_tty + *	and start_tty under the kbd_event_lock, while normal tty paths + *	don't hold the lock. We probably need to split out an LED lock + *	but not during an -rc release!   */  void vt_kbd_con_start(int console)  {  	struct kbd_struct * kbd = kbd_table + console; -	unsigned long flags; -	spin_lock_irqsave(&kbd_event_lock, flags); +/*	unsigned long flags; */ +/*	spin_lock_irqsave(&kbd_event_lock, flags); */  	clr_vc_kbd_led(kbd, VC_SCROLLOCK);  	set_leds(); -	spin_unlock_irqrestore(&kbd_event_lock, flags); +/*	spin_unlock_irqrestore(&kbd_event_lock, flags); */  }  /** @@ -1102,22 +1108,28 @@ void vt_kbd_con_start(int console)   *   *	Handle console stop. This is a wrapper for the VT layer   *	so that we can keep kbd knowledge internal + * + *	FIXME: We eventually need to hold the kbd lock here to protect + *	the LED updating. We can't do it yet because fn_hold calls stop_tty + *	and start_tty under the kbd_event_lock, while normal tty paths + *	don't hold the lock. We probably need to split out an LED lock + *	but not during an -rc release!   */  void vt_kbd_con_stop(int console)  {  	struct kbd_struct * kbd = kbd_table + console; -	unsigned long flags; -	spin_lock_irqsave(&kbd_event_lock, flags); +/*	unsigned long flags; */ +/*	spin_lock_irqsave(&kbd_event_lock, flags); */  	set_vc_kbd_led(kbd, VC_SCROLLOCK);  	set_leds(); -	spin_unlock_irqrestore(&kbd_event_lock, flags); +/*	spin_unlock_irqrestore(&kbd_event_lock, flags); */  }  /*   * This is the tasklet that updates LED state on all keyboards   * attached to the box. The reason we use tasklet is that we   * need to handle the scenario when keyboard handler is not - * registered yet but we already getting updates form VT to + * registered yet but we already getting updates from the VT to   * update led state.   */  static void kbd_bh(unsigned long dummy) diff --git a/drivers/tty/vt/vt.c b/drivers/tty/vt/vt.c index 3bdd4b19dd0..2156188db4a 100644 --- a/drivers/tty/vt/vt.c +++ b/drivers/tty/vt/vt.c @@ -2932,11 +2932,10 @@ static int __init con_init(void)  	gotoxy(vc, vc->vc_x, vc->vc_y);  	csi_J(vc, 0);  	update_screen(vc); -	pr_info("Console: %s %s %dx%d", +	pr_info("Console: %s %s %dx%d\n",  		vc->vc_can_do_color ? "colour" : "mono",  		display_desc, vc->vc_cols, vc->vc_rows);  	printable = 1; -	printk("\n");  	console_unlock();  |