From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pl0-f70.google.com (mail-pl0-f70.google.com [209.85.160.70]) by kanga.kvack.org (Postfix) with ESMTP id F08BF6B02AC for ; Sun, 4 Feb 2018 20:29:45 -0500 (EST) Received: by mail-pl0-f70.google.com with SMTP id 36so9981143plb.18 for ; Sun, 04 Feb 2018 17:29:45 -0800 (PST) Received: from mx2.suse.de (mx2.suse.de. [195.135.220.15]) by mx.google.com with ESMTPS id b2si4856594pgr.434.2018.02.04.17.28.06 for (version=TLS1 cipher=AES128-SHA bits=128/128); Sun, 04 Feb 2018 17:28:06 -0800 (PST) From: Davidlohr Bueso Subject: [PATCH 46/64] arch/metag: use mm locking wrappers Date: Mon, 5 Feb 2018 02:27:36 +0100 Message-Id: <20180205012754.23615-47-dbueso@wotan.suse.de> In-Reply-To: <20180205012754.23615-1-dbueso@wotan.suse.de> References: <20180205012754.23615-1-dbueso@wotan.suse.de> Sender: owner-linux-mm@kvack.org List-ID: To: akpm@linux-foundation.org, mingo@kernel.org Cc: peterz@infradead.org, ldufour@linux.vnet.ibm.com, jack@suse.cz, mhocko@kernel.org, kirill.shutemov@linux.intel.com, mawilcox@microsoft.com, mgorman@techsingularity.net, dave@stgolabs.net, linux-mm@kvack.org, linux-kernel@vger.kernel.org, Davidlohr Bueso From: Davidlohr Bueso This becomes quite straightforward with the mmrange in place. Signed-off-by: Davidlohr Bueso --- arch/metag/mm/fault.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/arch/metag/mm/fault.c b/arch/metag/mm/fault.c index e16ba0ea7ea1..47ab10069fde 100644 --- a/arch/metag/mm/fault.c +++ b/arch/metag/mm/fault.c @@ -114,7 +114,7 @@ int do_page_fault(struct pt_regs *regs, unsigned long address, if (user_mode(regs)) flags |= FAULT_FLAG_USER; retry: - down_read(&mm->mmap_sem); + mm_read_lock(mm, &mmrange); vma = find_vma_prev(mm, address, &prev_vma); @@ -169,7 +169,7 @@ int do_page_fault(struct pt_regs *regs, unsigned long address, } } - up_read(&mm->mmap_sem); + mm_read_unlock(mm, &mmrange); return 0; check_expansion: @@ -178,7 +178,7 @@ int do_page_fault(struct pt_regs *regs, unsigned long address, goto good_area; bad_area: - up_read(&mm->mmap_sem); + mm_read_unlock(mm, &mmrange); bad_area_nosemaphore: if (user_mode(regs)) { @@ -206,7 +206,7 @@ int do_page_fault(struct pt_regs *regs, unsigned long address, goto no_context; do_sigbus: - up_read(&mm->mmap_sem); + mm_read_unlock(mm, &mmrange); /* * Send a sigbus, regardless of whether we were in kernel @@ -230,7 +230,7 @@ int do_page_fault(struct pt_regs *regs, unsigned long address, * us unable to handle the page fault gracefully. */ out_of_memory: - up_read(&mm->mmap_sem); + mm_read_unlock(mm, &mmrange); if (user_mode(regs)) { pagefault_out_of_memory(); return 1; -- 2.13.6 -- 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