diff options
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 | } | ||