mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-27 23:09:08 +00:00
Kernel+LibC: Implement fsync
This commit is contained in:
parent
fd3735199b
commit
a81b21c1a7
Notes:
sideshowbarker
2024-07-18 04:12:18 +09:00
Author: https://github.com/SeekingBlues
Commit: a81b21c1a7
Pull-request: https://github.com/SerenityOS/serenity/pull/9983
13 changed files with 51 additions and 6 deletions
|
@ -29,7 +29,7 @@ SpinlockProtected<Inode::AllInstancesList>& Inode::all_instances()
|
|||
return s_all_instances;
|
||||
}
|
||||
|
||||
void Inode::sync()
|
||||
void Inode::sync_all()
|
||||
{
|
||||
NonnullRefPtrVector<Inode, 32> inodes;
|
||||
Inode::all_instances().with([&](auto& all_inodes) {
|
||||
|
@ -45,6 +45,13 @@ void Inode::sync()
|
|||
}
|
||||
}
|
||||
|
||||
void Inode::sync()
|
||||
{
|
||||
if (is_metadata_dirty())
|
||||
flush_metadata();
|
||||
fs().flush_writes();
|
||||
}
|
||||
|
||||
KResultOr<NonnullOwnPtr<KBuffer>> Inode::read_entire(OpenFileDescription* description) const
|
||||
{
|
||||
auto builder = TRY(KBufferBuilder::try_create());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue