From owner-freebsd-net@FreeBSD.ORG Mon Feb 20 17:03:46 2012 Return-Path: Delivered-To: freebsd-net@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 39E8D106566B for ; Mon, 20 Feb 2012 17:03:46 +0000 (UTC) (envelope-from adam.twardowski@gmail.com) Received: from mail-iy0-f182.google.com (mail-iy0-f182.google.com [209.85.210.182]) by mx1.freebsd.org (Postfix) with ESMTP id 02D3A8FC0A for ; Mon, 20 Feb 2012 17:03:45 +0000 (UTC) Received: by iaeo4 with SMTP id o4so10395893iae.13 for ; Mon, 20 Feb 2012 09:03:45 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=mVVhglIHCPcuESE0svAdpf+Xy4ZyrYlr3HTxCd9WILI=; b=k1Ja2nQDBTjnm0HGZvRuTfhDb/KCFoBIsR1Krek5vx8UszrckjztWdObP/QRXCnwld CnvA0or9aJUwY31LeqTbJr0dUYwUjyfeRlNRPidgB2Yfekpz6JKdii/xueFMp0SfTBBd aYc2sYmgGvynm3pdb3pp8q+DyRcq8Lzo+zVK4= MIME-Version: 1.0 Received: by 10.50.193.195 with SMTP id hq3mr11531581igc.18.1329757425309; Mon, 20 Feb 2012 09:03:45 -0800 (PST) Received: by 10.231.101.3 with HTTP; Mon, 20 Feb 2012 09:03:45 -0800 (PST) Received: by 10.231.101.3 with HTTP; Mon, 20 Feb 2012 09:03:45 -0800 (PST) In-Reply-To: References: Date: Mon, 20 Feb 2012 12:03:45 -0500 Message-ID: From: Adam Twardowski To: Adrian Chadd Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-net@freebsd.org Subject: Re: [urtw] Random wireless crash / kernel panic X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Feb 2012 17:03:46 -0000 I do still have the kernel and the crash dump. I'll try that fix tonight to see how it goes. Unfortunately, the kernel doesn't usually crash, more likely the wifi stops working and I am forced to reboot the machine to get it working again. On Feb 20, 2012 2:56 AM, "Adrian Chadd" wrote: > > Hi, > > Do you still have the kernel? > > > On 19 February 2012 18:23, Adam Twardowski wrote: > > Hello, I submitted a bug report the other day regarding a kernel panic > > related to the urtw driver. If anyone needs any additional > > infromation, please let me know. > > It looks like there's no node associated with that particular TX. > > Change: > > if (m->m_flags & M_TXCB) { > > > to > > if ((m->m_flags & M_TXCB) && (data->ni != NULL)) { > > .. that may fix the crash but it doesn't explain how an mbuf marked > M_TXCB has no node.. > > > > Adrian