Commit d04bd562 authored by James Simmons's avatar James Simmons Committed by Greg Kroah-Hartman

staging: lustre: llite: use proper types in the xattr code

Convert __uXX types to uXX types since this is kernel code.
The function ll_lov_user_md_size() returns ssize_t so change
lum_size from int to ssize_t.
Signed-off-by: default avatarJames Simmons <uja.ornl@yahoo.com>
Intel-bug-id: https://jira.hpdd.intel.com/browse/LU-9183
Reviewed-on: https://review.whamcloud.com/27240Reviewed-by: default avatarDmitry Eremin <dmitry.eremin@intel.com>
Reviewed-by: default avatarBob Glossman <bob.glossman@intel.com>
Reviewed-by: default avatarSebastien Buisson <sbuisson@ddn.com>
Reviewed-by: default avatarOleg Drokin <oleg.drokin@intel.com>
Signed-off-by: default avatarJames Simmons <jsimmons@infradead.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7a85eabf
...@@ -91,7 +91,7 @@ ll_xattr_set_common(const struct xattr_handler *handler, ...@@ -91,7 +91,7 @@ ll_xattr_set_common(const struct xattr_handler *handler,
struct ptlrpc_request *req = NULL; struct ptlrpc_request *req = NULL;
const char *pv = value; const char *pv = value;
char *fullname; char *fullname;
__u64 valid; u64 valid;
int rc; int rc;
if (flags == XATTR_REPLACE) { if (flags == XATTR_REPLACE) {
...@@ -246,8 +246,8 @@ static int ll_setstripe_ea(struct dentry *dentry, struct lov_user_md *lump, ...@@ -246,8 +246,8 @@ static int ll_setstripe_ea(struct dentry *dentry, struct lov_user_md *lump,
return rc; return rc;
if (lump && S_ISREG(inode->i_mode)) { if (lump && S_ISREG(inode->i_mode)) {
__u64 it_flags = FMODE_WRITE; u64 it_flags = FMODE_WRITE;
int lum_size; ssize_t lum_size;
lum_size = ll_lov_user_md_size(lump); lum_size = ll_lov_user_md_size(lump);
if (lum_size < 0 || size < lum_size) if (lum_size < 0 || size < lum_size)
...@@ -309,7 +309,7 @@ static int ll_xattr_set(const struct xattr_handler *handler, ...@@ -309,7 +309,7 @@ static int ll_xattr_set(const struct xattr_handler *handler,
int int
ll_xattr_list(struct inode *inode, const char *name, int type, void *buffer, ll_xattr_list(struct inode *inode, const char *name, int type, void *buffer,
size_t size, __u64 valid) size_t size, u64 valid)
{ {
struct ll_inode_info *lli = ll_i2info(inode); struct ll_inode_info *lli = ll_i2info(inode);
struct ll_sb_info *sbi = ll_i2sbi(inode); struct ll_sb_info *sbi = ll_i2sbi(inode);
......
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