From 0a72cbfd92fdd4bad3eed4e51c4ae749907d3a79 Mon Sep 17 00:00:00 2001 From: liuzerun Date: Sat, 9 Dec 2023 07:07:10 +0000 Subject: [PATCH] add continue in find_in_block Signed-off-by: liuzerun --- fs/hmdfs/hmdfs_dentryfile_cloud.c | 1 + 1 file changed, 1 insertion(+) diff --git a/fs/hmdfs/hmdfs_dentryfile_cloud.c b/fs/hmdfs/hmdfs_dentryfile_cloud.c index 125120b4b486..4e7dd009913d 100644 --- a/fs/hmdfs/hmdfs_dentryfile_cloud.c +++ b/fs/hmdfs/hmdfs_dentryfile_cloud.c @@ -67,6 +67,7 @@ find_in_block(struct hmdfs_dentry_group_cloud *dentry_blk, __u32 namehash, if (!test_bit_le(bit_pos, dentry_blk->bitmap)) { bit_pos++; max_len++; + continue; } de = &dentry_blk->nsl[bit_pos]; if (unlikely(!de->namelen)) { -- Gitee