1Known issues in NVMM, low priority in most cases.
2
3====== KERNEL NVMM DRIVER ======
4
5 * 32bit-PAE guests can misbehave on Intel, because we need to manually
6   install the PDPTEs, and currently we don't do it. In practice they don't
7   misbehave because the emulator never has to interfere with CR3.
8
9 * AMD: we don't support VCPU_CONF_TPR, would be nice to.
10
11 * AMD: need to do comprehensive CPUID filtering, like we already do on
12   Intel.
13
14====== LIBNVMM ======
15
16 * There are still a few twisted corner cases we don't handle in the instruction
17   emulator. For example if the guest makes an MMIO access relative to RSP, we
18   must base the GVA on %SS and not %DS. This is tiring, and in practice, no
19   guest is dumb enough to perform such accesses.
20
21 * Maybe the __areas should have a rwlock? I don't think Qemu unmaps memory
22   while VCPUs are running, but still.
23