Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755461AbYGSSko (ORCPT ); Sat, 19 Jul 2008 14:40:44 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1756331AbYGSSk3 (ORCPT ); Sat, 19 Jul 2008 14:40:29 -0400 Received: from ogre.sisk.pl ([217.79.144.158]:45238 "EHLO ogre.sisk.pl" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756106AbYGSSk1 (ORCPT ); Sat, 19 Jul 2008 14:40:27 -0400 From: "Rafael J. Wysocki" To: Al Viro Subject: Re: linux-next: Tree for July 17: early crash on x86-64 Date: Sat, 19 Jul 2008 20:42:05 +0200 User-Agent: KMail/1.9.6 (enterprise 20070904.708012) Cc: Alexander Beregalov , Stephen Rothwell , linux-next@vger.kernel.org, LKML , Ingo Molnar , Kernel Testers List , Stephen Smalley , James Morris , Eric Paris References: <20080718012842.690b8346.sfr@canb.auug.org.au> <20080719035231.GU28946@ZenIV.linux.org.uk> In-Reply-To: <20080719035231.GU28946@ZenIV.linux.org.uk> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200807192042.06988.rjw@sisk.pl> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1907 Lines: 58 On Saturday, 19 of July 2008, Al Viro wrote: > On Fri, Jul 18, 2008 at 05:52:23PM +0400, Alexander Beregalov wrote: > > 2008/7/18 Rafael J. Wysocki : > > > This one crashes all of my x86-64 test boxes early during boot. > > The same problem with next-20080718. > > Unfortunatelly I do not have serial console on that host. > > vfs-next/net-next conflict; apply the patch below on top of the merge. That helped, thanks. But next it ran into the BUG_ON() in line 883 of security/selinux/avc.c . Disabling selinux made the kernel boot, finally. > diff --git a/net/sysctl_net.c b/net/sysctl_net.c > index b91a5de..2240a9e 100644 > --- a/net/sysctl_net.c > +++ b/net/sysctl_net.c > @@ -44,13 +44,6 @@ static struct ctl_table_root net_sysctl_root = { > .lookup = net_ctl_header_lookup, > }; > > -static LIST_HEAD(net_sysctl_ro_tables); > -static struct list_head *net_ctl_ro_header_lookup(struct ctl_table_root *root, > - struct nsproxy *namespaces) > -{ > - return &net_sysctl_ro_tables; > -} > - > static int net_ctl_ro_header_perms(struct ctl_table_root *root, > struct nsproxy *namespaces, struct ctl_table *table) > { > @@ -61,7 +54,6 @@ static int net_ctl_ro_header_perms(struct ctl_table_root *root, > } > > static struct ctl_table_root net_sysctl_ro_root = { > - .lookup = net_ctl_ro_header_lookup, > .permissions = net_ctl_ro_header_perms, > }; > > @@ -89,6 +81,7 @@ static __init int sysctl_init(void) > if (ret) > goto out; > register_sysctl_root(&net_sysctl_root); > + setup_sysctl_set(&net_sysctl_ro_root.default_set, NULL, NULL); > register_sysctl_root(&net_sysctl_ro_root); > out: > return ret; > > -- 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/