mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-03 23:25:20 +00:00
Kernel/FileSystem: Pass last mount point guest inode to unmount prepare
This will be important later on when we check file system busyness.
This commit is contained in:
committed by
Jelle Raaijmakers
parent
2fe5ece449
commit
8fb126bec6
@@ -532,8 +532,9 @@ unsigned Ext2FS::free_inode_count() const
|
||||
return super_block().s_free_inodes_count;
|
||||
}
|
||||
|
||||
ErrorOr<void> Ext2FS::prepare_to_clear_last_mount()
|
||||
ErrorOr<void> Ext2FS::prepare_to_clear_last_mount(Inode& mount_guest_inode)
|
||||
{
|
||||
(void)mount_guest_inode;
|
||||
MutexLocker locker(m_lock);
|
||||
for (auto& it : m_inode_cache) {
|
||||
if (it.value->ref_count() > 1)
|
||||
|
||||
Reference in New Issue
Block a user