diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2016-03-25 14:56:23 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2016-03-28 00:47:25 -0400 |
commit | be01f9f28e66fa846f02196eb047c6bc445642db (patch) | |
tree | 964e7f7729334d9a2be841f4741695dcbc3a3e38 /include/linux/security.h | |
parent | 8a04c43b8741ebb40508d160cf87ca74b70941af (diff) |
constify chmod_common/security_path_chmod
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include/linux/security.h')
-rw-r--r-- | include/linux/security.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/security.h b/include/linux/security.h index 415a357efe4c..d6593ee2d0a9 100644 --- a/include/linux/security.h +++ b/include/linux/security.h | |||
@@ -1455,7 +1455,7 @@ int security_path_link(struct dentry *old_dentry, struct path *new_dir, | |||
1455 | int security_path_rename(struct path *old_dir, struct dentry *old_dentry, | 1455 | int security_path_rename(struct path *old_dir, struct dentry *old_dentry, |
1456 | struct path *new_dir, struct dentry *new_dentry, | 1456 | struct path *new_dir, struct dentry *new_dentry, |
1457 | unsigned int flags); | 1457 | unsigned int flags); |
1458 | int security_path_chmod(struct path *path, umode_t mode); | 1458 | int security_path_chmod(const struct path *path, umode_t mode); |
1459 | int security_path_chown(const struct path *path, kuid_t uid, kgid_t gid); | 1459 | int security_path_chown(const struct path *path, kuid_t uid, kgid_t gid); |
1460 | int security_path_chroot(struct path *path); | 1460 | int security_path_chroot(struct path *path); |
1461 | #else /* CONFIG_SECURITY_PATH */ | 1461 | #else /* CONFIG_SECURITY_PATH */ |
@@ -1508,7 +1508,7 @@ static inline int security_path_rename(struct path *old_dir, | |||
1508 | return 0; | 1508 | return 0; |
1509 | } | 1509 | } |
1510 | 1510 | ||
1511 | static inline int security_path_chmod(struct path *path, umode_t mode) | 1511 | static inline int security_path_chmod(const struct path *path, umode_t mode) |
1512 | { | 1512 | { |
1513 | return 0; | 1513 | return 0; |
1514 | } | 1514 | } |