swh:1:snp:c2847dfd741eae21606027cf29250d1ebcd63fb4
Raw File
Tip revision: c8ddb2713c624f432fa5fe3c7ecffcdda46ea0d4 authored by Linus Torvalds on 01 November 2010, 11:54:12 UTC
Linux 2.6.37-rc1
Tip revision: c8ddb27
generic_acl.h
#ifndef LINUX_GENERIC_ACL_H
#define LINUX_GENERIC_ACL_H

#include <linux/xattr.h>

struct inode;

extern const struct xattr_handler generic_acl_access_handler;
extern const struct xattr_handler generic_acl_default_handler;

int generic_acl_init(struct inode *, struct inode *);
int generic_acl_chmod(struct inode *);
int generic_check_acl(struct inode *inode, int mask);

#endif /* LINUX_GENERIC_ACL_H */
back to top