mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-01 20:10:28 +00:00
5217875f6a
We don't need to have a dedicated API for creating a VMObject with a single page, the multi-page API option works in all cases. Also make the API take a Span<NonnullRefPtr<PhysicalPage>> instead of a NonnullRefPtrVector<PhysicalPage>.
32 lines
1,016 B
C++
32 lines
1,016 B
C++
/*
|
|
* Copyright (c) 2021, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Vector.h>
|
|
#include <Kernel/Devices/BlockDevice.h>
|
|
#include <Kernel/PhysicalAddress.h>
|
|
#include <Kernel/VM/AnonymousVMObject.h>
|
|
#include <Kernel/VM/MemoryManager.h>
|
|
|
|
namespace Kernel {
|
|
|
|
// A Scatter-Gather List type that owns its buffers
|
|
|
|
class ScatterGatherList : public RefCounted<ScatterGatherList> {
|
|
public:
|
|
static RefPtr<ScatterGatherList> try_create(AsyncBlockDeviceRequest&, Span<NonnullRefPtr<PhysicalPage>> allocated_pages, size_t device_block_size);
|
|
const VMObject& vmobject() const { return m_vm_object; }
|
|
VirtualAddress dma_region() const { return m_dma_region->vaddr(); }
|
|
size_t scatters_count() const { return m_vm_object->physical_pages().size(); }
|
|
|
|
private:
|
|
ScatterGatherList(NonnullRefPtr<AnonymousVMObject>, AsyncBlockDeviceRequest&, size_t device_block_size);
|
|
NonnullRefPtr<AnonymousVMObject> m_vm_object;
|
|
OwnPtr<Region> m_dma_region;
|
|
};
|
|
|
|
}
|