From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qk0-f180.google.com (mail-qk0-f180.google.com [209.85.220.180]) by kanga.kvack.org (Postfix) with ESMTP id 811886B0256 for ; Mon, 29 Feb 2016 12:23:43 -0500 (EST) Received: by mail-qk0-f180.google.com with SMTP id o6so59107668qkc.2 for ; Mon, 29 Feb 2016 09:23:43 -0800 (PST) Date: Mon, 29 Feb 2016 18:23:34 +0100 From: Oleg Nesterov Subject: Re: [PATCH 13/18] exec: make exec path waiting for mmap_sem killable Message-ID: <20160229172333.GB3615@redhat.com> References: <1456752417-9626-1-git-send-email-mhocko@kernel.org> <1456752417-9626-14-git-send-email-mhocko@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1456752417-9626-14-git-send-email-mhocko@kernel.org> Sender: owner-linux-mm@kvack.org List-ID: To: Michal Hocko Cc: LKML , Andrew Morton , linux-mm@kvack.org, Alex Deucher , Alex Thorlton , Andrea Arcangeli , Andy Lutomirski , Benjamin LaHaise , Christian =?iso-8859-1?Q?K=F6nig?= , Daniel Vetter , Dave Hansen , David Airlie , Davidlohr Bueso , David Rientjes , "H . Peter Anvin" , Hugh Dickins , Ingo Molnar , Johannes Weiner , "Kirill A . Shutemov" , Konstantin Khlebnikov , linux-arch@vger.kernel.org, Mel Gorman , Peter Zijlstra , Petr Cermak , Thomas Gleixner , Michal Hocko , Alexander Viro On 02/29, Michal Hocko wrote: > > @@ -267,7 +267,10 @@ static int __bprm_mm_init(struct linux_binprm *bprm) > if (!vma) > return -ENOMEM; > > - down_write(&mm->mmap_sem); > + if (down_write_killable(&mm->mmap_sem)) { > + err = -EINTR; > + goto err_free; > + } > vma->vm_mm = mm; I won't argue, but this looks unnecessary. Nobody else can see this new mm, down_write() can't block. In fact I think we can just remove down_write/up_write here. Except perhaps there is lockdep_assert_held() somewhere in these paths. Oleg. -- 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