mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-17 01:04:19 +08:00
[PATCH] UML: tty locking
Ensure current->signal->tty doesn't get freed during log_exec(). Signed-off-by: Alan Cox <alan@redhat.com> Acked-by: Jeff Dike <jdike@addtoit.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
75e29b18d9
commit
b1fc0b1f21
@ -41,9 +41,11 @@ static long execve1(char *file, char __user * __user *argv,
|
||||
long error;
|
||||
|
||||
#ifdef CONFIG_TTY_LOG
|
||||
task_lock(current);
|
||||
mutex_lock(&tty_mutex);
|
||||
task_lock(current); /* FIXME: is this needed ? */
|
||||
log_exec(argv, current->signal->tty);
|
||||
task_unlock(current);
|
||||
mutex_unlock(&tty_mutex);
|
||||
#endif
|
||||
error = do_execve(file, argv, env, ¤t->thread.regs);
|
||||
if (error == 0){
|
||||
|
Loading…
Reference in New Issue
Block a user