diff options
author | Eric Paris <eparis@redhat.com> | 2010-10-29 01:21:56 +0400 |
---|---|---|
committer | Eric Paris <eparis@redhat.com> | 2010-10-29 01:22:13 +0400 |
commit | 2868201965419b9011f3f07fd80e765181343cb1 (patch) | |
tree | 73cf2f58121c05367a3fc79380b0e28a127fe9fe /include/linux/fanotify.h | |
parent | 4231a23530a30e86eb32fbe869bbef1b3e54d5aa (diff) | |
download | linux-2868201965419b9011f3f07fd80e765181343cb1.tar.xz |
fanotify: use __aligned_u64 in fanotify userspace metadata
Currently the userspace struct exposed by fanotify uses
__attribute__((packed)) to make sure that alignment works on multiarch
platforms. Since this causes a severe performance penalty on some
platforms we are going to switch to using explicit alignment notation on
the 64bit values so we don't have to use 'packed'
Signed-off-by: Eric Paris <eparis@redhat.com>
Diffstat (limited to 'include/linux/fanotify.h')
-rw-r--r-- | include/linux/fanotify.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/fanotify.h b/include/linux/fanotify.h index 2c89ce7b644e..8a621c1a0991 100644 --- a/include/linux/fanotify.h +++ b/include/linux/fanotify.h @@ -79,10 +79,10 @@ struct fanotify_event_metadata { __u32 event_len; __u32 vers; - __u64 mask; + __aligned_u64 mask; __s32 fd; __s32 pid; -} __attribute__ ((packed)); +}; struct fanotify_response { __s32 fd; |