From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753571AbbFLVN1 (ORCPT ); Fri, 12 Jun 2015 17:13:27 -0400 Received: from mx1.redhat.com ([209.132.183.28]:47635 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753377AbbFLVNZ (ORCPT ); Fri, 12 Jun 2015 17:13:25 -0400 Date: Fri, 12 Jun 2015 23:12:20 +0200 From: Oleg Nesterov To: Ingo Molnar Cc: linux-kernel@vger.kernel.org, linux-mml@vger.kernel.org, Andy Lutomirski , Andrew Morton , Denys Vlasenko , Brian Gerst , Peter Zijlstra , Borislav Petkov , "H. Peter Anvin" , Linus Torvalds , Thomas Gleixner , Waiman Long Subject: Re: [PATCH 05/12] mm: Introduce arch_pgd_init_late() Message-ID: <20150612211220.GC18966@redhat.com> References: <1434031637-9091-1-git-send-email-mingo@kernel.org> <1434031637-9091-6-git-send-email-mingo@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1434031637-9091-6-git-send-email-mingo@kernel.org> User-Agent: Mutt/1.5.18 (2008-05-17) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 06/11, Ingo Molnar wrote: > > @@ -1592,6 +1592,22 @@ static struct task_struct *copy_process(unsigned long clone_flags, > syscall_tracepoint_update(p); > write_unlock_irq(&tasklist_lock); > > + /* > + * If we have a new PGD then initialize it: > + * > + * This method is called after a task has been made visible > + * on the task list already. > + * > + * Architectures that manage per task kernel pagetables > + * might use this callback to initialize them after they > + * are already visible to new updates. > + * > + * NOTE: any user-space parts of the PGD are already initialized > + * and must not be clobbered. > + */ > + if (p->mm != current->mm) > + arch_pgd_init_late(p->mm, p->mm->pgd); > + Cosmetic, but imo if (!(clone_flags & CLONE_VM)) arch_pgd_init_late(...); will look better and more consistent. Oleg.