mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-09 09:39:39 +00:00
Kernel: Implement a simple Scatter/Gather List
This allows converting a single virtual buffer into its non-physically contiguous parts, this is especially useful for DMA-based devices that support scatter/gather-like functionality, as it eliminates the need to clone outgoing buffers into one physically contiguous buffer.
This commit is contained in:
parent
ecfa7cb824
commit
acdd1424bc
Notes:
sideshowbarker
2024-07-18 19:31:27 +09:00
Author: https://github.com/IdanHo
Commit: acdd1424bc
Pull-request: https://github.com/SerenityOS/serenity/pull/6340
4 changed files with 124 additions and 0 deletions
|
@ -124,6 +124,7 @@ class MemoryManager {
|
|||
friend class PhysicalRegion;
|
||||
friend class AnonymousVMObject;
|
||||
friend class Region;
|
||||
friend class ScatterGatherList;
|
||||
friend class VMObject;
|
||||
|
||||
public:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue