2018-04-04 01:16:55 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2007-11-17 00:45:54 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2007 Red Hat. All rights reserved.
|
|
|
|
*/
|
|
|
|
|
2018-04-04 01:16:55 +08:00
|
|
|
#ifndef BTRFS_XATTR_H
|
|
|
|
#define BTRFS_XATTR_H
|
2007-11-17 00:45:54 +08:00
|
|
|
|
|
|
|
#include <linux/xattr.h>
|
|
|
|
|
2010-05-14 08:53:15 +08:00
|
|
|
extern const struct xattr_handler *btrfs_xattr_handlers[];
|
2007-11-17 00:45:54 +08:00
|
|
|
|
2018-02-27 22:48:57 +08:00
|
|
|
int btrfs_getxattr(struct inode *inode, const char *name,
|
2008-08-28 18:21:17 +08:00
|
|
|
void *buffer, size_t size);
|
2018-02-27 22:48:54 +08:00
|
|
|
int btrfs_setxattr(struct btrfs_trans_handle *trans,
|
2009-11-12 17:35:27 +08:00
|
|
|
struct inode *inode, const char *name,
|
|
|
|
const void *value, size_t size, int flags);
|
2018-02-27 22:48:59 +08:00
|
|
|
ssize_t btrfs_listxattr(struct dentry *dentry, char *buffer, size_t size);
|
2007-11-17 00:45:54 +08:00
|
|
|
|
2018-02-27 22:48:54 +08:00
|
|
|
int btrfs_xattr_security_init(struct btrfs_trans_handle *trans,
|
2011-02-02 00:05:39 +08:00
|
|
|
struct inode *inode, struct inode *dir,
|
|
|
|
const struct qstr *qstr);
|
2009-02-04 22:29:13 +08:00
|
|
|
|
2018-04-04 01:16:55 +08:00
|
|
|
#endif
|