summaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorZheng Bin <zhengbin13@huawei.com>2020-09-09 09:29:16 -0700
committerDarrick J. Wong <darrick.wong@oracle.com>2020-09-15 20:52:42 -0700
commit0f4ec0f157468fdb6512ccd9cd8cbb8b645fb4a0 (patch)
treee95b49523abbd0d71c29b8927c3a51f181941734 /fs
parent5ffce3cc22a0e89813ed0c7162a68b639aef9ab6 (diff)
downloadlinux-stable-0f4ec0f157468fdb6512ccd9cd8cbb8b645fb4a0.tar.gz
linux-stable-0f4ec0f157468fdb6512ccd9cd8cbb8b645fb4a0.tar.bz2
linux-stable-0f4ec0f157468fdb6512ccd9cd8cbb8b645fb4a0.zip
xfs: Remove unneeded semicolon
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>
Diffstat (limited to 'fs')
-rw-r--r--fs/xfs/xfs_icache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_icache.c b/fs/xfs/xfs_icache.c
index aa6aad258670..deb99300d171 100644
--- 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);
- };
+ }
}
/*