hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
kernel/fs/btrfs/inode.c
....@@ -6273,7 +6273,7 @@
62736273 if (IS_ERR(trans))
62746274 return PTR_ERR(trans);
62756275
6276
- err = btrfs_find_free_ino(root, &objectid);
6276
+ err = btrfs_find_free_objectid(root, &objectid);
62776277 if (err)
62786278 goto out_unlock;
62796279
....@@ -6337,7 +6337,7 @@
63376337 if (IS_ERR(trans))
63386338 return PTR_ERR(trans);
63396339
6340
- err = btrfs_find_free_ino(root, &objectid);
6340
+ err = btrfs_find_free_objectid(root, &objectid);
63416341 if (err)
63426342 goto out_unlock;
63436343
....@@ -6481,7 +6481,7 @@
64816481 if (IS_ERR(trans))
64826482 return PTR_ERR(trans);
64836483
6484
- err = btrfs_find_free_ino(root, &objectid);
6484
+ err = btrfs_find_free_objectid(root, &objectid);
64856485 if (err)
64866486 goto out_fail;
64876487
....@@ -9135,7 +9135,7 @@
91359135 u64 objectid;
91369136 u64 index;
91379137
9138
- ret = btrfs_find_free_ino(root, &objectid);
9138
+ ret = btrfs_find_free_objectid(root, &objectid);
91399139 if (ret)
91409140 return ret;
91419141
....@@ -9631,7 +9631,7 @@
96319631 if (IS_ERR(trans))
96329632 return PTR_ERR(trans);
96339633
9634
- err = btrfs_find_free_ino(root, &objectid);
9634
+ err = btrfs_find_free_objectid(root, &objectid);
96359635 if (err)
96369636 goto out_unlock;
96379637
....@@ -9962,7 +9962,7 @@
99629962 if (IS_ERR(trans))
99639963 return PTR_ERR(trans);
99649964
9965
- ret = btrfs_find_free_ino(root, &objectid);
9965
+ ret = btrfs_find_free_objectid(root, &objectid);
99669966 if (ret)
99679967 goto out;
99689968