Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 5 Jan 2008 16:10:02 GMT
From:      Alexey Popov <lol@chistydom.ru>
To:        freebsd-usb@FreeBSD.org
Subject:   Re: usb/92083: [ural] [panic] panic using WPA on ural NIC in 6.0-RELEASE
Message-ID:  <200801051610.m05GA2Yo037327@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR usb/92083; it has been noted by GNATS.

From: Alexey Popov <lol@chistydom.ru>
To: bug-followup@FreeBSD.org,  anders@FreeBSD.org
Cc: "Phillip Mumford" <phillip.mumford@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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200801051610.m05GA2Yo037327>