From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758094AbYFSR55 (ORCPT ); Thu, 19 Jun 2008 13:57:57 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752596AbYFSR5t (ORCPT ); Thu, 19 Jun 2008 13:57:49 -0400 Received: from gw.goop.org ([64.81.55.164]:56200 "EHLO mail.goop.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752524AbYFSR5t (ORCPT ); Thu, 19 Jun 2008 13:57:49 -0400 Message-ID: <485A9DEC.8010406@goop.org> Date: Thu, 19 Jun 2008 10:57:00 -0700 From: Jeremy Fitzhardinge User-Agent: Thunderbird 2.0.0.14 (X11/20080501) MIME-Version: 1.0 To: benh@kernel.crashing.org CC: Linus Torvalds , xen-devel , Peter Zijlstra , kvm-devel , x86@kernel.org, LKML , Virtualization Mailing List , Hugh Dickins , Ingo Molnar , Thomas Gleixner Subject: Re: [PATCH 1 of 4] mm: add a ptep_modify_prot transaction abstraction References: <1213831403.8011.24.camel@pasglop> <4859A149.9090004@goop.org> <4859A528.1010107@goop.org> <1213835971.8011.54.camel@pasglop> <4859E8AF.30306@goop.org> <1213860031.8011.65.camel@pasglop> In-Reply-To: <1213860031.8011.65.camel@pasglop> X-Enigmail-Version: 0.95.6 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Benjamin Herrenschmidt wrote: >> Which architecture are you interested in? If it isn't x86, you can >> probably get anything past Linus ;) >> >> I'll do some measurements to see what effect the batchable >> ptep_set_wrprotect() has on native. If it's significant, I'll propose >> making it conditional on CONFIG_PARAVIRT. >> > > Oh, I mostly think about powerpc, I just wondered if I could re-use > your new stuff in that context. Mostly idle thoughts at this stage, I > haven't looked seriously. > There are general-purpose hooks in the common code which architectures can implement however they like. In x86-land we hook them up to pvops, but you can handle them however you want. > I have an old patch set to batch forks (and mprotect etc...) TLB > invalidations (which is what I really want to batch on powerpc, more > than the actual PTE changes) that involves subtle changes to the > batching mechanisms etc... > Do you mean setting up batches of per-page tlb shootdowns rather than going a global tlb flush at the end? J