1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 07:48:11 +00:00

Kernel: Use more fine-grained content data block granularity in TmpFS

Instead of just having a giant KBuffer that is not resizeable easily, we
use multiple AnonymousVMObjects in one Vector to store them.
The idea is to not have to do giant memcpy or memset each time we need
to allocate or de-allocate memory for TmpFS inodes, but instead, we can
allocate only the desired block range when trying to write to it.
Therefore, it is also possible to have data holes in the inode content
in case of skipping an entire set of one data block or more when writing
to the inode content, thus, making memory usage much more efficient.

To ensure we don't run out of virtual memory range, don't allocate a
Region in advance to each TmpFSInode, but instead try to allocate a
Region on IO operation, and then use that Region to map the VMObjects
in IO loop.
This commit is contained in:
Liav A 2022-09-09 06:58:44 +03:00 committed by Linus Groh
parent e8bdd885a3
commit b9dca3300e
3 changed files with 164 additions and 55 deletions

View file

@ -1,5 +1,6 @@
/*
* Copyright (c) 2019-2020, Sergey Bugaev <bugaevc@serenityos.org>
* Copyright (c) 2022, Liav A. <liavalb@hotmail.co.il>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
@ -9,6 +10,8 @@
#include <Kernel/FileSystem/FileSystem.h>
#include <Kernel/FileSystem/Inode.h>
#include <Kernel/KBuffer.h>
#include <Kernel/Locking/MutexProtected.h>
#include <Kernel/Memory/AnonymousVMObject.h>
namespace Kernel {
@ -68,6 +71,8 @@ private:
virtual ErrorOr<size_t> read_bytes_locked(off_t, size_t, UserOrKernelBuffer& buffer, OpenFileDescription*) const override;
virtual ErrorOr<size_t> write_bytes_locked(off_t, size_t, UserOrKernelBuffer const& buffer, OpenFileDescription*) override;
ErrorOr<size_t> do_io_on_content_space(Memory::Region& mapping_region, size_t offset, size_t io_size, UserOrKernelBuffer& buffer, bool write);
struct Child {
NonnullOwnPtr<KString> name;
NonnullLockRefPtr<TmpFSInode> inode;
@ -80,8 +85,32 @@ private:
InodeMetadata m_metadata;
LockWeakPtr<TmpFSInode> m_parent;
OwnPtr<KBuffer> m_content;
ErrorOr<void> ensure_allocated_blocks(size_t offset, size_t io_size);
ErrorOr<void> truncate_to_block_index(size_t block_index);
ErrorOr<size_t> read_bytes_from_content_space(size_t offset, size_t io_size, UserOrKernelBuffer& buffer) const;
ErrorOr<size_t> write_bytes_to_content_space(size_t offset, size_t io_size, UserOrKernelBuffer const& buffer);
struct DataBlock {
public:
using List = Vector<OwnPtr<DataBlock>>;
static ErrorOr<NonnullOwnPtr<DataBlock>> create();
constexpr static size_t block_size = 128 * KiB;
Memory::AnonymousVMObject& vmobject() { return *m_content_buffer_vmobject; }
Memory::AnonymousVMObject const& vmobject() const { return *m_content_buffer_vmobject; }
private:
explicit DataBlock(NonnullLockRefPtr<Memory::AnonymousVMObject> content_buffer_vmobject)
: m_content_buffer_vmobject(move(content_buffer_vmobject))
{
}
NonnullLockRefPtr<Memory::AnonymousVMObject> m_content_buffer_vmobject;
};
DataBlock::List m_blocks;
Child::List m_children;
};