mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 12:19:54 +00:00
Kernel: Report source of synthetic filesystems as "none"
As opposed to the fs name. This matches the new convention we have for specifying it in mount(8).
This commit is contained in:
parent
8ff4587f65
commit
2d412c5ad1
Notes:
sideshowbarker
2024-07-19 06:01:24 +09:00
Author: https://github.com/bugaevc
Commit: 2d412c5ad1
Pull-request: https://github.com/SerenityOS/serenity/pull/2430
Reviewed-by: https://github.com/alimpfard
1 changed files with 1 additions and 1 deletions
|
@ -749,7 +749,7 @@ Optional<KBuffer> procfs$df(InodeIdentifier)
|
|||
if (fs.is_file_backed())
|
||||
fs_object.add("source", static_cast<const FileBackedFS&>(fs).file_description().absolute_path());
|
||||
else
|
||||
fs_object.add("source", fs.class_name());
|
||||
fs_object.add("source", "none");
|
||||
});
|
||||
array.finish();
|
||||
return builder.build();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue