diff options
author | Liav A <liavalb@gmail.com> | 2023-02-20 17:51:18 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-02-24 22:14:18 +0100 |
commit | c56e1c53783ae0f2c7388160cf88c0c6b7c09081 (patch) | |
tree | 38046b7a448977b8fe22d3a22077373e786c2584 /Kernel/Forward.h | |
parent | 9216caeec20c41e96e969d8992d6a104649a94de (diff) | |
download | serenity-c56e1c53783ae0f2c7388160cf88c0c6b7c09081.zip |
Kernel/FileSystem: Simplify the ProcFS significantly
Since the ProcFS doesn't hold many global objects within it, the need
for a fully-structured design of backing components and a registry like
with the SysFS is no longer true.
To acommodate this, let's remove all backing store and components of the
ProcFS, so now it resembles what we had in the early days of ProcFS in
the project - a mostly-static filesystem, with very small amount of
kmalloc allocations needed.
We still use the inode index mechanism to understand the role of each
inode, but this is done in a much "static"ier way than before.
Diffstat (limited to 'Kernel/Forward.h')
-rw-r--r-- | Kernel/Forward.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Kernel/Forward.h b/Kernel/Forward.h index becce1db69..e12681f812 100644 --- a/Kernel/Forward.h +++ b/Kernel/Forward.h @@ -40,13 +40,7 @@ class MasterPTY; class Mount; class PerformanceEventBuffer; class ProcFS; -class ProcFSExposedComponent; -class ProcFSExposedDirectory; class ProcFSInode; -class ProcFSProcessInformation; -class ProcFSRootDirectory; -class ProcFSSystemBoolean; -class ProcFSSystemDirectory; class Process; class ProcessGroup; class RAMFS; |