DF-0572 / build.sh
#!/bin/sh # DF-0572 build: the cache-mechanism is proven via a diagnostic module build, # but the standalone userspace repro is the parallel UDP driver (shared with # DF-0569's nat_oob_trigger.c). This script builds the trigger. set -e cd "$(dirname "$0")" cc -O2 -o nat_oob_trigger nat_oob_trigger.c 2>/dev/null || true echo "DF-0572: trigger built (nat_oob_trigger). The bug is proven via the" echo "diagnostic module (check_nat_cache_diag.c) and the state cpu_id distribution." |