Blame view

fs/gfs2/acl.h 843 Bytes
b3b94faa5   David Teigland   [GFS2] The core o...
1
2
  /*
   * Copyright (C) Sistina Software, Inc.  1997-2003 All rights reserved.
3a8a9a103   Steven Whitehouse   [GFS2] Update cop...
3
   * Copyright (C) 2004-2006 Red Hat, Inc.  All rights reserved.
b3b94faa5   David Teigland   [GFS2] The core o...
4
5
6
   *
   * This copyrighted material is made available to anyone wishing to use,
   * modify, copy, or redistribute it subject to the terms and conditions
e9fc2aa09   Steven Whitehouse   [GFS2] Update cop...
7
   * of the GNU General Public License version 2.
b3b94faa5   David Teigland   [GFS2] The core o...
8
9
10
11
   */
  
  #ifndef __ACL_DOT_H__
  #define __ACL_DOT_H__
f2f7ba523   Steven Whitehouse   [GFS2] Make heade...
12
  #include "incore.h"
b3b94faa5   David Teigland   [GFS2] The core o...
13
  #define GFS2_POSIX_ACL_ACCESS		"posix_acl_access"
b3b94faa5   David Teigland   [GFS2] The core o...
14
  #define GFS2_POSIX_ACL_DEFAULT		"posix_acl_default"
2646a1f61   Steven Whitehouse   GFS2: Fix up syst...
15
  #define GFS2_ACL_MAX_ENTRIES		25
b3b94faa5   David Teigland   [GFS2] The core o...
16

4e34e719e   Christoph Hellwig   fs: take the ACL ...
17
  extern struct posix_acl *gfs2_get_acl(struct inode *inode, int type);
479c427dd   Steven Whitehouse   GFS2: Clean up ACLs
18
  extern int gfs2_acl_create(struct gfs2_inode *dip, struct inode *inode);
2646a1f61   Steven Whitehouse   GFS2: Fix up syst...
19
  extern int gfs2_acl_chmod(struct gfs2_inode *ip, struct iattr *attr);
b7bb0a129   Stephen Hemminger   gfs: constify xat...
20
  extern const struct xattr_handler gfs2_xattr_system_handler;
b3b94faa5   David Teigland   [GFS2] The core o...
21
22
  
  #endif /* __ACL_DOT_H__ */