David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 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. |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #ifndef OCFS2_ACL_H |
| 11 | #define OCFS2_ACL_H |
| 12 | |
| 13 | #include <linux/posix_acl_xattr.h> |
| 14 | |
| 15 | struct ocfs2_acl_entry { |
| 16 | __le16 e_tag; |
| 17 | __le16 e_perm; |
| 18 | __le32 e_id; |
| 19 | }; |
| 20 | |
| 21 | struct posix_acl *ocfs2_iop_get_acl(struct inode *inode, int type); |
| 22 | int ocfs2_iop_set_acl(struct inode *inode, struct posix_acl *acl, int type); |
| 23 | extern int ocfs2_acl_chmod(struct inode *, struct buffer_head *); |
| 24 | extern 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 *); |
| 28 | |
| 29 | #endif /* OCFS2_ACL_H */ |