usb/92083: [ural] [panic] panic using WPA on ural NIC in 6.0-RELEASE

Alexey Popov lol at chistydom.ru
Sat Jan 5 08:10:03 PST 2008


The following reply was made to PR usb/92083; it has been noted by GNATS.

From: Alexey Popov <lol at chistydom.ru>
To: bug-followup at FreeBSD.org,  anders at FreeBSD.org
Cc: "Phillip Mumford" <phillip.mumford at gmail.com>
Subject: Re: usb/92083: [ural] [panic] panic using WPA on ural NIC in 6.0-RELEASE
Date: Sat, 05 Jan 2008 19:03:43 +0300

 Hi.
 
 Phillip, could you try workaround for if_ural that is similar to if_rum 
 described at the last part of http://www.freebsd.org/cgi/query-pr.cgi?pr=117820 ?
 
 In /sys/dev/usb/if_ural.c ural_txeof() just replace the strings:
          ieee80211_free_node(data->ni);
          data->ni = NULL;
 with:
 	if (data->ni != NULL) {
 		ieee80211_free_node(data->ni);
 		data->ni = NULL;
 	}
 Then rebuild and reinstall kernel (or module, if you use it as a module).
 
 It works for me with if_rum and I think the problem here is possibly identical 
 because the backtraces are very similar.
 
 With best regards,
 Alexey Popov


More information about the freebsd-usb mailing list