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/security.h | |
| parent | d6b49f7ad2f38b5c3af27ac1a6f475b1ec13ea6e (diff) | |
constify security_path_{unlink,rmdir}
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include/linux/security.h')
| -rw-r--r-- | include/linux/security.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/linux/security.h b/include/linux/security.h index d6593ee2d0a9..e292d8cb21d7 100644 --- a/include/linux/security.h +++ b/include/linux/security.h | |||
| @@ -1442,9 +1442,9 @@ static inline void security_skb_classify_flow(struct sk_buff *skb, struct flowi | |||
| 1442 | #endif /* CONFIG_SECURITY_NETWORK_XFRM */ | 1442 | #endif /* CONFIG_SECURITY_NETWORK_XFRM */ |
| 1443 | 1443 | ||
| 1444 | #ifdef CONFIG_SECURITY_PATH | 1444 | #ifdef CONFIG_SECURITY_PATH |
| 1445 | int security_path_unlink(struct path *dir, struct dentry *dentry); | 1445 | int security_path_unlink(const struct path *dir, struct dentry *dentry); |
| 1446 | int security_path_mkdir(struct path *dir, struct dentry *dentry, umode_t mode); | 1446 | int security_path_mkdir(struct path *dir, struct dentry *dentry, umode_t mode); |
| 1447 | int security_path_rmdir(struct path *dir, struct dentry *dentry); | 1447 | int security_path_rmdir(const struct path *dir, struct dentry *dentry); |
| 1448 | int security_path_mknod(struct path *dir, struct dentry *dentry, umode_t mode, | 1448 | int security_path_mknod(struct path *dir, struct dentry *dentry, umode_t mode, |
| 1449 | unsigned int dev); | 1449 | unsigned int dev); |
| 1450 | int security_path_truncate(const struct path *path); | 1450 | int security_path_truncate(const struct path *path); |
| @@ -1459,7 +1459,7 @@ 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 */ |
| 1462 | static inline int security_path_unlink(struct path *dir, struct dentry *dentry) | 1462 | static inline int security_path_unlink(const struct path *dir, struct dentry *dentry) |
| 1463 | { | 1463 | { |
| 1464 | return 0; | 1464 | return 0; |
| 1465 | } | 1465 | } |
| @@ -1470,7 +1470,7 @@ static inline int security_path_mkdir(struct path *dir, struct dentry *dentry, | |||
| 1470 | return 0; | 1470 | return 0; |
| 1471 | } | 1471 | } |
| 1472 | 1472 | ||
| 1473 | static inline int security_path_rmdir(struct path *dir, struct dentry *dentry) | 1473 | static inline int security_path_rmdir(const struct path *dir, struct dentry *dentry) |
| 1474 | { | 1474 | { |
| 1475 | return 0; | 1475 | return 0; |
| 1476 | } | 1476 | } |
