Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755324AbZLRScH (ORCPT ); Fri, 18 Dec 2009 13:32:07 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755099AbZLRScB (ORCPT ); Fri, 18 Dec 2009 13:32:01 -0500 Received: from mx1.redhat.com ([209.132.183.28]:54741 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755053AbZLRScA (ORCPT ); Fri, 18 Dec 2009 13:32:00 -0500 Date: Fri, 18 Dec 2009 19:24:24 +0100 From: Oleg Nesterov To: "K.Prasad" Cc: Frederic Weisbecker , Alan Stern , Ingo Molnar , Roland McGrath , linux-kernel@vger.kernel.org, utrace-devel@redhat.com Subject: Re: x86: do_debug && PTRACE_SINGLESTEP broken by 08d68323d1f0c34452e614263b212ca556dae47f Message-ID: <20091218182424.GA24180@redhat.com> References: <20091218005650.GA20667@redhat.com> <20091218030601.GB16470@nowhere> <20091218172747.GA10924@redhat.com> <20091218175842.GA10666@in.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20091218175842.GA10666@in.ibm.com> User-Agent: Mutt/1.5.18 (2008-05-17) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2053 Lines: 86 On 12/18, K.Prasad wrote: > > On Fri, Dec 18, 2009 at 06:27:47PM +0100, Oleg Nesterov wrote: > > On 12/18, Frederic Weisbecker wrote: > > > > > > On Fri, Dec 18, 2009 at 01:56:50AM +0100, Oleg Nesterov wrote: > > > > Hi. > > > > > > Single stepping works well for me, after a quick check on > > > gdb. How did you trigger the bug? > > > > Please find the trivial test-case below. It hangs, because > > PTRACE_SINGLESTEP doesn't trigger the trap. > > > > aah...my other mail just criss-crossed yours. > > I quickly ran on the said x86 box, loaded with -tip (commit > 7818b3d0fc68f5c2a85fed86d9fa37131c5a3068) and it runs fine. Hmm. Just re-tested 2.6.33-rc1 under kvm, it hangs... Oleg. > [root@llm05 prasadkr]# cat oleg.c > #include > #include > #include > #include > #include > #include > > int main(void) > { > int pid, status, i; > > pid = fork(); > if (!pid) > for (;;); > > sleep(1); > assert(ptrace(PTRACE_ATTACH, pid, 0,0) == 0); > > assert(pid == wait(&status)); > assert(WIFSTOPPED(status)); > > for (i = 0; i < 10; ++i) { > assert(ptrace(PTRACE_SINGLESTEP, pid, 0,0) == 0); > > printf("wait %d ...\n", i); > assert(pid == wait(&status)); > > assert(WIFSTOPPED(status) && WSTOPSIG(status) == SIGTRAP); > } > > kill(pid, SIGKILL); > return 0; > } > > [root@llm05 prasadkr]# gcc -o oleg oleg.c -g -Wall > [root@llm05 prasadkr]# ./oleg > wait 0 ... > wait 1 ... > wait 2 ... > wait 3 ... > wait 4 ... > wait 5 ... > wait 6 ... > wait 7 ... > wait 8 ... > wait 9 ... > [root@llm05 prasadkr]# > > Am I missing something here? > > Thanks, > K.Prasad > -- 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/