diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2011-07-26 04:25:58 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-01-03 22:55:13 -0500 |
commit | 910f4ecef3f67714ebff69d0bc34313e48afaed2 (patch) | |
tree | 348fe3b5d8789a4c019a700da5501a4756f988de /security | |
parent | 49f0a0767211d3076974e59a26f36b567cbe8621 (diff) |
switch security_path_chmod() to umode_t
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'security')
-rw-r--r-- | security/apparmor/lsm.c | 2 | ||||
-rw-r--r-- | security/capability.c | 2 | ||||
-rw-r--r-- | security/security.c | 2 | ||||
-rw-r--r-- | security/tomoyo/tomoyo.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/security/apparmor/lsm.c b/security/apparmor/lsm.c index 37832026e58a..afbe49822bed 100644 --- a/security/apparmor/lsm.c +++ b/security/apparmor/lsm.c | |||
@@ -345,7 +345,7 @@ static int apparmor_path_rename(struct path *old_dir, struct dentry *old_dentry, | |||
345 | } | 345 | } |
346 | 346 | ||
347 | static int apparmor_path_chmod(struct dentry *dentry, struct vfsmount *mnt, | 347 | static int apparmor_path_chmod(struct dentry *dentry, struct vfsmount *mnt, |
348 | mode_t mode) | 348 | umode_t mode) |
349 | { | 349 | { |
350 | if (!mediated_filesystem(dentry->d_inode)) | 350 | if (!mediated_filesystem(dentry->d_inode)) |
351 | return 0; | 351 | return 0; |
diff --git a/security/capability.c b/security/capability.c index 9def035cd572..4f24bee49f26 100644 --- a/security/capability.c +++ b/security/capability.c | |||
@@ -280,7 +280,7 @@ static int cap_path_truncate(struct path *path) | |||
280 | } | 280 | } |
281 | 281 | ||
282 | static int cap_path_chmod(struct dentry *dentry, struct vfsmount *mnt, | 282 | static int cap_path_chmod(struct dentry *dentry, struct vfsmount *mnt, |
283 | mode_t mode) | 283 | umode_t mode) |
284 | { | 284 | { |
285 | return 0; | 285 | return 0; |
286 | } | 286 | } |
diff --git a/security/security.c b/security/security.c index 8cc0f0caa640..3635a13cd4ab 100644 --- a/security/security.c +++ b/security/security.c | |||
@@ -455,7 +455,7 @@ int security_path_truncate(struct path *path) | |||
455 | } | 455 | } |
456 | 456 | ||
457 | int security_path_chmod(struct dentry *dentry, struct vfsmount *mnt, | 457 | int security_path_chmod(struct dentry *dentry, struct vfsmount *mnt, |
458 | mode_t mode) | 458 | umode_t mode) |
459 | { | 459 | { |
460 | if (unlikely(IS_PRIVATE(dentry->d_inode))) | 460 | if (unlikely(IS_PRIVATE(dentry->d_inode))) |
461 | return 0; | 461 | return 0; |
diff --git a/security/tomoyo/tomoyo.c b/security/tomoyo/tomoyo.c index 4b327b691745..a4b840ea0078 100644 --- a/security/tomoyo/tomoyo.c +++ b/security/tomoyo/tomoyo.c | |||
@@ -360,7 +360,7 @@ static int tomoyo_file_ioctl(struct file *file, unsigned int cmd, | |||
360 | * Returns 0 on success, negative value otherwise. | 360 | * Returns 0 on success, negative value otherwise. |
361 | */ | 361 | */ |
362 | static int tomoyo_path_chmod(struct dentry *dentry, struct vfsmount *mnt, | 362 | static int tomoyo_path_chmod(struct dentry *dentry, struct vfsmount *mnt, |
363 | mode_t mode) | 363 | umode_t mode) |
364 | { | 364 | { |
365 | struct path path = { mnt, dentry }; | 365 | struct path path = { mnt, dentry }; |
366 | return tomoyo_path_number_perm(TOMOYO_TYPE_CHMOD, &path, | 366 | return tomoyo_path_number_perm(TOMOYO_TYPE_CHMOD, &path, |