mirror of
https://github.com/ukui/kernel.git
synced 2026-03-09 10:07:04 -07:00
Revert "f2fs: check the node block address of newly allocated nid"
Original issue is fixed by:
f2fs: cover more area with nat_tree_lock
This reverts commit 24928634f8.
This commit is contained in:
@@ -1602,8 +1602,6 @@ retry:
|
|||||||
|
|
||||||
/* We should not use stale free nids created by build_free_nids */
|
/* We should not use stale free nids created by build_free_nids */
|
||||||
if (nm_i->fcnt && !on_build_free_nids(nm_i)) {
|
if (nm_i->fcnt && !on_build_free_nids(nm_i)) {
|
||||||
struct node_info ni;
|
|
||||||
|
|
||||||
f2fs_bug_on(sbi, list_empty(&nm_i->free_nid_list));
|
f2fs_bug_on(sbi, list_empty(&nm_i->free_nid_list));
|
||||||
list_for_each_entry(i, &nm_i->free_nid_list, list)
|
list_for_each_entry(i, &nm_i->free_nid_list, list)
|
||||||
if (i->state == NID_NEW)
|
if (i->state == NID_NEW)
|
||||||
@@ -1614,13 +1612,6 @@ retry:
|
|||||||
i->state = NID_ALLOC;
|
i->state = NID_ALLOC;
|
||||||
nm_i->fcnt--;
|
nm_i->fcnt--;
|
||||||
spin_unlock(&nm_i->free_nid_list_lock);
|
spin_unlock(&nm_i->free_nid_list_lock);
|
||||||
|
|
||||||
/* check nid is allocated already */
|
|
||||||
get_node_info(sbi, *nid, &ni);
|
|
||||||
if (ni.blk_addr != NULL_ADDR) {
|
|
||||||
alloc_nid_done(sbi, *nid);
|
|
||||||
goto retry;
|
|
||||||
}
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
spin_unlock(&nm_i->free_nid_list_lock);
|
spin_unlock(&nm_i->free_nid_list_lock);
|
||||||
|
|||||||
Reference in New Issue
Block a user