]> bbs.cooldavid.org Git - net-next-2.6.git/blobdiff - arch/x86/ia32/sys_ia32.c
fanotify: sys_fanotify_mark declartion
[net-next-2.6.git] / arch / x86 / ia32 / sys_ia32.c
index 626be156d88def72a0fa7bf87f5e3f822c9c63bd..3d093311d5e230cd9defbabc80e1ea5398a2e614 100644 (file)
@@ -546,3 +546,12 @@ asmlinkage long sys32_fallocate(int fd, int mode, unsigned offset_lo,
        return sys_fallocate(fd, mode, ((u64)offset_hi << 32) | offset_lo,
                             ((u64)len_hi << 32) | len_lo);
 }
+
+asmlinkage long sys32_fanotify_mark(int fanotify_fd, unsigned int flags,
+                                   u32 mask_lo, u32 mask_hi,
+                                   int fd, const char  __user *pathname)
+{
+       return sys_fanotify_mark(fanotify_fd, flags,
+                                ((u64)mask_hi << 32) | mask_lo,
+                                fd, pathname);
+}