diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2016-03-25 14:18:14 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2016-03-27 23:48:14 -0400 |
commit | 2c7661ff419580f5c06ea409e31407e0ff52cb95 (patch) | |
tree | 0f08c2656b1d14406612d10a3b98212264faeaec /security/apparmor/include/file.h | |
parent | f55532a0c0b8bb6148f4e07853b876ef73bc69ca (diff) | |
download | op-kernel-dev-2c7661ff419580f5c06ea409e31407e0ff52cb95.zip op-kernel-dev-2c7661ff419580f5c06ea409e31407e0ff52cb95.tar.gz |
[apparmor] constify struct path * in a bunch of helpers
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'security/apparmor/include/file.h')
-rw-r--r-- | security/apparmor/include/file.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/apparmor/include/file.h b/security/apparmor/include/file.h index 2c922b8..afc5b29 100644 --- a/security/apparmor/include/file.h +++ b/security/apparmor/include/file.h @@ -171,7 +171,7 @@ unsigned int aa_str_perms(struct aa_dfa *dfa, unsigned int start, const char *name, struct path_cond *cond, struct file_perms *perms); -int aa_path_perm(int op, struct aa_profile *profile, struct path *path, +int aa_path_perm(int op, struct aa_profile *profile, const struct path *path, int flags, u32 request, struct path_cond *cond); int aa_path_link(struct aa_profile *profile, struct dentry *old_dentry, |