]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - fs/ocfs2/acl.h
UBUNTU: Ubuntu-5.4.0-117.132
[mirror_ubuntu-focal-kernel.git] / fs / ocfs2 / acl.h
CommitLineData
1802d0be 1/* SPDX-License-Identifier: GPL-2.0-only */
929fb014
TY
2/* -*- mode: c; c-basic-offset: 8; -*-
3 * vim: noexpandtab sw=8 ts=8 sts=0:
4 *
5 * acl.h
6 *
7 * Copyright (C) 2004, 2008 Oracle. All rights reserved.
929fb014
TY
8 */
9
10#ifndef OCFS2_ACL_H
11#define OCFS2_ACL_H
12
13#include <linux/posix_acl_xattr.h>
14
15struct ocfs2_acl_entry {
16 __le16 e_tag;
17 __le16 e_perm;
18 __le32 e_id;
19};
20
4e34e719 21struct posix_acl *ocfs2_iop_get_acl(struct inode *inode, int type);
702e5bc6 22int ocfs2_iop_set_acl(struct inode *inode, struct posix_acl *acl, int type);
5ee0fbd5 23extern int ocfs2_acl_chmod(struct inode *, struct buffer_head *);
c25a1e06
JB
24extern int ocfs2_init_acl(handle_t *, struct inode *, struct inode *,
25 struct buffer_head *, struct buffer_head *,
26 struct ocfs2_alloc_context *,
27 struct ocfs2_alloc_context *);
23fc2702 28
929fb014 29#endif /* OCFS2_ACL_H */