diff options
author | Eric Paris <eparis@redhat.com> | 2010-05-27 09:41:40 -0400 |
---|---|---|
committer | Eric Paris <eparis@redhat.com> | 2010-07-28 09:59:03 -0400 |
commit | 08ae89380a8210a9965d04083e1de78cb8bca4b1 (patch) | |
tree | 95ef9493b5a6152e7c683d2d5a8531844530f0f7 /include/linux | |
parent | 269ed32a9ce00132b9372e9c00014532e054d6b2 (diff) |
fanotify: drop the useless priority argument
The priority argument in fanotify is useless. Kill it.
Signed-off-by: Eric Paris <eparis@redhat.com>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/fsnotify_backend.h | 1 | ||||
-rw-r--r-- | include/linux/syscalls.h | 3 |
2 files changed, 1 insertions, 3 deletions
diff --git a/include/linux/fsnotify_backend.h b/include/linux/fsnotify_backend.h index b0d00fd6bfad..b9b3f24ad4fc 100644 --- a/include/linux/fsnotify_backend.h +++ b/include/linux/fsnotify_backend.h | |||
@@ -143,7 +143,6 @@ struct fsnotify_group { | |||
143 | * a group */ | 143 | * a group */ |
144 | struct list_head marks_list; /* all inode marks for this group */ | 144 | struct list_head marks_list; /* all inode marks for this group */ |
145 | 145 | ||
146 | unsigned int priority; /* order of this group compared to others */ | ||
147 | /* prevents double list_del of group_list. protected by global fsnotify_grp_mutex */ | 146 | /* prevents double list_del of group_list. protected by global fsnotify_grp_mutex */ |
148 | bool on_inode_group_list; | 147 | bool on_inode_group_list; |
149 | bool on_vfsmount_group_list; | 148 | bool on_vfsmount_group_list; |
diff --git a/include/linux/syscalls.h b/include/linux/syscalls.h index 5b05c37059e9..0ec26a74f20a 100644 --- a/include/linux/syscalls.h +++ b/include/linux/syscalls.h | |||
@@ -813,8 +813,7 @@ asmlinkage long sys_pselect6(int, fd_set __user *, fd_set __user *, | |||
813 | asmlinkage long sys_ppoll(struct pollfd __user *, unsigned int, | 813 | asmlinkage long sys_ppoll(struct pollfd __user *, unsigned int, |
814 | struct timespec __user *, const sigset_t __user *, | 814 | struct timespec __user *, const sigset_t __user *, |
815 | size_t); | 815 | size_t); |
816 | asmlinkage long sys_fanotify_init(unsigned int flags, unsigned int event_f_flags, | 816 | asmlinkage long sys_fanotify_init(unsigned int flags, unsigned int event_f_flags); |
817 | unsigned int priority); | ||
818 | asmlinkage long sys_fanotify_mark(int fanotify_fd, unsigned int flags, | 817 | asmlinkage long sys_fanotify_mark(int fanotify_fd, unsigned int flags, |
819 | u64 mask, int fd, | 818 | u64 mask, int fd, |
820 | const char __user *pathname); | 819 | const char __user *pathname); |