GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / fs / ocfs2 / acl.h
blob5c5d31f05853175476cc0c9ed4c2460c67f40da9
1 /* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
4 * acl.h
6 * Copyright (C) 2004, 2008 Oracle. All rights reserved.
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.
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.
18 #ifndef OCFS2_ACL_H
19 #define OCFS2_ACL_H
21 #include <linux/posix_acl_xattr.h>
23 struct ocfs2_acl_entry {
24 __le16 e_tag;
25 __le16 e_perm;
26 __le32 e_id;
29 extern int ocfs2_check_acl(struct inode *, int);
30 extern int ocfs2_acl_chmod(struct inode *);
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 *);
36 #endif /* OCFS2_ACL_H */