[Bug 264238] WiFi stops working after upgrade from 13.0 to 13.1, AR9285 (wpa_supplicant)

From: <bugzilla-noreply_at_freebsd.org>
Date: Mon, 13 Jun 2022 19:26:35 UTC
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=264238

--- Comment #60 from Cy Schubert <cy@FreeBSD.org> ---
Considering you can't get a dump, let's see if the ath(4) driver can give us a
hint.

Run this DTrace script prior to starting wlan0.

#!/usr/sbin/dtrace -s

fbt::ath_ioctl:entry {
        print(*args[0]);
        stack();
}

fbt::ath_ioctl:return {
        print(arg0);
}

-- 
You are receiving this mail because:
You are on the CC list for the bug.