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>
This commit is contained in:
parent
ab0d093616
commit
bcadd7050a
|
@ -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 @@
|
||||||
|
|
||||||
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,
|
||||||
|
|
Loading…
Reference in New Issue