Commit 04c73690 authored by Jeff Garzik's avatar Jeff Garzik Committed by Linus Torvalds

[PATCH] x86-64: kernel/sys.c build fix

On x86-64, the attached patch is required to fix

> kernel/sys.c: In function `sys_setsid':
> kernel/sys.c:1078: error: `tty_sem' undeclared (first use in this function)
> kernel/sys.c:1078: error: (Each undeclared identifier is reported only once
> kernel/sys.c:1078: error: for each function it appears in.)

kernel/sys.c needs the tty_sem declaration from linux/tty.h.
parent e355932d
...@@ -23,6 +23,7 @@ ...@@ -23,6 +23,7 @@
#include <linux/security.h> #include <linux/security.h>
#include <linux/dcookies.h> #include <linux/dcookies.h>
#include <linux/suspend.h> #include <linux/suspend.h>
#include <linux/tty.h>
#include <linux/compat.h> #include <linux/compat.h>
#include <linux/syscalls.h> #include <linux/syscalls.h>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment