diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2016-03-25 15:13:39 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2016-03-28 00:47:27 -0400 |
commit | 989f74e0500a1e136d369bb619adc22786ea5e68 (patch) | |
tree | 9b559ddb9771730c46eb14c67340449d4b2704f0 /include/linux/lsm_hooks.h | |
parent | d6b49f7ad2f38b5c3af27ac1a6f475b1ec13ea6e (diff) |
constify security_path_{unlink,rmdir}
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include/linux/lsm_hooks.h')
-rw-r--r-- | include/linux/lsm_hooks.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/lsm_hooks.h b/include/linux/lsm_hooks.h index 294fdfe902bf..322912cc2da1 100644 --- a/include/linux/lsm_hooks.h +++ b/include/linux/lsm_hooks.h | |||
@@ -1360,10 +1360,10 @@ union security_list_options { | |||
1360 | 1360 | ||
1361 | 1361 | ||
1362 | #ifdef CONFIG_SECURITY_PATH | 1362 | #ifdef CONFIG_SECURITY_PATH |
1363 | int (*path_unlink)(struct path *dir, struct dentry *dentry); | 1363 | int (*path_unlink)(const struct path *dir, struct dentry *dentry); |
1364 | int (*path_mkdir)(struct path *dir, struct dentry *dentry, | 1364 | int (*path_mkdir)(struct path *dir, struct dentry *dentry, |
1365 | umode_t mode); | 1365 | umode_t mode); |
1366 | int (*path_rmdir)(struct path *dir, struct dentry *dentry); | 1366 | int (*path_rmdir)(const struct path *dir, struct dentry *dentry); |
1367 | int (*path_mknod)(struct path *dir, struct dentry *dentry, | 1367 | int (*path_mknod)(struct path *dir, struct dentry *dentry, |
1368 | umode_t mode, unsigned int dev); | 1368 | umode_t mode, unsigned int dev); |
1369 | int (*path_truncate)(const struct path *path); | 1369 | int (*path_truncate)(const struct path *path); |