Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755200Ab1FMJHi (ORCPT ); Mon, 13 Jun 2011 05:07:38 -0400 Received: from e35.co.us.ibm.com ([32.97.110.153]:46397 "EHLO e35.co.us.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754998Ab1FMJHh (ORCPT ); Mon, 13 Jun 2011 05:07:37 -0400 Date: Mon, 13 Jun 2011 14:29:55 +0530 From: Srikar Dronamraju To: Peter Zijlstra Cc: Ingo Molnar , Steven Rostedt , Linux-mm , Arnaldo Carvalho de Melo , Linus Torvalds , Masami Hiramatsu , Hugh Dickins , Christoph Hellwig , Andi Kleen , Thomas Gleixner , Jonathan Corbet , Oleg Nesterov , Andrew Morton , Jim Keniston , Roland McGrath , Ananth N Mavinakayanahalli , LKML Subject: Re: [PATCH v4 3.0-rc2-tip 2/22] 2: uprobes: Breakground page replacement. Message-ID: <20110613085955.GD27130@linux.vnet.ibm.com> Reply-To: Srikar Dronamraju References: <20110607125804.28590.92092.sendpatchset@localhost6.localdomain6> <20110607125835.28590.25476.sendpatchset@localhost6.localdomain6> <1307660609.2497.1773.camel@laptop> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline In-Reply-To: <1307660609.2497.1773.camel@laptop> User-Agent: Mutt/1.5.20 (2009-06-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1995 Lines: 56 * Peter Zijlstra [2011-06-10 01:03:29]: > On Tue, 2011-06-07 at 18:28 +0530, Srikar Dronamraju wrote: > > + vaddr_old = kmap_atomic(old_page, KM_USER0); > > + vaddr_new = kmap_atomic(new_page, KM_USER1); > > + > > + memcpy(vaddr_new, vaddr_old, PAGE_SIZE); > > + /* poke the new insn in, ASSUMES we don't cross page boundary */ > > + addr = vaddr; > > + vaddr &= ~PAGE_MASK; > > + memcpy(vaddr_new + vaddr, &opcode, uprobe_opcode_sz); > > + > > + kunmap_atomic(vaddr_new); > > + kunmap_atomic(vaddr_old); > > > > + vaddr_new = kmap_atomic(page, KM_USER0); > > + vaddr &= ~PAGE_MASK; > > + memcpy(opcode, vaddr_new + vaddr, uprobe_opcode_sz); > > + kunmap_atomic(vaddr_new); > > > > Both sequences in resp {write,read}_opcode() assume the opcode doesn't > cross page boundaries but don't in fact have any assertions validating > this assumption. > read_opcode and write_opcode reads/writes just one breakpoint instruction I had the below note just above the write_opcode definition. /* * NOTE: * Expect the breakpoint instruction to be the smallest size instruction for * the architecture. If an arch has variable length instruction and the * breakpoint instruction is not of the smallest length instruction * supported by that architecture then we need to modify read_opcode / * write_opcode accordingly. This would never be a problem for archs that * have fixed length instructions. */ Do we have archs which have a breakpoint instruction which isnt of the smallest instruction size for that arch. If we do have can we change the write_opcode/read_opcode while we support that architecture? -- Thanks and Regards Srikar > > -- 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/