mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
staging: erofs: fix if assignment style issue
Fix coding style issue "do not use assignment in if condition" detected by checkpatch.pl. Signed-off-by: Kristaps Čivkulis <kristaps.civkulis@gmail.com> Reviewed-by: Gao Xiang <gaoxiang25@huawei.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Cyber Knight <cyberknight755@gmail.com> Signed-off-by: azrim <mirzaspc@gmail.com>
This commit is contained in:
parent
3036fccad4
commit
ae3b0033ed
@ -702,7 +702,8 @@ next_part:
|
||||
/* can be used for verification */
|
||||
map->m_llen = offset + cur - map->m_la;
|
||||
|
||||
if ((end = cur) > 0)
|
||||
end = cur;
|
||||
if (end > 0)
|
||||
goto repeat;
|
||||
|
||||
/* FIXME! avoid the last relundant fixup & endio */
|
||||
|
@ -288,8 +288,8 @@ static int inline_getxattr(struct inode *inode, struct getxattr_iter *it)
|
||||
|
||||
remaining = ret;
|
||||
while (remaining) {
|
||||
if ((ret = xattr_foreach(&it->it,
|
||||
&find_xattr_handlers, &remaining)) >= 0)
|
||||
ret = xattr_foreach(&it->it, &find_xattr_handlers, &remaining);
|
||||
if (ret >= 0)
|
||||
break;
|
||||
}
|
||||
xattr_iter_end(&it->it, true);
|
||||
@ -321,8 +321,8 @@ static int shared_getxattr(struct inode *inode, struct getxattr_iter *it)
|
||||
it->it.blkaddr = blkaddr;
|
||||
}
|
||||
|
||||
if ((ret = xattr_foreach(&it->it,
|
||||
&find_xattr_handlers, NULL)) >= 0)
|
||||
ret = xattr_foreach(&it->it, &find_xattr_handlers, NULL);
|
||||
if (ret >= 0)
|
||||
break;
|
||||
}
|
||||
if (vi->xattr_shared_count)
|
||||
@ -512,8 +512,8 @@ static int inline_listxattr(struct listxattr_iter *it)
|
||||
|
||||
remaining = ret;
|
||||
while (remaining) {
|
||||
if ((ret = xattr_foreach(&it->it,
|
||||
&list_xattr_handlers, &remaining)) < 0)
|
||||
ret = xattr_foreach(&it->it, &list_xattr_handlers, &remaining);
|
||||
if (ret < 0)
|
||||
break;
|
||||
}
|
||||
xattr_iter_end(&it->it, true);
|
||||
@ -544,8 +544,8 @@ static int shared_listxattr(struct listxattr_iter *it)
|
||||
it->it.blkaddr = blkaddr;
|
||||
}
|
||||
|
||||
if ((ret = xattr_foreach(&it->it,
|
||||
&list_xattr_handlers, NULL)) < 0)
|
||||
ret = xattr_foreach(&it->it, &list_xattr_handlers, NULL);
|
||||
if (ret < 0)
|
||||
break;
|
||||
}
|
||||
if (vi->xattr_shared_count)
|
||||
|
Loading…
x
Reference in New Issue
Block a user