mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 16:27:35 +00:00
Kernel: Make (f)statvfs report filesystem ID correctly
This commit is contained in:
parent
631447da57
commit
ad5061bb7a
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ ErrorOr<FlatPtr> Process::do_statvfs(FileSystem const& fs, Custody const* custod
|
|||
kernelbuf.f_ffree = fs.free_inode_count();
|
||||
kernelbuf.f_favail = fs.free_inode_count(); // FIXME: same as f_bavail
|
||||
|
||||
kernelbuf.f_fsid = 0; // FIXME: Implement "Filesystem ID" into Filesystem
|
||||
kernelbuf.f_fsid = fs.fsid();
|
||||
|
||||
kernelbuf.f_namemax = 255;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue