| Tiger Yang | 929fb01 | 2008-11-14 11:17:04 +0800 | [diff] [blame] | 1 | /* -*- mode: c; c-basic-offset: 8; -*- | 
 | 2 |  * vim: noexpandtab sw=8 ts=8 sts=0: | 
 | 3 |  * | 
 | 4 |  * acl.h | 
 | 5 |  * | 
 | 6 |  * Copyright (C) 2004, 2008 Oracle.  All rights reserved. | 
 | 7 |  * | 
 | 8 |  * This program is free software; you can redistribute it and/or | 
 | 9 |  * modify it under the terms of the GNU General Public | 
 | 10 |  * License version 2 as published by the Free Software Foundation. | 
 | 11 |  * | 
 | 12 |  * This program is distributed in the hope that it will be useful, | 
 | 13 |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
 | 14 |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU | 
 | 15 |  * General Public License for more details. | 
 | 16 |  */ | 
 | 17 |  | 
 | 18 | #ifndef OCFS2_ACL_H | 
 | 19 | #define OCFS2_ACL_H | 
 | 20 |  | 
 | 21 | #include <linux/posix_acl_xattr.h> | 
 | 22 |  | 
 | 23 | struct ocfs2_acl_entry { | 
 | 24 | 	__le16 e_tag; | 
 | 25 | 	__le16 e_perm; | 
 | 26 | 	__le32 e_id; | 
 | 27 | }; | 
 | 28 |  | 
| Christoph Hellwig | 4e34e71 | 2011-07-23 17:37:31 +0200 | [diff] [blame] | 29 | struct posix_acl *ocfs2_iop_get_acl(struct inode *inode, int type); | 
| Tiger Yang | 060bc66 | 2008-11-14 11:17:29 +0800 | [diff] [blame] | 30 | extern int ocfs2_acl_chmod(struct inode *); | 
| Tiger Yang | 89c38bd | 2008-11-14 11:17:41 +0800 | [diff] [blame] | 31 | extern int ocfs2_init_acl(handle_t *, struct inode *, struct inode *, | 
 | 32 | 			  struct buffer_head *, struct buffer_head *, | 
 | 33 | 			  struct ocfs2_alloc_context *, | 
 | 34 | 			  struct ocfs2_alloc_context *); | 
| Tiger Yang | 23fc270 | 2008-11-14 11:17:18 +0800 | [diff] [blame] | 35 |  | 
| Tiger Yang | 929fb01 | 2008-11-14 11:17:04 +0800 | [diff] [blame] | 36 | #endif /* OCFS2_ACL_H */ |