From owner-freebsd-current@FreeBSD.ORG Fri Dec 5 17:04:04 2008 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5E80E1065673 for ; Fri, 5 Dec 2008 17:04:04 +0000 (UTC) (envelope-from joseph.koshy@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.187]) by mx1.freebsd.org (Postfix) with ESMTP id E1DC68FC1A for ; Fri, 5 Dec 2008 17:04:03 +0000 (UTC) (envelope-from joseph.koshy@gmail.com) Received: by nf-out-0910.google.com with SMTP id h3so48229nfh.33 for ; Fri, 05 Dec 2008 09:04:02 -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:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=rVRbSeGSiQOHdjNHplB+0MPo13yrryBTR6a+09shOgA=; b=E/XZ/CRvnfnpSEOEE4tZsHyrhu3z3FOyz/OMpxmdZBrveSVZUd7FNz5GOC637RItjr N4t2EjDtRsJ9EJ8OuwDlLVStXzePHP8gGifIL71HWlgeE1ab746umSiivDcXLU4genVr y1UblbipFn1BYImYDbWWUxvVn/xO2FKuT838k= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=mpTMYLyYaltELrthAW7yFRgVlqtNA4u5ampbjx7fqEcwZ+KtCjEO/r/WwA3JvHdBAb CQ6w+Hcp31V/kLtXcy9lZcPs9HrOb+HYmWf0k4f1k4YavviE80RRA2buD69TlT9B6tiL i9iXZkpqSuFxC0TGm0pytH1HDdfZTaHw9v23w= Received: by 10.86.94.11 with SMTP id r11mr763370fgb.53.1228495210480; Fri, 05 Dec 2008 08:40:10 -0800 (PST) Received: by 10.86.58.7 with HTTP; Fri, 5 Dec 2008 08:40:10 -0800 (PST) Message-ID: <84dead720812050840j28c95014wf76095c3d6def985@mail.gmail.com> Date: Fri, 5 Dec 2008 22:10:10 +0530 From: "Joseph Koshy" To: "NAKAJI Hiroyuki" In-Reply-To: <87zljb8nw6.fsf@roddy.4407.kankyo-u.ac.jp> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <87zljb8nw6.fsf@roddy.4407.kankyo-u.ac.jp> Cc: freebsd-current@freebsd.org Subject: Re: Fatal trap 12: page fault while in kernel mode X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 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: Fri, 05 Dec 2008 17:04:04 -0000 > Fatal trap 12: page fault while in kernel mode > cpuid = 0; apic id = 00 > fault virtual address = 0x0 > fault code = supervisor read, page not present > instruction pointer = 0x20:0xc0a57285 > Why this occurs and what do I have to check? The trap is being caused by a null pointer access. You may want to take a full dump and use kgdb(1) to investigate the matter: ddb> call doadump ddb> reset and after the reboot finishes, # kgdb /boot/kernel/kernel /var/crash/vmcore.N where "vmcore.N" is the name of the dump file saved by savecore(8). Koshy