diff options
author | David Sterba <dsterba@suse.com> | 2018-02-27 15:48:57 +0100 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2018-03-26 15:09:41 +0200 |
commit | bcadd7050a43216e6ace936c23b4055fb5966ca1 (patch) | |
tree | fa09542e27ec4848f8e20bd330a01ea7f2d05670 /fs/btrfs/xattr.h | |
parent | ab0d09361662b7593fe166d27ad49b8852a2ef3e (diff) | |
download | linux-bcadd7050a43216e6ace936c23b4055fb5966ca1.tar.bz2 |
btrfs: adjust return type of btrfs_getxattr
The xattr_handler::get prototype returns int, use it. The only ssize_t
exception is the per-inode listxattr handler.
Reviewed-by: Nikolay Borisov <nborisov@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/xattr.h')
-rw-r--r-- | fs/btrfs/xattr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/xattr.h b/fs/btrfs/xattr.h index 96e6f3a304d3..57c638730617 100644 --- a/fs/btrfs/xattr.h +++ b/fs/btrfs/xattr.h @@ -23,7 +23,7 @@ extern const struct xattr_handler *btrfs_xattr_handlers[]; -ssize_t btrfs_getxattr(struct inode *inode, const char *name, +int btrfs_getxattr(struct inode *inode, const char *name, void *buffer, size_t size); int btrfs_setxattr(struct btrfs_trans_handle *trans, struct inode *inode, const char *name, |