From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753994Ab2APKGb (ORCPT ); Mon, 16 Jan 2012 05:06:31 -0500 Received: from cam-admin0.cambridge.arm.com ([217.140.96.50]:40757 "EHLO cam-admin0.cambridge.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751896Ab2APKGa (ORCPT ); Mon, 16 Jan 2012 05:06:30 -0500 Date: Mon, 16 Jan 2012 10:06:00 +0000 From: Will Deacon To: Nicolas Pitre Cc: Hugh Dickins , "linux-kernel@vger.kernel.org" , "linux-mm@kvack.org" , "linux-arm-kernel@lists.infradead.org" , "moussaba@micron.com" , David Rientjes , Andrew Morton , Russell King - ARM Linux Subject: Re: [RFC PATCH] proc: clear_refs: do not clear reserved pages Message-ID: <20120116100600.GA9068@mudshark.cambridge.arm.com> References: <1326467587-22218-1-git-send-email-will.deacon@arm.com> <20120115150706.GA7474@mudshark.cambridge.arm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Jan 16, 2012 at 04:19:43AM +0000, Nicolas Pitre wrote: > On Sun, 15 Jan 2012, Will Deacon wrote: > > Something like what I've got below seems to do the trick, and clear_refs > > also seems to behave when it's presented with the gate_vma. If Russell is > > happy with the approach, we can move to the gate_vma in the future. > > I like it much better, although I haven't tested it fully yet. > > However your patch is missing the worst of the current ARM hack I would > be glad to see go as follows: > > diff --git a/arch/arm/include/asm/mmu_context.h b/arch/arm/include/asm/mmu_context.h > index 71605d9f8e..876e545297 100644 > --- a/arch/arm/include/asm/mmu_context.h > +++ b/arch/arm/include/asm/mmu_context.h > @@ -18,6 +18,7 @@ > #include > #include > #include > +#include > > void __check_kvm_seq(struct mm_struct *mm); > > @@ -133,32 +135,4 @@ switch_mm(struct mm_struct *prev, struct mm_struct *next, > #define deactivate_mm(tsk,mm) do { } while (0) > #define activate_mm(prev,next) switch_mm(prev, next, NULL) > > -/* > - * We are inserting a "fake" vma for the user-accessible vector page so > - * gdb and friends can get to it through ptrace and /proc//mem. > - * But we also want to remove it before the generic code gets to see it > - * during process exit or the unmapping of it would cause total havoc. > - * (the macro is used as remove_vma() is static to mm/mmap.c) > - */ > -#define arch_exit_mmap(mm) \ > -do { \ > - struct vm_area_struct *high_vma = find_vma(mm, 0xffff0000); \ > - if (high_vma) { \ > - BUG_ON(high_vma->vm_next); /* it should be last */ \ > - if (high_vma->vm_prev) \ > - high_vma->vm_prev->vm_next = NULL; \ > - else \ > - mm->mmap = NULL; \ > - rb_erase(&high_vma->vm_rb, &mm->mm_rb); \ > - mm->mmap_cache = NULL; \ > - mm->map_count--; \ > - remove_vma(high_vma); \ > - } \ > -} while (0) > - > -static inline void arch_dup_mmap(struct mm_struct *oldmm, > - struct mm_struct *mm) > -{ > -} > - > #endif Nice, I missed those hunks! I'm more than happy to include this for v2 (which I'll just post to the ARM list). I'll also give this some testing on the boards that I have. Thanks, Will