1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 16:18:12 +00:00

Kernel: Rename FS => FileSystem

This matches our common naming style better.
This commit is contained in:
Andreas Kling 2021-07-11 00:20:38 +02:00
parent dd65f52331
commit d53d9d3677
33 changed files with 108 additions and 108 deletions

View file

@ -13,7 +13,7 @@
namespace Kernel {
class FS;
class FileSystem;
struct InodeMetadata;
TYPEDEF_DISTINCT_ORDERED_ID(u64, InodeIndex);
@ -32,8 +32,8 @@ public:
u32 fsid() const { return m_fsid; }
InodeIndex index() const { return m_index; }
FS* fs();
const FS* fs() const;
FileSystem* fs();
const FileSystem* fs() const;
bool operator==(const InodeIdentifier& other) const
{