2018-09-12 03:16:07 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2012-11-29 05:28:09 +01:00
|
|
|
/*
|
2012-11-02 09:12:17 +01:00
|
|
|
* fs/f2fs/acl.h
|
|
|
|
*
|
|
|
|
* Copyright (c) 2012 Samsung Electronics Co., Ltd.
|
|
|
|
* http://www.samsung.com/
|
|
|
|
*
|
|
|
|
* Portions of this code from linux/fs/ext2/acl.h
|
|
|
|
*
|
|
|
|
* Copyright (C) 2001-2003 Andreas Gruenbacher, <agruen@suse.de>
|
|
|
|
*/
|
|
|
|
#ifndef __F2FS_ACL_H__
|
|
|
|
#define __F2FS_ACL_H__
|
|
|
|
|
|
|
|
#include <linux/posix_acl_xattr.h>
|
|
|
|
|
|
|
|
#define F2FS_ACL_VERSION 0x0001
|
|
|
|
|
|
|
|
struct f2fs_acl_entry {
|
|
|
|
__le16 e_tag;
|
|
|
|
__le16 e_perm;
|
|
|
|
__le32 e_id;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct f2fs_acl_entry_short {
|
|
|
|
__le16 e_tag;
|
|
|
|
__le16 e_perm;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct f2fs_acl_header {
|
|
|
|
__le32 a_version;
|
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef CONFIG_F2FS_FS_POSIX_ACL
|
|
|
|
|
2013-10-28 05:12:09 +01:00
|
|
|
extern struct posix_acl *f2fs_get_acl(struct inode *, int);
|
2016-07-23 00:25:47 +02:00
|
|
|
extern int f2fs_set_acl(struct inode *, struct posix_acl *, int);
|
2014-10-14 04:42:53 +02:00
|
|
|
extern int f2fs_init_acl(struct inode *, struct inode *, struct page *,
|
|
|
|
struct page *);
|
2012-11-02 09:12:17 +01:00
|
|
|
#else
|
|
|
|
#define f2fs_get_acl NULL
|
|
|
|
#define f2fs_set_acl NULL
|
|
|
|
|
2013-10-28 05:17:54 +01:00
|
|
|
static inline int f2fs_init_acl(struct inode *inode, struct inode *dir,
|
2014-10-14 04:42:53 +02:00
|
|
|
struct page *ipage, struct page *dpage)
|
2012-11-02 09:12:17 +01:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* __F2FS_ACL_H__ */
|