From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1760942AbYFBNDc (ORCPT ); Mon, 2 Jun 2008 09:03:32 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1760201AbYFBNDQ (ORCPT ); Mon, 2 Jun 2008 09:03:16 -0400 Received: from gw.goop.org ([64.81.55.164]:51877 "EHLO mail.goop.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1760045AbYFBNDP (ORCPT ); Mon, 2 Jun 2008 09:03:15 -0400 Message-ID: <4843EF6A.20305@goop.org> Date: Mon, 02 Jun 2008 14:02:34 +0100 From: Jeremy Fitzhardinge User-Agent: Thunderbird 2.0.0.14 (X11/20080501) MIME-Version: 1.0 To: Ingo Molnar CC: LKML , x86@kernel.org, xen-devel , Thomas Gleixner , Hugh Dickins , Zachary Amsden , kvm-devel , Virtualization Mailing List , Rusty Russell , Peter Zijlstra , Linus Torvalds Subject: [PATCH] mm: fix comment formatting in asm-generic/pgtable.h:__ptep_modify_prot_ References: <4deead25e96efc8ca783.1212192269@localhost> <20080602111339.GB18586@elte.hu> In-Reply-To: <20080602111339.GB18586@elte.hu> 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 Signed-off-by: Jeremy Fitzhardinge --- include/asm-generic/pgtable.h | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) =================================================================== --- a/include/asm-generic/pgtable.h +++ b/include/asm-generic/pgtable.h @@ -201,9 +201,11 @@ unsigned long addr, pte_t *ptep) { - /* Get the current pte state, but zero it out to make it - non-present, preventing the hardware from asynchronously - updating it. */ + /* + * Get the current pte state, but zero it out to make it + * non-present, preventing the hardware from asynchronously + * updating it. + */ return ptep_get_and_clear(mm, addr, ptep); } @@ -211,8 +213,10 @@ unsigned long addr, pte_t *ptep, pte_t pte) { - /* The pte is non-present, so there's no hardware state to - preserve. */ + /* + * The pte is non-present, so there's no hardware state to + * preserve. + */ set_pte_at(mm, addr, ptep, pte); }