aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char
diff options
context:
space:
mode:
authorAlan Cox <alan@linux.intel.com>2010-06-01 16:52:54 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2010-08-10 16:47:41 -0400
commite33ac1c10b6baaac68d18d931e120d8b96e8c5f8 (patch)
treee39049f7e17546c3ad9dd90d739b6259826330d2 /drivers/char
parentd87d9b7d19f04b16c4406d3c0feeca10090e0ada (diff)
vc: Locking clean up
The virtual console layer uses the BKL for various things that don't really need it. Clean them out. Signed-off-by: Alan Cox <alan@linux.intel.com> Cc: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/char')
-rw-r--r--drivers/char/selection.c4
-rw-r--r--drivers/char/vt.c7
2 files changed, 8 insertions, 3 deletions
diff --git a/drivers/char/selection.c b/drivers/char/selection.c
index f97b9e848064..6e79340d732f 100644
--- a/drivers/char/selection.c
+++ b/drivers/char/selection.c
@@ -26,6 +26,7 @@
26#include <linux/selection.h> 26#include <linux/selection.h>
27#include <linux/tiocl.h> 27#include <linux/tiocl.h>
28#include <linux/console.h> 28#include <linux/console.h>
29#include <linux/smp_lock.h>
29 30
30/* Don't take this from <ctype.h>: 011-015 on the screen aren't spaces */ 31/* Don't take this from <ctype.h>: 011-015 on the screen aren't spaces */
31#define isspace(c) ((c) == ' ') 32#define isspace(c) ((c) == ' ')
@@ -312,6 +313,8 @@ int paste_selection(struct tty_struct *tty)
312 struct tty_ldisc *ld; 313 struct tty_ldisc *ld;
313 DECLARE_WAITQUEUE(wait, current); 314 DECLARE_WAITQUEUE(wait, current);
314 315
316 lock_kernel();
317
315 acquire_console_sem(); 318 acquire_console_sem();
316 poke_blanked_console(); 319 poke_blanked_console();
317 release_console_sem(); 320 release_console_sem();
@@ -335,5 +338,6 @@ int paste_selection(struct tty_struct *tty)
335 __set_current_state(TASK_RUNNING); 338 __set_current_state(TASK_RUNNING);
336 339
337 tty_ldisc_deref(ld); 340 tty_ldisc_deref(ld);
341 unlock_kernel();
338 return 0; 342 return 0;
339} 343}
diff --git a/drivers/char/vt.c b/drivers/char/vt.c
index 82f64ac21191..9f67ad919a4a 100644
--- a/drivers/char/vt.c
+++ b/drivers/char/vt.c
@@ -287,8 +287,12 @@ static inline unsigned short *screenpos(struct vc_data *vc, int offset, int view
287 return p; 287 return p;
288} 288}
289 289
290/* Called from the keyboard irq path.. */
290static inline void scrolldelta(int lines) 291static inline void scrolldelta(int lines)
291{ 292{
293 /* FIXME */
294 /* scrolldelta needs some kind of consistency lock, but the BKL was
295 and still is not protecting versus the scheduled back end */
292 scrollback_delta += lines; 296 scrollback_delta += lines;
293 schedule_console_callback(); 297 schedule_console_callback();
294} 298}
@@ -2616,8 +2620,6 @@ int tioclinux(struct tty_struct *tty, unsigned long arg)
2616 return -EFAULT; 2620 return -EFAULT;
2617 ret = 0; 2621 ret = 0;
2618 2622
2619 lock_kernel();
2620
2621 switch (type) 2623 switch (type)
2622 { 2624 {
2623 case TIOCL_SETSEL: 2625 case TIOCL_SETSEL:
@@ -2692,7 +2694,6 @@ int tioclinux(struct tty_struct *tty, unsigned long arg)
2692 ret = -EINVAL; 2694 ret = -EINVAL;
2693 break; 2695 break;
2694 } 2696 }
2695 unlock_kernel();
2696 return ret; 2697 return ret;
2697} 2698}
2698 2699