Developer knowledge network ยท moderated exchange

UnreliableCode Community

Developer Research, Reverse Engineering & Coding Community

Knowledge indexLive
4Categories
919Threads
2.8KPosts
Release

Inverted Ring Buffer Driver: high-throughput memory streaming architecture [v2.4 Technical Discussion]

dma_ghost
DMA Guru
MEMBER
Rep: 115
Join Date: Jan 2020
Posts: 12
Thanks: 83
1 months ago ยท Jul 22, 2026 11:56 AM
#1

High-throughput external memory streaming framework:

  • Zero named devices (IoCreateDevice is never called).
  • Zero IOCTL handlers.
  • Uses atomic memory spinlocks over mapped MDL pages.
  • Sustains 2,500,000 memory read requests per second with < 0.2 microsecond latency.

Tested clean on EasyAntiCheat and BattlEye with 0 detection flags.

kernel_komrade
Driver Dev
MEMBER
Rep: 145
Join Date: Feb 2019
Posts: 26
Thanks: 45
1 months ago ยท Jul 22, 2026 3:23 PM
#2

2.5M reads per second is incredible. Shared MDL memory mapping is so much faster than traditional IRP IOCTL dispatch.

ptr_arithmetic
C++ Wizard
MEMBER
Rep: 162
Join Date: May 2018
Posts: 73
Thanks: 42
1 months ago ยท Jul 23, 2026 1:11 AM
#3

Cleanest IPC design possible.