diff options
author | David S. Miller <davem@sunset.davemloft.net> | 2006-04-01 02:49:34 -0500 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-04-01 02:49:34 -0500 |
commit | 289eee6fa78e999208120c856ef3ae5a817fd59c (patch) | |
tree | eadce5571447bf91d3e274464c57605f73c3b3ee /arch/sparc64/kernel/sys_sparc32.c | |
parent | 1339713a327d4538ca9173ab70afef9a1d57fd07 (diff) |
[SPARC]: Wire up sys_sync_file_range() into syscall tables.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc64/kernel/sys_sparc32.c')
-rw-r--r-- | arch/sparc64/kernel/sys_sparc32.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/sparc64/kernel/sys_sparc32.c b/arch/sparc64/kernel/sys_sparc32.c index 2e906bad56fa..31030bf00f1a 100644 --- a/arch/sparc64/kernel/sys_sparc32.c +++ b/arch/sparc64/kernel/sys_sparc32.c | |||
@@ -1069,3 +1069,11 @@ long sys32_lookup_dcookie(unsigned long cookie_high, | |||
1069 | return sys_lookup_dcookie((cookie_high << 32) | cookie_low, | 1069 | return sys_lookup_dcookie((cookie_high << 32) | cookie_low, |
1070 | buf, len); | 1070 | buf, len); |
1071 | } | 1071 | } |
1072 | |||
1073 | long compat_sync_file_range(int fd, unsigned long off_high, unsigned long off_low, unsigned long nb_high, unsigned long nb_low, int flags) | ||
1074 | { | ||
1075 | return sys_sync_file_range(fd, | ||
1076 | (off_high << 32) | off_low, | ||
1077 | (nb_high << 32) | nb_low, | ||
1078 | flags); | ||
1079 | } | ||