mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-05 02:21:52 +09:00
staging: erofs: no need to take page lock in readdir
VFS will take inode_lock for readdir, therefore no need to take page lock in readdir at all just as the majority of other generic filesystems. Signed-off-by: Gao Xiang <gaoxiang25@huawei.com> Reviewed-by: Chao Yu <yuchao0@huawei.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
615cba3557
commit
b2bb112db1
@@ -98,7 +98,6 @@ static int erofs_readdir(struct file *f, struct dir_context *ctx)
|
||||
if (IS_ERR(dentry_page))
|
||||
continue;
|
||||
|
||||
lock_page(dentry_page);
|
||||
de = (struct erofs_dirent *)kmap(dentry_page);
|
||||
|
||||
nameoff = le16_to_cpu(de->nameoff);
|
||||
@@ -128,7 +127,6 @@ static int erofs_readdir(struct file *f, struct dir_context *ctx)
|
||||
skip_this:
|
||||
kunmap(dentry_page);
|
||||
|
||||
unlock_page(dentry_page);
|
||||
put_page(dentry_page);
|
||||
|
||||
ctx->pos = blknr_to_addr(i) + ofs;
|
||||
|
||||
Reference in New Issue
Block a user