Limitations

info on the current limitations of DMA devices.

Read/Write Speed Limitations

DMA devices can come in a wide range of speeds. For DMA cheating, we need high speed, low latency, and very good stability. Sadly, most cards on the market don't provide us with all three of these factors.

You can expect about 1000 r/w TLPs per second. This is a really tight restriction for cheating, so we need to be smart about our read operations. If we can read 4096 bytes in one read operation, and from that get multiple pointers or values, that is more efficient than reading each value or pointer on its own.

Ulf Frisk discusses latency and speed on this git issue.

See also:

IOMMU Limitation

The IOMMU is a middle man between our DMA device and the physical memory. In order for our DMA cards to work, this feature needs to be turned off.

Anticheats do not require IOMMU to be enabled yet.

Last updated