aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/audit_watch.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_watch.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_watch.c')
-rw-r--r--kernel/audit_watch.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/kernel/audit_watch.c b/kernel/audit_watch.c
index 1b87e757845d..a273cf340527 100644
--- a/kernel/audit_watch.c
+++ b/kernel/audit_watch.c
@@ -503,7 +503,8 @@ void audit_remove_watch_rule(struct audit_krule *krule)
503} 503}
504 504
505static bool audit_watch_should_send_event(struct fsnotify_group *group, struct inode *inode, 505static bool audit_watch_should_send_event(struct fsnotify_group *group, struct inode *inode,
506 struct vfsmount *mnt, struct fsnotify_mark *mark, 506 struct vfsmount *mnt, struct fsnotify_mark *inode_mark,
507 struct fsnotify_mark *vfsmount_mark,
507 __u32 mask, void *data, int data_type) 508 __u32 mask, void *data, int data_type)
508{ 509{
509 return true; 510 return true;
@@ -511,7 +512,8 @@ static bool audit_watch_should_send_event(struct fsnotify_group *group, struct i
511 512
512/* Update watch data in audit rules based on fsnotify events. */ 513/* Update watch data in audit rules based on fsnotify events. */
513static int audit_watch_handle_event(struct fsnotify_group *group, 514static int audit_watch_handle_event(struct fsnotify_group *group,
514 struct fsnotify_mark *mark, 515 struct fsnotify_mark *inode_mark,
516 struct fsnotify_mark *vfsmount_mark,
515 struct fsnotify_event *event) 517 struct fsnotify_event *event)
516{ 518{
517 struct inode *inode; 519 struct inode *inode;
@@ -519,7 +521,7 @@ static int audit_watch_handle_event(struct fsnotify_group *group,
519 const char *dname = event->file_name; 521 const char *dname = event->file_name;
520 struct audit_parent *parent; 522 struct audit_parent *parent;
521 523
522 parent = container_of(mark, struct audit_parent, mark); 524 parent = container_of(inode_mark, struct audit_parent, mark);
523 525
524 BUG_ON(group != audit_watch_group); 526 BUG_ON(group != audit_watch_group);
525 527