Commit bcadd705 authored by David Sterba's avatar David Sterba

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: default avatarNikolay Borisov <nborisov@suse.com>
Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent ab0d0936
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
#include "locking.h" #include "locking.h"
ssize_t btrfs_getxattr(struct inode *inode, const char *name, int btrfs_getxattr(struct inode *inode, const char *name,
void *buffer, size_t size) void *buffer, size_t size)
{ {
struct btrfs_dir_item *di; struct btrfs_dir_item *di;
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
extern const struct xattr_handler *btrfs_xattr_handlers[]; 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); void *buffer, size_t size);
int btrfs_setxattr(struct btrfs_trans_handle *trans, int btrfs_setxattr(struct btrfs_trans_handle *trans,
struct inode *inode, const char *name, struct inode *inode, const char *name,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment