Remove the cheesy block cache from DiskBackedFS.

This should be reimplemented with proper paging support. This approach was
mostly just chewing kmalloc memory.
This commit is contained in:
Andreas Kling 2019-01-01 02:27:05 +01:00
parent 4b6a8f8a08
commit 42d9f18cae
Notes: sideshowbarker 2024-07-19 16:06:23 +09:00
3 changed files with 1 additions and 37 deletions

View file

@ -4,6 +4,7 @@
#include "UnixTypes.h"
#include <AK/Buffer.h>
#include <AK/OwnPtr.h>
#include <AK/Lock.h>
#include "ext2_fs.h"
struct ext2_group_desc;