Kernel/FileSystem: Add a few missing includes

In preparation to future commits, we need to ensure that
OpenFileDescription.h doesn't include the VirtualFileSystem.h file to
avoid include loops.
This commit is contained in:
Liav A 2022-08-19 18:16:06 +03:00 committed by Andrew Kaster
commit 965afba320
Notes: sideshowbarker 2024-07-17 05:12:53 +09:00
8 changed files with 9 additions and 4 deletions

View file

@ -8,6 +8,7 @@
#include <Kernel/Arch/SafeMem.h>
#include <Kernel/Arch/SmapDisabler.h>
#include <Kernel/Arch/x86/MSR.h>
#include <Kernel/FileSystem/Custody.h>
#include <Kernel/FileSystem/OpenFileDescription.h>
#include <Kernel/Memory/AnonymousVMObject.h>
#include <Kernel/Memory/MemoryManager.h>