projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5ffce3c
)
xfs: Remove unneeded semicolon
author
Zheng Bin
<zhengbin13@huawei.com>
Wed, 9 Sep 2020 16:29:16 +0000
(09:29 -0700)
committer
Darrick J. Wong
<darrick.wong@oracle.com>
Wed, 16 Sep 2020 03:52:42 +0000
(20:52 -0700)
Fixes coccicheck warning:
fs/xfs/xfs_icache.c:1214:2-3: Unneeded semicolon
Signed-off-by: Zheng Bin <zhengbin13@huawei.com>
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
fs/xfs/xfs_icache.c
patch
|
blob
|
history
diff --git
a/fs/xfs/xfs_icache.c
b/fs/xfs/xfs_icache.c
index
aa6aad2
..
deb9930
100644
(file)
--- a/
fs/xfs/xfs_icache.c
+++ b/
fs/xfs/xfs_icache.c
@@
-1208,7
+1208,7
@@
xfs_reclaim_inodes(
while (radix_tree_tagged(&mp->m_perag_tree, XFS_ICI_RECLAIM_TAG)) {
xfs_ail_push_all_sync(mp->m_ail);
xfs_reclaim_inodes_ag(mp, &nr_to_scan);
- }
;
+ }
}
/*