Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755100Ab0BSR7N (ORCPT ); Fri, 19 Feb 2010 12:59:13 -0500 Received: from e23smtp02.au.ibm.com ([202.81.31.144]:48554 "EHLO e23smtp02.au.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754684Ab0BSR7J (ORCPT ); Fri, 19 Feb 2010 12:59:09 -0500 Date: Fri, 19 Feb 2010 23:28:59 +0530 From: "K.Prasad" To: Frederic Weisbecker Cc: Ingo Molnar , LKML , Michael Stefaniuc , Alan Stern , Maneesh Soni , Alexandre Julliard , "Rafael J . Wysocki" , Maciej Rutecki , Roland McGrath Subject: Re: [PATCH 2/2] hw-breakpoint: Keep track of dr7 local enable bits Message-ID: <20100219175859.GA4736@in.ibm.com> Reply-To: prasad@linux.vnet.ibm.com References: <4B7881AC.5070209@redhat.com> <1266516001-7753-3-git-send-regression-fweisbec@gmail.com> <20100219084523.GA3525@in.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: User-Agent: Mutt/1.5.19 (2009-01-05) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1489 Lines: 42 On Fri, Feb 19, 2010 at 04:34:03PM +0100, Frederic Weisbecker wrote: > 2010/2/19 K.Prasad : > > So, the thread's copy of DR7 (in thread->ptrace_dr7) stores the > > requested data even if the 'write' onto DR7 i.e. ptrace_write_dr7() > > failed. This can be the other way round i.e. populate the thread's copy > > of DR7 only if the write was successful. > > > > No. We store the new dr7 value only if ptrace_set_dr7() didn't fail. > > > > > I think it will be in consonance with the v2.6.32 behaviour as well. For > > instance, in the code snippet from ptrace_set_debugreg() in v2.6.32 > > below: > > ? ? ? ? ? ? ? ?for (i = 0; i < 4; i++) > > ? ? ? ? ? ? ? ? ? ? ? ?if ((DR7_MASK >> ((data >> (16 + 4*i)) & 0xf)) & 1) > > ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?return -EIO; > > ? ? ? ? ? ? ? ?child->thread.debugreg7 = data; > > > > The thread's copy of DR7 is populated only if the incoming data is > > found to be valid. > > > This is also what does this patch. thread->ptrace_dr7 is only > changed if ptrace_set_dr7() succeeded. > > Thanks. hmmh...I see...looks like I experienced single-bit ECC as I read the patch :-) Yes, let debugreg7 store values only when a valid bkpt request comes in. 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/