Blame view

fs/gfs2/acl.h 591 Bytes
7336d0e65   Thomas Gleixner   treewide: Replace...
1
  /* SPDX-License-Identifier: GPL-2.0-only */
b3b94faa5   David Teigland   [GFS2] The core o...
2
3
  /*
   * Copyright (C) Sistina Software, Inc.  1997-2003 All rights reserved.
3a8a9a103   Steven Whitehouse   [GFS2] Update cop...
4
   * Copyright (C) 2004-2006 Red Hat, Inc.  All rights reserved.
b3b94faa5   David Teigland   [GFS2] The core o...
5
6
7
8
   */
  
  #ifndef __ACL_DOT_H__
  #define __ACL_DOT_H__
f2f7ba523   Steven Whitehouse   [GFS2] Make heade...
9
  #include "incore.h"
b00263d1c   Bob Peterson   GFS2: Increase th...
10
  #define GFS2_ACL_MAX_ENTRIES(sdp) ((300 << (sdp)->sd_sb.sb_bsize_shift) >> 12)
b3b94faa5   David Teigland   [GFS2] The core o...
11

4e34e719e   Christoph Hellwig   fs: take the ACL ...
12
  extern struct posix_acl *gfs2_get_acl(struct inode *inode, int type);
1a39ba99b   Al Viro   gfs2: Switch to g...
13
  extern int __gfs2_set_acl(struct inode *inode, struct posix_acl *acl, int type);
e01580bf9   Christoph Hellwig   gfs2: use generic...
14
  extern int gfs2_set_acl(struct inode *inode, struct posix_acl *acl, int type);
b3b94faa5   David Teigland   [GFS2] The core o...
15
16
  
  #endif /* __ACL_DOT_H__ */