From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759799AbYEWUnK (ORCPT ); Fri, 23 May 2008 16:43:10 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1758361AbYEWUm4 (ORCPT ); Fri, 23 May 2008 16:42:56 -0400 Received: from gw.goop.org ([64.81.55.164]:48158 "EHLO mail.goop.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758421AbYEWUmz (ORCPT ); Fri, 23 May 2008 16:42:55 -0400 Message-ID: <48372C2F.1090704@goop.org> Date: Fri, 23 May 2008 21:42:23 +0100 From: Jeremy Fitzhardinge User-Agent: Thunderbird 2.0.0.14 (X11/20080501) MIME-Version: 1.0 To: Linus Torvalds CC: Ingo Molnar , LKML , xen-devel , Thomas Gleixner , Hugh Dickins , Zachary Amsden , kvm-devel , Virtualization Mailing List , Rusty Russell , Peter Zijlstra Subject: Re: [PATCH 0 of 4] mm+paravirt+xen: add pte read-modify-write abstraction References: In-Reply-To: X-Enigmail-Version: 0.95.6 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Linus Torvalds wrote: > On Fri, 23 May 2008, Jeremy Fitzhardinge wrote: > >> This series adds the pte_rmw_start() and pte_rmw_commit() operations, >> which change this sequence to: >> >> ptent = pte_rmw_start(mm, addr, pte); >> ptent = pte_modify(ptent, newprot); >> /* ... */ >> pte_rmw_commit(mm, addr, pte, ptent); >> > > Can you please rename these. > > It's not a general "read-modify-write" operation on the PTE, and this > *only* works for changing protection details. In particular, you cannot > use pte_rmw_start/commit to change the actual page. So it's very much > about just protection bits. > Well, you could use it to update the page and protection bits while preserving the AD bits, but I don't think that's very useful. > It should probably also be called ptep_xyz(), since it takes a pte > pointer, not a pte. > > So maybe calling it "ptent = ptep_modify_prot_start(..)" ... > "ptep_modify_prot_commit(..)" or something. > Yep, sounds fine to me. J