diff options
author | Kyle McMartin | 2007-09-28 13:15:20 -0400 |
---|---|---|
committer | Ralf Baechle | 2007-09-28 19:27:20 +0100 |
commit | 422efb17eee0471baf4e1876ac9e8ba4c9e7a37a (patch) | |
tree | db988fdbe07142de03e5ec3365439426b71de555 | |
parent | 9ae6399f0178c49a6e9cb7562ecc2f7d10c9f195 (diff) |
[MIPS] Fix fallocate on o32 binary compat ABI
MIPS was mistakenly forgetting to use the fallocate compat wrapper, which
I noticed while cleaning up all the duplicate fallocate wrappers.
Signed-off-by: Kyle McMartin <kyle@mcmartin.ca>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r-- | arch/mips/kernel/scall64-o32.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/kernel/scall64-o32.S b/arch/mips/kernel/scall64-o32.S index b3ed731a24c6..dd68afce7da5 100644 --- a/arch/mips/kernel/scall64-o32.S +++ b/arch/mips/kernel/scall64-o32.S @@ -525,5 +525,5 @@ sys_call_table: PTR compat_sys_signalfd PTR compat_sys_timerfd PTR sys_eventfd - PTR sys_fallocate /* 4320 */ + PTR sys32_fallocate /* 4320 */ .size sys_call_table,.-sys_call_table |