Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932619AbaJVTqK (ORCPT ); Wed, 22 Oct 2014 15:46:10 -0400 Received: from e06smtp10.uk.ibm.com ([195.75.94.106]:49086 "EHLO e06smtp10.uk.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932575AbaJVTqG (ORCPT ); Wed, 22 Oct 2014 15:46:06 -0400 Date: Wed, 22 Oct 2014 21:45:52 +0200 From: Dominik Dingel To: Andrew Morton Cc: linux-mm@kvack.org, Mel Gorman , Michal Hocko , Paolo Bonzini , Dave Hansen , Rik van Riel , Andrea Arcangeli , Andy Lutomirski , "Aneesh Kumar K.V" , Bob Liu , Christian Borntraeger , Cornelia Huck , Gleb Natapov , Heiko Carstens , "H. Peter Anvin" , Hugh Dickins , Ingo Molnar , Jianyu Zhan , Johannes Weiner , "Kirill A. Shutemov" , kvm@vger.kernel.org, linux390@de.ibm.com, linux-kernel@vger.kernel.org, linux-s390@vger.kernel.org, Martin Schwidefsky , Peter Zijlstra , Sasha Levin Subject: Re: [PATCH 2/4] mm: introduce mm_forbids_zeropage function Message-ID: <20141022214552.0c954692@BR9TG4T3.de.ibm.com> In-Reply-To: <20141022122223.f3bef0f497941fa8e0805dbf@linux-foundation.org> References: <1413976170-42501-1-git-send-email-dingel@linux.vnet.ibm.com> <1413976170-42501-3-git-send-email-dingel@linux.vnet.ibm.com> <20141022122223.f3bef0f497941fa8e0805dbf@linux-foundation.org> Organization: IBM X-Mailer: Claws Mail 3.8.0 (GTK+ 2.24.10; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-TM-AS-MML: disable X-Content-Scanned: Fidelis XPS MAILER x-cbid: 14102219-0041-0000-0000-000001C82E9D Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 22 Oct 2014 12:22:23 -0700 Andrew Morton wrote: > On Wed, 22 Oct 2014 13:09:28 +0200 Dominik Dingel wrote: > > > Add a new function stub to allow architectures to disable for > > an mm_structthe backing of non-present, anonymous pages with > > read-only empty zero pages. > > > > ... > > > > --- a/include/linux/mm.h > > +++ b/include/linux/mm.h > > @@ -56,6 +56,10 @@ extern int sysctl_legacy_va_layout; > > #define __pa_symbol(x) __pa(RELOC_HIDE((unsigned long)(x), 0)) > > #endif > > > > +#ifndef mm_forbids_zeropage > > +#define mm_forbids_zeropage(X) (0) > > +#endif > > Can we document this please? What it does, why it does it. We should > also specify precisely which arch header file is responsible for > defining mm_forbids_zeropage. > I will add a comment like: /* * To prevent common memory management code establishing * a zero page mapping on a read fault. * This function should be implemented within . * s390 does this to prevent multiplexing of hardware bits * related to the physical page in case of virtualization. */ Okay? > -- > To unsubscribe, send a message with 'unsubscribe linux-mm' in > the body to majordomo@kvack.org. For more info on Linux MM, > see: http://www.linux-mm.org/ . > Don't email: email@kvack.org > -- 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/