DF-2476 / run.sh
#!/bin/sh # DF-2476 run: concurrent I/O harness against an md device. # Default /dev/md0 on this guest is a MALLOC md -> exercises the correct # mdstrategy_malloc path (no panic). A preload md under concurrent I/O would # trip the stale-bp UAF. DEV=${1:-/dev/md0} N=${2:-8} ./poc "$DEV" "$N" |