From owner-freebsd-current@FreeBSD.ORG Mon Jun 24 10:21:58 2013 Return-Path: Delivered-To: freebsd-current@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 7B03E640; Mon, 24 Jun 2013 10:21:58 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from cell.glebius.int.ru (glebius.int.ru [81.19.69.10]) by mx1.freebsd.org (Postfix) with ESMTP id 0B60E1B22; Mon, 24 Jun 2013 10:21:57 +0000 (UTC) Received: from cell.glebius.int.ru (localhost [127.0.0.1]) by cell.glebius.int.ru (8.14.7/8.14.7) with ESMTP id r5OALuMj077535; Mon, 24 Jun 2013 14:21:56 +0400 (MSK) (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by cell.glebius.int.ru (8.14.7/8.14.7/Submit) id r5OALuBY077534; Mon, 24 Jun 2013 14:21:56 +0400 (MSK) (envelope-from glebius@FreeBSD.org) X-Authentication-Warning: cell.glebius.int.ru: glebius set sender to glebius@FreeBSD.org using -f Date: Mon, 24 Jun 2013 14:21:56 +0400 From: Gleb Smirnoff To: Glen Barber Subject: Re: [panic] swi4 page fault (ip_slowtimo()) Message-ID: <20130624102155.GF1214@FreeBSD.org> References: <20130622001712.GA1888@glenbarber.us> MIME-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <20130622001712.GA1888@glenbarber.us> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-current@FreeBSD.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Jun 2013 10:21:58 -0000 On Fri, Jun 21, 2013 at 08:17:12PM -0400, Glen Barber wrote: G> Hi, G> G> I have the following kgdb session from a page fault seemingly triggered G> in pf(4). pfslowtimo() isn't related to pf(4). "pf" stands here for "protocol family". G> (kgdb) list *0xffffffff80772688 G> 0xffffffff80772688 is in ip_slowtimo (/usr/src/sys/netinet/ip_input.c:1242). G> 1237 for(fp = TAILQ_FIRST(&V_ipq[i]); fp;) { G> 1238 struct ipq *fpp; G> 1239 G> 1240 fpp = fp; G> 1241 fp = TAILQ_NEXT(fp, ipq_list); G> 1242 if(--fpp->ipq_ttl == 0) { G> 1243 IPSTAT_ADD(ips_fragtimeout, G> 1244 fpp->ipq_nfrags); G> 1245 ip_freef(&V_ipq[i], fpp); G> 1246 } G> (kgdb) p *ipq G> $1 = {tqh_first = 0x0, tqh_last = 0xffffffff80e20e80} Can you please "print ipq", so that we can look at entire array. -- Totus tuus, Glebius.