summaryrefslogtreecommitdiffhomepage
path: root/dev/ZKA/KernelKit
diff options
context:
space:
mode:
authorAmlal <amlal@el-mahrouss-logic.com>2024-09-10 10:33:39 +0200
committerAmlal <amlal@el-mahrouss-logic.com>2024-09-10 10:34:53 +0200
commit5aef44da0ce752e7ac6bd9c95489942b1a0319ae (patch)
treef3c6f613048ab091def7afc726f0227f552df519 /dev/ZKA/KernelKit
parentb11bf31c59d447e62e6ba9b3d8455f9b2828703f (diff)
Fix: See below.
- Fixing PML4 mapping and getting it to work. - Don't update cr4, instead do lidt to triple fault. Signed-off-by: Amlal <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'dev/ZKA/KernelKit')
-rw-r--r--dev/ZKA/KernelKit/FileMgr.hxx8
-rw-r--r--dev/ZKA/KernelKit/PEFCodeMgr.hxx2
2 files changed, 5 insertions, 5 deletions
diff --git a/dev/ZKA/KernelKit/FileMgr.hxx b/dev/ZKA/KernelKit/FileMgr.hxx
index 5b2b8fa8..b569ce36 100644
--- a/dev/ZKA/KernelKit/FileMgr.hxx
+++ b/dev/ZKA/KernelKit/FileMgr.hxx
@@ -140,14 +140,14 @@ namespace Kernel
* @brief Based of IFilesystemMgr, takes care of managing NeFS
* disks.
*/
- class NewFilesystemMgr final : public IFilesystemMgr
+ class NeFileSystemMgr final : public IFilesystemMgr
{
public:
- explicit NewFilesystemMgr();
- ~NewFilesystemMgr() override;
+ explicit NeFileSystemMgr();
+ ~NeFileSystemMgr() override;
public:
- ZKA_COPY_DEFAULT(NewFilesystemMgr);
+ ZKA_COPY_DEFAULT(NeFileSystemMgr);
public:
NodePtr Create(const Char* path) override;
diff --git a/dev/ZKA/KernelKit/PEFCodeMgr.hxx b/dev/ZKA/KernelKit/PEFCodeMgr.hxx
index c2938fae..c6748ba0 100644
--- a/dev/ZKA/KernelKit/PEFCodeMgr.hxx
+++ b/dev/ZKA/KernelKit/PEFCodeMgr.hxx
@@ -47,7 +47,7 @@ namespace Kernel
private:
#ifdef __FSKIT_USE_NEFS__
- OwnPtr<FileStream<Char, NewFilesystemMgr>> fFile;
+ OwnPtr<FileStream<Char, NeFileSystemMgr>> fFile;
#else
OwnPtr<FileStream<Char>> fFile;
#endif // __FSKIT_USE_NEFS__