1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 03:07:44 +00:00

Kernel: Remove unused header includes in VM subtree

This commit is contained in:
Brian Gianforcaro 2021-07-11 11:41:17 -07:00 committed by Andreas Kling
parent 642aa65310
commit 9044e21ed4
4 changed files with 1 additions and 4 deletions

View file

@ -7,7 +7,6 @@
#include <Kernel/Arch/x86/InterruptDisabler.h>
#include <Kernel/FileSystem/Inode.h>
#include <Kernel/VM/InodeVMObject.h>
#include <Kernel/VM/MemoryManager.h>
namespace Kernel {

View file

@ -5,7 +5,6 @@
*/
#include <Kernel/Arch/x86/InterruptDisabler.h>
#include <Kernel/Panic.h>
#include <Kernel/VM/MemoryManager.h>
#include <Kernel/VM/ProcessPagingScope.h>

View file

@ -7,7 +7,6 @@
#include <AK/BinarySearch.h>
#include <AK/Checked.h>
#include <Kernel/Random.h>
#include <Kernel/Thread.h>
#include <Kernel/VM/RangeAllocator.h>
#define VM_GUARD_PAGES

View file

@ -14,7 +14,7 @@
namespace Kernel {
/// A Scatter-Gather List type that owns its buffers
// A Scatter-Gather List type that owns its buffers
class ScatterGatherList : public RefCounted<ScatterGatherList> {
public: