aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/audit_tree.c
diff options
context:
space:
mode:
authorEric Paris <eparis@redhat.com>2010-07-28 10:18:39 -0400
committerEric Paris <eparis@redhat.com>2010-07-28 10:18:54 -0400
commitce8f76fb7320297ccbe7c950fd9a2d727dd6a5a0 (patch)
treefb870e9564bfef438e46ba3c39be2999e246b179 /kernel/audit_tree.c
parent613a807fe7c793ceb7d6f059773527a5a6c84a96 (diff)
fsnotify: pass both the vfsmount mark and inode mark
should_send_event() and handle_event() will both need to look up the inode event if they get a vfsmount event. Lets just pass both at the same time since we have them both after walking the lists in lockstep. Signed-off-by: Eric Paris <eparis@redhat.com>
Diffstat (limited to 'kernel/audit_tree.c')
-rw-r--r--kernel/audit_tree.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/kernel/audit_tree.c b/kernel/audit_tree.c
index 2abb99f3459d..781ab7f4e35c 100644
--- a/kernel/audit_tree.c
+++ b/kernel/audit_tree.c
@@ -904,7 +904,8 @@ static void evict_chunk(struct audit_chunk *chunk)
904} 904}
905 905
906static int audit_tree_handle_event(struct fsnotify_group *group, 906static int audit_tree_handle_event(struct fsnotify_group *group,
907 struct fsnotify_mark *mark, 907 struct fsnotify_mark *inode_mark,
908 struct fsnotify_mark *vfsmonut_mark,
908 struct fsnotify_event *event) 909 struct fsnotify_event *event)
909{ 910{
910 BUG(); 911 BUG();
@@ -920,7 +921,8 @@ static void audit_tree_freeing_mark(struct fsnotify_mark *entry, struct fsnotify
920} 921}
921 922
922static bool audit_tree_send_event(struct fsnotify_group *group, struct inode *inode, 923static bool audit_tree_send_event(struct fsnotify_group *group, struct inode *inode,
923 struct vfsmount *mnt, struct fsnotify_mark *mark, 924 struct vfsmount *mnt, struct fsnotify_mark *inode_mark,
925 struct fsnotify_mark *vfsmount_mark,
924 __u32 mask, void *data, int data_type) 926 __u32 mask, void *data, int data_type)
925{ 927{
926 return false; 928 return false;