diff options
| author | Andi Kleen <ak@suse.de> | 2003-07-01 02:35:22 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.osdl.org> | 2003-07-01 02:35:22 -0700 |
| commit | d55e45edb3ffb76f12fc2b77b1a3b7db49b411cf (patch) | |
| tree | 7eaa9deebbd9d0af085818e9bae1e7e4f900ab52 /ipc/util.c | |
| parent | d7d5f795cf3d7cca5d0f11344bacd821d9714294 (diff) | |
[PATCH] Fix IPC ABI for AMD64
AMD64 like IA64 needs to force IPC_64 in the IPC functions. This makes
2.5 compatible with 2.4 again.
Diffstat (limited to 'ipc/util.c')
| -rw-r--r-- | ipc/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/util.c b/ipc/util.c index b1e76464b850..c6d0af6a033a 100644 --- a/ipc/util.c +++ b/ipc/util.c @@ -508,7 +508,7 @@ int ipc_checkid(struct ipc_ids* ids, struct kern_ipc_perm* ipcp, int uid) return 0; } -#ifndef __ia64__ +#if !defined(__ia64__) && !defined(__x86_64__) /** * ipc_parse_version - IPC call version |
