Commit 9c6429d9 authored by Filipe Manana's avatar Filipe Manana Committed by Chris Mason

Btrfs: fix a comment in inode.c:evict_inode_truncate_pages()

The comment was not correct about the part where it says the endio
callback of the bio might have not yet been called - update it
to mention that by that time the endio callback execution might
still be in progress only.
Signed-off-by: default avatarFilipe Manana <fdmanana@suse.com>
Reviewed-by: default avatarLiu Bo <bo.li.liu@oracle.com>
Signed-off-by: default avatarChris Mason <clm@fb.com>
parent 61de718f
...@@ -4989,8 +4989,9 @@ static void evict_inode_truncate_pages(struct inode *inode) ...@@ -4989,8 +4989,9 @@ static void evict_inode_truncate_pages(struct inode *inode)
/* /*
* Keep looping until we have no more ranges in the io tree. * Keep looping until we have no more ranges in the io tree.
* We can have ongoing bios started by readpages (called from readahead) * We can have ongoing bios started by readpages (called from readahead)
* that didn't get their end io callbacks called yet or they are still * that have their endio callback (extent_io.c:end_bio_extent_readpage)
* in progress ((extent_io.c:end_bio_extent_readpage()). This means some * still in progress (unlocked the pages in the bio but did not yet
* unlocked the ranges in the io tree). Therefore this means some
* ranges can still be locked and eviction started because before * ranges can still be locked and eviction started because before
* submitting those bios, which are executed by a separate task (work * submitting those bios, which are executed by a separate task (work
* queue kthread), inode references (inode->i_count) were not taken * queue kthread), inode references (inode->i_count) were not taken
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment