summaryrefslogtreecommitdiffstats
path: root/kernel/audit_fsnotify.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/audit_fsnotify.c')
-rw-r--r--kernel/audit_fsnotify.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/kernel/audit_fsnotify.c b/kernel/audit_fsnotify.c
index f75154889aa9..7ea57e516029 100644
--- a/kernel/audit_fsnotify.c
+++ b/kernel/audit_fsnotify.c
@@ -74,7 +74,7 @@ int audit_mark_compare(struct audit_fsnotify_mark *mark, unsigned long ino, dev_
74} 74}
75 75
76static void audit_update_mark(struct audit_fsnotify_mark *audit_mark, 76static void audit_update_mark(struct audit_fsnotify_mark *audit_mark,
77 struct inode *inode) 77 const struct inode *inode)
78{ 78{
79 audit_mark->dev = inode ? inode->i_sb->s_dev : AUDIT_DEV_UNSET; 79 audit_mark->dev = inode ? inode->i_sb->s_dev : AUDIT_DEV_UNSET;
80 audit_mark->ino = inode ? inode->i_ino : AUDIT_INO_UNSET; 80 audit_mark->ino = inode ? inode->i_ino : AUDIT_INO_UNSET;
@@ -167,11 +167,11 @@ static int audit_mark_handle_event(struct fsnotify_group *group,
167 struct inode *to_tell, 167 struct inode *to_tell,
168 struct fsnotify_mark *inode_mark, 168 struct fsnotify_mark *inode_mark,
169 struct fsnotify_mark *vfsmount_mark, 169 struct fsnotify_mark *vfsmount_mark,
170 u32 mask, void *data, int data_type, 170 u32 mask, const void *data, int data_type,
171 const unsigned char *dname, u32 cookie) 171 const unsigned char *dname, u32 cookie)
172{ 172{
173 struct audit_fsnotify_mark *audit_mark; 173 struct audit_fsnotify_mark *audit_mark;
174 struct inode *inode = NULL; 174 const struct inode *inode = NULL;
175 175
176 audit_mark = container_of(inode_mark, struct audit_fsnotify_mark, mark); 176 audit_mark = container_of(inode_mark, struct audit_fsnotify_mark, mark);
177 177
@@ -179,10 +179,10 @@ static int audit_mark_handle_event(struct fsnotify_group *group,
179 179
180 switch (data_type) { 180 switch (data_type) {
181 case (FSNOTIFY_EVENT_PATH): 181 case (FSNOTIFY_EVENT_PATH):
182 inode = ((struct path *)data)->dentry->d_inode; 182 inode = ((const struct path *)data)->dentry->d_inode;
183 break; 183 break;
184 case (FSNOTIFY_EVENT_INODE): 184 case (FSNOTIFY_EVENT_INODE):
185 inode = (struct inode *)data; 185 inode = (const struct inode *)data;
186 break; 186 break;
187 default: 187 default:
188 BUG(); 188 BUG();