aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/audit_watch.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2016-12-17 21:44:00 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2016-12-17 21:44:00 -0500
commit0110c350c86d511be2130cb2a30dcbb76c4af750 (patch)
treed343a9e0fcb586a7110b13d411b314d33d404c08 /kernel/audit_watch.c
parentd9cb5bfcc3339f1a63df8fe0af8cece33c83c3af (diff)
parent9763f7a4a5f7b1a7c480fa06d01b2bad25163c0a (diff)
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
Pull more vfs updates from Al Viro: "In this pile: - autofs-namespace series - dedupe stuff - more struct path constification" * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs: (40 commits) ocfs2: implement the VFS clone_range, copy_range, and dedupe_range features ocfs2: charge quota for reflinked blocks ocfs2: fix bad pointer cast ocfs2: always unlock when completing dio writes ocfs2: don't eat io errors during _dio_end_io_write ocfs2: budget for extent tree splits when adding refcount flag ocfs2: prohibit refcounted swapfiles ocfs2: add newlines to some error messages ocfs2: convert inode refcount test to a helper simple_write_end(): don't zero in short copy into uptodate exofs: don't mess with simple_write_{begin,end} 9p: saner ->write_end() on failing copy into non-uptodate page fix gfs2_stuffed_write_end() on short copies fix ceph_write_end() nfs_write_end(): fix handling of short copies vfs: refactor clone/dedupe_file_range common functions fs: try to clone files first in vfs_copy_file_range vfs: misc struct path constification namespace.c: constify struct path passed to a bunch of primitives quota: constify struct path in quota_on ...
Diffstat (limited to 'kernel/audit_watch.c')
-rw-r--r--kernel/audit_watch.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/kernel/audit_watch.c b/kernel/audit_watch.c
index 2d7bdcb996b6..f79e4658433d 100644
--- a/kernel/audit_watch.c
+++ b/kernel/audit_watch.c
@@ -471,10 +471,10 @@ static int audit_watch_handle_event(struct fsnotify_group *group,
471 struct inode *to_tell, 471 struct inode *to_tell,
472 struct fsnotify_mark *inode_mark, 472 struct fsnotify_mark *inode_mark,
473 struct fsnotify_mark *vfsmount_mark, 473 struct fsnotify_mark *vfsmount_mark,
474 u32 mask, void *data, int data_type, 474 u32 mask, const void *data, int data_type,
475 const unsigned char *dname, u32 cookie) 475 const unsigned char *dname, u32 cookie)
476{ 476{
477 struct inode *inode; 477 const struct inode *inode;
478 struct audit_parent *parent; 478 struct audit_parent *parent;
479 479
480 parent = container_of(inode_mark, struct audit_parent, mark); 480 parent = container_of(inode_mark, struct audit_parent, mark);
@@ -483,10 +483,10 @@ static int audit_watch_handle_event(struct fsnotify_group *group,
483 483
484 switch (data_type) { 484 switch (data_type) {
485 case (FSNOTIFY_EVENT_PATH): 485 case (FSNOTIFY_EVENT_PATH):
486 inode = d_backing_inode(((struct path *)data)->dentry); 486 inode = d_backing_inode(((const struct path *)data)->dentry);
487 break; 487 break;
488 case (FSNOTIFY_EVENT_INODE): 488 case (FSNOTIFY_EVENT_INODE):
489 inode = (struct inode *)data; 489 inode = (const struct inode *)data;
490 break; 490 break;
491 default: 491 default:
492 BUG(); 492 BUG();