diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2009-09-27 17:40:03 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2009-09-28 18:06:19 +0100 |
commit | d80ade7b323152672bf66e74ec11c324332f6d1e (patch) | |
tree | 1d64b6679a86cf55339b6eed419c78e850b85186 /arch | |
parent | fac28e6df9b5fdfa0cf6b99eae022609dd1108d5 (diff) | |
download | op-kernel-dev-d80ade7b323152672bf66e74ec11c324332f6d1e.zip op-kernel-dev-d80ade7b323152672bf66e74ec11c324332f6d1e.tar.gz |
ARM: Fix warning: #warning syscall migrate_pages not implemented
We're not implementing this syscall (we're not NUMA) so we might as
well silence this warning.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/include/asm/unistd.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/include/asm/unistd.h b/arch/arm/include/asm/unistd.h index 89f7ead..7020217 100644 --- a/arch/arm/include/asm/unistd.h +++ b/arch/arm/include/asm/unistd.h @@ -456,6 +456,7 @@ * Unimplemented (or alternatively implemented) syscalls */ #define __IGNORE_fadvise64_64 1 +#define __IGNORE_migrate_pages 1 #endif /* __KERNEL__ */ #endif /* __ASM_ARM_UNISTD_H */ |