<linux/seccomp.h> needs to include <linux/errno.h>.

<linux/seccomp.h> uses EINVAL so should include <linux/errno.h>.  This
fixes a build error on 64-bit MIPS if CONFIG_SECCOMP is disabled.

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Ralf Baechle 2009-04-18 11:30:56 +02:00 коммит произвёл Linus Torvalds
Родитель 613cbe3d48
Коммит 42a17ad276
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -21,6 +21,8 @@ extern long prctl_set_seccomp(unsigned long);
#else /* CONFIG_SECCOMP */
#include <linux/errno.h>
typedef struct { } seccomp_t;
#define secure_computing(x) do { } while (0)