acl.h (320424c7d44f54c18df9812fd7c45f6963524002) acl.h (0cad6246621b5887d5b33fea84219d2a71f2f99a)
1/* SPDX-License-Identifier: GPL-2.0-only */
2/*
3 * acl.h
4 *
5 * Copyright (C) 2004, 2008 Oracle. All rights reserved.
6 */
7
8#ifndef OCFS2_ACL_H
9#define OCFS2_ACL_H
10
11#include <linux/posix_acl_xattr.h>
12
13struct ocfs2_acl_entry {
14 __le16 e_tag;
15 __le16 e_perm;
16 __le32 e_id;
17};
18
1/* SPDX-License-Identifier: GPL-2.0-only */
2/*
3 * acl.h
4 *
5 * Copyright (C) 2004, 2008 Oracle. All rights reserved.
6 */
7
8#ifndef OCFS2_ACL_H
9#define OCFS2_ACL_H
10
11#include <linux/posix_acl_xattr.h>
12
13struct ocfs2_acl_entry {
14 __le16 e_tag;
15 __le16 e_perm;
16 __le32 e_id;
17};
18
19struct posix_acl *ocfs2_iop_get_acl(struct inode *inode, int type);
19struct posix_acl *ocfs2_iop_get_acl(struct inode *inode, int type, bool rcu);
20int ocfs2_iop_set_acl(struct user_namespace *mnt_userns, struct inode *inode,
21 struct posix_acl *acl, int type);
22extern int ocfs2_acl_chmod(struct inode *, struct buffer_head *);
23extern int ocfs2_init_acl(handle_t *, struct inode *, struct inode *,
24 struct buffer_head *, struct buffer_head *,
25 struct ocfs2_alloc_context *,
26 struct ocfs2_alloc_context *);
27
28#endif /* OCFS2_ACL_H */
20int ocfs2_iop_set_acl(struct user_namespace *mnt_userns, struct inode *inode,
21 struct posix_acl *acl, int type);
22extern int ocfs2_acl_chmod(struct inode *, struct buffer_head *);
23extern int ocfs2_init_acl(handle_t *, struct inode *, struct inode *,
24 struct buffer_head *, struct buffer_head *,
25 struct ocfs2_alloc_context *,
26 struct ocfs2_alloc_context *);
27
28#endif /* OCFS2_ACL_H */