[PARISC] Wire up sys_fallocate (and compat_sys_fallocate)
[sfrench/cifs-2.6.git] / arch / parisc / kernel / sys_parisc32.c
index 2989c6682bf68702615585ceadc13505aab2d4c7..50bbf33ee00c3d6d40d692640a9c8669faba6d97 100644 (file)
@@ -473,3 +473,10 @@ long sys32_lookup_dcookie(u32 cookie_high, u32 cookie_low, char __user *buf,
        return sys_lookup_dcookie((u64)cookie_high << 32 | cookie_low,
                                  buf, len);
 }
+
+asmlinkage long compat_sys_fallocate(int fd, int mode, u32 offhi, u32 offlo,
+                               u32 lenhi, u32 lenlo)
+{
+        return sys_fallocate(fd, mode, ((loff_t)offhi << 32) | offlo,
+                             ((loff_t)lenhi << 32) | lenlo);
+}