From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758592Ab3BFUvJ (ORCPT ); Wed, 6 Feb 2013 15:51:09 -0500 Received: from mail.linuxfoundation.org ([140.211.169.12]:53622 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758121Ab3BFUvG (ORCPT ); Wed, 6 Feb 2013 15:51:06 -0500 Date: Wed, 6 Feb 2013 12:51:03 -0800 From: Andrew Morton To: Gerald Schaefer Cc: linux-kernel@vger.kernel.org, linux-mm@kvack.org, Vivek Goyal , Hugh Dickins , David Rientjes , Mel Gorman , Martin Schwidefsky , Heiko Carstens , Michel Lespinasse Subject: Re: [PATCH] mm: don't overwrite mm->def_flags in do_mlockall() Message-Id: <20130206125103.61748ed0.akpm@linux-foundation.org> In-Reply-To: <1360165774-55458-1-git-send-email-gerald.schaefer@de.ibm.com> References: <1360165774-55458-1-git-send-email-gerald.schaefer@de.ibm.com> X-Mailer: Sylpheed 3.0.2 (GTK+ 2.20.1; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 6 Feb 2013 16:49:34 +0100 Gerald Schaefer wrote: > With commit 8e72033 "thp: make MADV_HUGEPAGE check for mm->def_flags" > the VM_NOHUGEPAGE flag may be set on s390 in mm->def_flags for certain > processes, to prevent future thp mappings. This would be overwritten > by do_mlockall(), which sets it back to 0 with an optional VM_LOCKED > flag set. > > To fix this, instead of overwriting mm->def_flags in do_mlockall(), > only the VM_LOCKED flag should be set or cleared. What are the user-visible effects here? Looking at the 274023da1e8 changelog, I'm guessing that it might be pretty nasty - kvm breakage? > --- a/mm/mlock.c > +++ b/mm/mlock.c > @@ -517,11 +517,11 @@ SYSCALL_DEFINE2(munlock, unsigned long, start, size_t, len) > static int do_mlockall(int flags) > { > struct vm_area_struct * vma, * prev = NULL; > - unsigned int def_flags = 0; > > if (flags & MCL_FUTURE) > - def_flags = VM_LOCKED; > - current->mm->def_flags = def_flags; > + current->mm->def_flags |= VM_LOCKED; > + else > + current->mm->def_flags &= ~VM_LOCKED; > if (flags == MCL_FUTURE) > goto out; Michal sent an equivalent patch last month: http://ozlabs.org/~akpm/mmotm/broken-out/mm-make-mlockall-preserve-flags-other-than-vm_locked-in-def_flags.patch.