aboutsummaryrefslogtreecommitdiffstats
path: root/fs/f2fs/xattr.h
diff options
context:
space:
mode:
Diffstat (limited to 'fs/f2fs/xattr.h')
-rw-r--r--fs/f2fs/xattr.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/f2fs/xattr.h b/fs/f2fs/xattr.h
index 79bc2bb32aeb..34ab7dbcf5e3 100644
--- a/fs/f2fs/xattr.h
+++ b/fs/f2fs/xattr.h
@@ -114,14 +114,14 @@ extern const struct xattr_handler f2fs_xattr_security_handler;
114extern const struct xattr_handler *f2fs_xattr_handlers[]; 114extern const struct xattr_handler *f2fs_xattr_handlers[];
115 115
116extern int f2fs_setxattr(struct inode *, int, const char *, 116extern int f2fs_setxattr(struct inode *, int, const char *,
117 const void *, size_t, struct page *); 117 const void *, size_t, struct page *, int);
118extern int f2fs_getxattr(struct inode *, int, const char *, void *, size_t); 118extern int f2fs_getxattr(struct inode *, int, const char *, void *, size_t);
119extern ssize_t f2fs_listxattr(struct dentry *, char *, size_t); 119extern ssize_t f2fs_listxattr(struct dentry *, char *, size_t);
120#else 120#else
121 121
122#define f2fs_xattr_handlers NULL 122#define f2fs_xattr_handlers NULL
123static inline int f2fs_setxattr(struct inode *inode, int index, 123static inline int f2fs_setxattr(struct inode *inode, int index,
124 const char *name, const void *value, size_t size) 124 const char *name, const void *value, size_t size, int flags)
125{ 125{
126 return -EOPNOTSUPP; 126 return -EOPNOTSUPP;
127} 127}