DF-1146 / run.sh
#!/bin/sh # DF-1146 runtime trigger is NOT exercisable on this guest. # i915_gem_fault runs only when the i915 driver has attached to an Intel # integrated GPU and a userspace process mmaps a GEM object. This QEMU/KVM # guest has only QEMU std VGA (0x1234:0x1111) -- not an i915 -- and i915 is # not in GENERIC. See VERDICT.md. echo "DF-1146: runtime trigger requires an Intel i915 GPU + a GEM mmap." echo " Not exercisable on this QEMU/KVM guest (no Intel GPU)." echo " See VERDICT.md for the source-level confirmation + fix." exit 0 |