From owner-freebsd-usb@FreeBSD.ORG Fri Feb 1 23:17:45 2008 Return-Path: Delivered-To: freebsd-usb@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3B62616A420 for ; Fri, 1 Feb 2008 23:17:45 +0000 (UTC) (envelope-from w8hdkim@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.183]) by mx1.freebsd.org (Postfix) with ESMTP id EF96313C448 for ; Fri, 1 Feb 2008 23:17:44 +0000 (UTC) (envelope-from w8hdkim@gmail.com) Received: by py-out-1112.google.com with SMTP id u52so1907467pyb.10 for ; Fri, 01 Feb 2008 15:17:44 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; bh=AHAk6/I+sNPKv2lnGdwCCllPNgQjSCy8UeuoLjNb400=; b=T21BNz6m9EfsbPgH8fdKWgyB20j/N1pfm6szB5wqGqPFzRNcla3jVdtU2EcW7k34PsWBtK9dye/Tc800JtEQb3uLznWMlsUr42xtvWSBvtc5EByhZ7eyv6epflxHaxO8ZDgNk+OUZt62mGXcnTdp+BHAd2wvrXw58Y7wStoJvUo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=v1GE78tWWTizqkx6KsN+FPSXKLmByY/BR+aeViF3We0JCrWULZtMZ3avYVcnlmQUxh1RnUj132jnHEub/gyPBRmsxN9hNjHMyzE85rX3oE/G+q6cYv/tSr//S28W7shrWbWBnxTGSRD6pB+uw1sXf8G7cvdUZB0YTZYyChAhUVY= Received: by 10.64.131.4 with SMTP id e4mr6674390qbd.68.1201907863583; Fri, 01 Feb 2008 15:17:43 -0800 (PST) Received: by 10.65.219.2 with HTTP; Fri, 1 Feb 2008 15:17:43 -0800 (PST) Message-ID: <89dbfdc30802011517j64517c0fhbd1de135ac39537c@mail.gmail.com> Date: Fri, 1 Feb 2008 18:17:43 -0500 From: "Kim Culhan" To: freebsd-usb@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: Subject: Re: rum0 page fault on FreeBSD 7-PRERELEASE X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Feb 2008 23:17:45 -0000 Received one reply from Alexey Popov to the original post referring to: http://www.freebsd.org/cgi/query-pr.cgi?pr=117820 As described in the PR, Alexey added the following workaround which was tested on FreeBSD 7-PRERELEASE. No crashes have been observed since this change. The workaround is: === *** if_rum.c.orig Fri Feb 1 18:06:15 2008 --- if_rum.c Fri Feb 1 18:05:50 2008 *************** *** 857,868 **** --- 857,870 ---- return; } m_freem(data->m); data->m = NULL; + if (data->ni != NULL) { ieee80211_free_node(data->ni); data->ni = NULL; + } sc->tx_queued--; ifp->if_opackets++; DPRINTFN(10, ("tx done\n")); === Thanks -kim