Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S264072AbTKSOCb (ORCPT ); Wed, 19 Nov 2003 09:02:31 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S264074AbTKSOCb (ORCPT ); Wed, 19 Nov 2003 09:02:31 -0500 Received: from holomorphy.com ([199.26.172.102]:50345 "EHLO holomorphy") by vger.kernel.org with ESMTP id S264072AbTKSOC3 (ORCPT ); Wed, 19 Nov 2003 09:02:29 -0500 Date: Wed, 19 Nov 2003 06:02:22 -0800 From: William Lee Irwin III To: "Ronny V. Vindenes" Cc: Andrew Morton , linux-kernel Subject: Re: 2.6.0-test9-mm4 - kernel BUG at arch/i386/mm/fault.c:357! Message-ID: <20031119140222.GV22764@holomorphy.com> Mail-Followup-To: William Lee Irwin III , "Ronny V. Vindenes" , Andrew Morton , linux-kernel References: <1069246427.5257.12.camel@localhost.localdomain> <20031119130220.GT22764@holomorphy.com> <1069248455.5257.26.camel@localhost.localdomain> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1069248455.5257.26.camel@localhost.localdomain> Organization: The Domain of Holomorphy User-Agent: Mutt/1.5.4i Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1336 Lines: 41 On Wed, 2003-11-19 at 14:02, William Lee Irwin III wrote: >> What sound card? On Wed, Nov 19, 2003 at 02:27:36PM +0100, Ronny V. Vindenes wrote: > Hercules Fortissimo III (snd-cs46xx), there's also a Terratec EWX24/96 > (snd-ice1712) installed but it's not in active use. Er, sorry, try this one instead: -- wli diff -prauN mm4-2.6.0-test9-1/arch/i386/mm/fault.c mm4-2.6.0-test9-dbg-1/arch/i386/mm/fault.c --- mm4-2.6.0-test9-1/arch/i386/mm/fault.c 2003-11-19 00:07:03.000000000 -0800 +++ mm4-2.6.0-test9-dbg-1/arch/i386/mm/fault.c 2003-11-19 05:56:04.000000000 -0800 @@ -21,6 +21,7 @@ #include /* For unblank_screen() */ #include #include +#include #include #include @@ -354,6 +355,10 @@ good_area: case VM_FAULT_OOM: goto out_of_memory; default: + if (vma->vm_ops && vma->vm_ops->nopage) + print_symbol(KERN_CRIT "bad nopage %s\n", + (unsigned long)vma->vm_ops->nopage); + printk(KERN_CRIT "handle_mm_fault() returned bad status\n"); BUG(); } - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/