diff options
-rw-r--r-- | fs/notify/fanotify/fanotify_user.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/notify/fanotify/fanotify_user.c b/fs/notify/fanotify/fanotify_user.c index 57d7c083cb4b..1fd66abe5740 100644 --- a/fs/notify/fanotify/fanotify_user.c +++ b/fs/notify/fanotify/fanotify_user.c | |||
@@ -886,9 +886,9 @@ COMPAT_SYSCALL_DEFINE6(fanotify_mark, | |||
886 | { | 886 | { |
887 | return sys_fanotify_mark(fanotify_fd, flags, | 887 | return sys_fanotify_mark(fanotify_fd, flags, |
888 | #ifdef __BIG_ENDIAN | 888 | #ifdef __BIG_ENDIAN |
889 | ((__u64)mask1 << 32) | mask0, | ||
890 | #else | ||
891 | ((__u64)mask0 << 32) | mask1, | 889 | ((__u64)mask0 << 32) | mask1, |
890 | #else | ||
891 | ((__u64)mask1 << 32) | mask0, | ||
892 | #endif | 892 | #endif |
893 | dfd, pathname); | 893 | dfd, pathname); |
894 | } | 894 | } |