Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Mon, 9 Sep 2002 16:35:02 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Mon, 9 Sep 2002 16:34:57 -0400 Received: from mx2.elte.hu ([157.181.151.9]:30107 "HELO mx2.elte.hu") by vger.kernel.org with SMTP id ; Mon, 9 Sep 2002 16:34:48 -0400 Date: Mon, 9 Sep 2002 22:43:51 +0200 (CEST) From: Ingo Molnar Reply-To: Ingo Molnar To: Daniel Jacobowitz Cc: Linus Torvalds , Subject: Re: do_syslog/__down_trylock lockup in current BK In-Reply-To: <20020909201516.GA7465@nevyn.them.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 700 Lines: 24 the following assert triggers and catches the lockup: --- linux/kernel/exit.c.orig Mon Sep 9 21:59:24 2002 +++ linux/kernel/exit.c Mon Sep 9 22:38:44 2002 @@ -461,6 +461,8 @@ ptrace_unlink (p); list_del_init(&p->sibling); + if (p->parent == father && p->parent == p->real_parent) + BUG(); p->parent = p->real_parent; list_add_tail(&p->sibling, &p->parent->children); } so somehow we can end up having parent == real_parent? Ingo - 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/