1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:27:35 +00:00

Kernel: Inline Inode::fsid()

This commit is contained in:
Sergey Bugaev 2020-05-18 21:46:02 +03:00 committed by Andreas Kling
parent 3b11e471bd
commit 9cbdd5f01e
2 changed files with 1 additions and 6 deletions

View file

@ -54,7 +54,7 @@ public:
FS& fs() { return m_fs; }
const FS& fs() const { return m_fs; }
unsigned fsid() const;
unsigned fsid() const { return m_fs.fsid(); }
unsigned index() const { return m_index; }
size_t size() const { return metadata().size; }