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