summaryrefslogtreecommitdiffstats
path: root/drivers/char/vt.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/char/vt.c')
-rw-r--r--drivers/char/vt.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/char/vt.c b/drivers/char/vt.c
index 0f4957971..b3e25c010 100644
--- a/drivers/char/vt.c
+++ b/drivers/char/vt.c
@@ -123,6 +123,7 @@ kd_size_changed(int row, int col)
}
}
+ read_lock(&tasklist_lock);
for_each_task(p)
{
if ( p->tty && MAJOR(p->tty->device) == TTY_MAJOR &&
@@ -131,6 +132,7 @@ kd_size_changed(int row, int col)
send_sig(SIGWINCH, p, 1);
}
}
+ read_unlock(&tasklist_lock);
return 0;
}