Commit 3a5fba19 authored by Al Viro's avatar Al Viro

switch posix_acl_from_mode() to umode_t

... seeing that this is what all callers pass to it anyway.
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent d6952123
...@@ -188,7 +188,7 @@ posix_acl_equiv_mode(const struct posix_acl *acl, umode_t *mode_p) ...@@ -188,7 +188,7 @@ posix_acl_equiv_mode(const struct posix_acl *acl, umode_t *mode_p)
* Create an ACL representing the file mode permission bits of an inode. * Create an ACL representing the file mode permission bits of an inode.
*/ */
struct posix_acl * struct posix_acl *
posix_acl_from_mode(mode_t mode, gfp_t flags) posix_acl_from_mode(umode_t mode, gfp_t flags)
{ {
struct posix_acl *acl = posix_acl_alloc(3, flags); struct posix_acl *acl = posix_acl_alloc(3, flags);
if (!acl) if (!acl)
......
...@@ -75,7 +75,7 @@ extern void posix_acl_init(struct posix_acl *, int); ...@@ -75,7 +75,7 @@ extern void posix_acl_init(struct posix_acl *, int);
extern struct posix_acl *posix_acl_alloc(int, gfp_t); extern struct posix_acl *posix_acl_alloc(int, gfp_t);
extern int posix_acl_valid(const struct posix_acl *); extern int posix_acl_valid(const struct posix_acl *);
extern int posix_acl_permission(struct inode *, const struct posix_acl *, int); extern int posix_acl_permission(struct inode *, const struct posix_acl *, int);
extern struct posix_acl *posix_acl_from_mode(mode_t, gfp_t); extern struct posix_acl *posix_acl_from_mode(umode_t, gfp_t);
extern int posix_acl_equiv_mode(const struct posix_acl *, umode_t *); extern int posix_acl_equiv_mode(const struct posix_acl *, umode_t *);
extern int posix_acl_create(struct posix_acl **, gfp_t, umode_t *); extern int posix_acl_create(struct posix_acl **, gfp_t, umode_t *);
extern int posix_acl_chmod(struct posix_acl **, gfp_t, mode_t); extern int posix_acl_chmod(struct posix_acl **, gfp_t, mode_t);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment