diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2011-07-23 03:10:32 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2011-07-25 14:27:32 -0400 |
commit | 826cae2f2b4d726b925f43bc208a571639da4761 (patch) | |
tree | b7f83eecf3bde8c4e455d89c7c535988b3e8bd59 /include | |
parent | 95203befa8887997f14077d8557e67d78457ee02 (diff) |
kill boilerplates around posix_acl_create_masq()
new helper: posix_acl_create(&acl, gfp, mode_p). Replaces acl with
modified clone, on failure releases acl and replaces with NULL.
Returns 0 or -ve on error. All callers of posix_acl_create_masq()
switched.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/posix_acl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/posix_acl.h b/include/linux/posix_acl.h index 7a74d37482e8..0ae0e4a3e20c 100644 --- a/include/linux/posix_acl.h +++ b/include/linux/posix_acl.h | |||
@@ -80,6 +80,7 @@ extern struct posix_acl *posix_acl_from_mode(mode_t, gfp_t); | |||
80 | extern int posix_acl_equiv_mode(const struct posix_acl *, mode_t *); | 80 | extern int posix_acl_equiv_mode(const struct posix_acl *, mode_t *); |
81 | extern int posix_acl_create_masq(struct posix_acl *, mode_t *); | 81 | extern int posix_acl_create_masq(struct posix_acl *, mode_t *); |
82 | extern int posix_acl_chmod_masq(struct posix_acl *, mode_t); | 82 | extern int posix_acl_chmod_masq(struct posix_acl *, mode_t); |
83 | extern int posix_acl_create(struct posix_acl **, gfp_t, mode_t *); | ||
83 | extern int posix_acl_chmod(struct posix_acl **, gfp_t, mode_t); | 84 | extern int posix_acl_chmod(struct posix_acl **, gfp_t, mode_t); |
84 | 85 | ||
85 | extern struct posix_acl *get_posix_acl(struct inode *, int); | 86 | extern struct posix_acl *get_posix_acl(struct inode *, int); |