Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S261194AbVD3LLL (ORCPT ); Sat, 30 Apr 2005 07:11:11 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S261196AbVD3LLL (ORCPT ); Sat, 30 Apr 2005 07:11:11 -0400 Received: from mailfe06.swip.net ([212.247.154.161]:59294 "EHLO swip.net") by vger.kernel.org with ESMTP id S261194AbVD3LLG (ORCPT ); Sat, 30 Apr 2005 07:11:06 -0400 X-T2-Posting-ID: jLUmkBjoqvly7NM6d2gdCg== Subject: Re: 2.6.12-rc3-mm1 From: Alexander Nyberg To: Andrew Morton Cc: linux-kernel@vger.kernel.org In-Reply-To: <20050429231653.32d2f091.akpm@osdl.org> References: <20050429231653.32d2f091.akpm@osdl.org> Content-Type: text/plain Date: Sat, 30 Apr 2005 13:10:58 +0200 Message-Id: <1114859458.872.26.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.0.4 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1925 Lines: 44 > - We're still miles away from 2.6.12. Lots of patches here, plus my > collection of bugs-post-2.6.11 is vast. I'll start working through them > again after 2.6.12-rc4 is available to testers. > Something is bad with my init process, so with debug patch below I'm getting: do_page_fault: force_sig_info SIGSEV to 1, addr ffffe018, eip b7fe576a do_page_fault: force_sig_info SIGSEV to 1, addr ffffe018, eip b7fe576a do_page_fault: force_sig_info SIGSEV to 1, addr ffffe018, eip b7fe576a do_page_fault: force_sig_info SIGSEV to 1, addr ffffe018, eip b7fe576a continuing forever. 0xffffe018 is inside the vsyscall page so could be related but the eip should be there too in that case I think... You have any candidates? I've failed to find any. Index: mm/arch/i386/mm/fault.c =================================================================== --- mm.orig/arch/i386/mm/fault.c 2005-04-30 12:49:17.000000000 +0200 +++ mm/arch/i386/mm/fault.c 2005-04-30 12:56:31.000000000 +0200 @@ -391,6 +391,8 @@ info.si_errno = 0; /* info.si_code has been set above */ info.si_addr = (void __user *)address; + printk("%s: force_sig_info SIGSEV to %d, addr %lx, eip %lx\n", + __FUNCTION__, tsk->pid, address, regs->eip); force_sig_info(SIGSEGV, &info, tsk); return; } Also, this brought me to trying to find what has changed between the versions which appears a little tricky. Do you think it would be possible to set up your scripts that currently notify the author of a patch about the inclusion to CC something like mm-commits list. That way people can audit patches that have got in before the tarball is released, it is easy to see what has gone in and when. - 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/