diff options
Diffstat (limited to 'kernel/sys.c')
-rw-r--r-- | kernel/sys.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/sys.c b/kernel/sys.c index eb1ec5c7f03b..0d36d889c74d 100644 --- a/kernel/sys.c +++ b/kernel/sys.c | |||
@@ -36,6 +36,7 @@ | |||
36 | #include <linux/personality.h> | 36 | #include <linux/personality.h> |
37 | #include <linux/ptrace.h> | 37 | #include <linux/ptrace.h> |
38 | #include <linux/fs_struct.h> | 38 | #include <linux/fs_struct.h> |
39 | #include <linux/gfp.h> | ||
39 | 40 | ||
40 | #include <linux/compat.h> | 41 | #include <linux/compat.h> |
41 | #include <linux/syscalls.h> | 42 | #include <linux/syscalls.h> |
@@ -1086,7 +1087,7 @@ DECLARE_RWSEM(uts_sem); | |||
1086 | 1087 | ||
1087 | #ifdef COMPAT_UTS_MACHINE | 1088 | #ifdef COMPAT_UTS_MACHINE |
1088 | #define override_architecture(name) \ | 1089 | #define override_architecture(name) \ |
1089 | (current->personality == PER_LINUX32 && \ | 1090 | (personality(current->personality) == PER_LINUX32 && \ |
1090 | copy_to_user(name->machine, COMPAT_UTS_MACHINE, \ | 1091 | copy_to_user(name->machine, COMPAT_UTS_MACHINE, \ |
1091 | sizeof(COMPAT_UTS_MACHINE))) | 1092 | sizeof(COMPAT_UTS_MACHINE))) |
1092 | #else | 1093 | #else |