Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758801AbXLTEey (ORCPT ); Wed, 19 Dec 2007 23:34:54 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754651AbXLTEep (ORCPT ); Wed, 19 Dec 2007 23:34:45 -0500 Received: from relay2.sgi.com ([192.48.171.30]:50310 "EHLO relay.sgi.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1754643AbXLTEeo (ORCPT ); Wed, 19 Dec 2007 23:34:44 -0500 Date: Thu, 20 Dec 2007 15:34:29 +1100 From: David Chinner To: Kyle McMartin Cc: David Chinner , lkml , tony.luck@intel.com, linux-ia64@vger.kernel.org Subject: Re: [ia64] BUG: sleeping in atomic Message-ID: <20071220043429.GO4612@sgi.com> References: <20071219055430.GV4396912@sgi.com> <20071219164204.GA18161@fattire.cabal.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20071219164204.GA18161@fattire.cabal.ca> User-Agent: Mutt/1.4.2.1i Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2169 Lines: 74 On Wed, Dec 19, 2007 at 11:42:04AM -0500, Kyle McMartin wrote: > On Wed, Dec 19, 2007 at 04:54:30PM +1100, David Chinner wrote: > > [ 5667.086055] BUG: sleeping function called from invalid context at kernel/fork.c:401 > > > > The problem is that mmput is called under the read_lock by > find_thread_for_addr... The comment above seems to indicate that gdb > needs to be able to access any child tasks register backing store > memory... This seems pretty broken. > > cheers, Kyle > > --- > > Who knows, maybe gdb is saner now? > > diff --git a/arch/ia64/kernel/ptrace.c b/arch/ia64/kernel/ptrace.c > index 2e96f17..b609704 100644 > --- a/arch/ia64/kernel/ptrace.c > +++ b/arch/ia64/kernel/ptrace.c > @@ -1418,7 +1418,7 @@ asmlinkage long > sys_ptrace (long request, pid_t pid, unsigned long addr, unsigned long data) > { > struct pt_regs *pt; > - unsigned long urbs_end, peek_or_poke; > + unsigned long urbs_end; > struct task_struct *child; > struct switch_stack *sw; > long ret; > @@ -1430,23 +1430,12 @@ sys_ptrace (long request, pid_t pid, unsigned long addr, unsigned long data) > goto out; > } > > - peek_or_poke = (request == PTRACE_PEEKTEXT > - || request == PTRACE_PEEKDATA > - || request == PTRACE_POKETEXT > - || request == PTRACE_POKEDATA); > - ret = -ESRCH; > - read_lock(&tasklist_lock); > - { > - child = find_task_by_pid(pid); > - if (child) { > - if (peek_or_poke) > - child = find_thread_for_addr(child, addr); > - get_task_struct(child); > - } > - } > - read_unlock(&tasklist_lock); > - if (!child) > + child = ptrace_get_task_struct(pid); > + if (IS_ERR(child)) { > + ret = PTR_ERR(child); > goto out; > + } > + > ret = -EPERM; > if (pid == 1) /* no messing around with init! */ > goto out_tsk; Yes, this patch fixes the problem (though I haven't tried to use gdb yet). Cheers, Dave. -- Dave Chinner Principal Engineer SGI Australian Software Group -- 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/