diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2006-11-02 22:07:24 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-11-03 12:27:59 -0800 |
commit | 3fd593979802f81ff6452596ac61e3840f917589 (patch) | |
tree | 9ce40cdd152502426e5a7161f93a248f1da4d1fc /include/linux/compat.h | |
parent | 1f6f61649d8c64d7a3a4d143405df9a7bdd4af10 (diff) | |
download | blackbird-op-linux-3fd593979802f81ff6452596ac61e3840f917589.tar.gz blackbird-op-linux-3fd593979802f81ff6452596ac61e3840f917589.zip |
[PATCH] Create compat_sys_migrate_pages
This is needed on bigendian 64bit architectures.
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Acked-by: Christoph Lameter <clameter@sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux/compat.h')
-rw-r--r-- | include/linux/compat.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/compat.h b/include/linux/compat.h index f1553196826f..80b17f440ec1 100644 --- a/include/linux/compat.h +++ b/include/linux/compat.h @@ -230,5 +230,9 @@ asmlinkage long compat_sys_adjtimex(struct compat_timex __user *utp); extern int compat_printk(const char *fmt, ...); extern void sigset_from_compat(sigset_t *set, compat_sigset_t *compat); +asmlinkage long compat_sys_migrate_pages(compat_pid_t pid, + compat_ulong_t maxnode, const compat_ulong_t __user *old_nodes, + const compat_ulong_t __user *new_nodes); + #endif /* CONFIG_COMPAT */ #endif /* _LINUX_COMPAT_H */ |