Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932187Ab1CMUZW (ORCPT ); Sun, 13 Mar 2011 16:25:22 -0400 Received: from mout.perfora.net ([74.208.4.194]:49152 "EHLO mout.perfora.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932083Ab1CMUZS (ORCPT ); Sun, 13 Mar 2011 16:25:18 -0400 From: Stephen Wilson To: Andrew Morton , Alexander Viro Cc: Thomas Gleixner , Ingo Molnar , "H. Peter Anvin" , Michel Lespinasse , Andi Kleen , Rik van Riel , KOSAKI Motohiro , Matt Mackall , David Rientjes , Nick Piggin , Andrea Arcangeli , Mel Gorman , Hugh Dickins , x86@kernel.org, linux-mm@kvack.org, linux-kernel@vger.kernel.org, Stephen Wilson Subject: [PATCH 08/12] mm: implement access_remote_vm Date: Sun, 13 Mar 2011 15:49:20 -0400 Message-Id: <1300045764-24168-9-git-send-email-wilsons@start.ca> X-Mailer: git-send-email 1.7.3.5 In-Reply-To: <1300045764-24168-1-git-send-email-wilsons@start.ca> References: <1300045764-24168-1-git-send-email-wilsons@start.ca> X-Provags-ID: V02:K0:YhpxUSWchY40D0ArQ2ZUTQsFiS5VWqTdPbSGyzfC/kt 52/A0xvPudnv66CLfdNkvUlwSlGiPoG+T3iGHJgwKYGL0oUNOw kHm1fjMbYILefdnkz/a5Twrtlgk8GZDB6e2UHs33qb1qOp4pG9 59GytjiY+z9saa6/sjCcfDqxXRX5UcJfuPklKPZ3HfpiQk4gLp Uug9XGhfX+aT7hJoc3RX64NMC3svW/18N0QGXBTzso= Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2002 Lines: 57 Provide an alternative to access_process_vm that allows the caller to obtain a reference to the supplied mm_struct. Signed-off-by: Stephen Wilson --- include/linux/mm.h | 2 ++ mm/memory.c | 16 ++++++++++++++++ 2 files changed, 18 insertions(+), 0 deletions(-) diff --git a/include/linux/mm.h b/include/linux/mm.h index 694512d..e5fde8a 100644 --- a/include/linux/mm.h +++ b/include/linux/mm.h @@ -964,6 +964,8 @@ static inline int handle_mm_fault(struct mm_struct *mm, extern int make_pages_present(unsigned long addr, unsigned long end); extern int access_process_vm(struct task_struct *tsk, unsigned long addr, void *buf, int len, int write); +extern int access_remote_vm(struct mm_struct *mm, unsigned long addr, + void *buf, int len, int write); int get_user_pages(struct task_struct *tsk, struct mm_struct *mm, unsigned long start, int nr_pages, int write, int force, diff --git a/mm/memory.c b/mm/memory.c index 68eec4f..c26e4f9 100644 --- a/mm/memory.c +++ b/mm/memory.c @@ -3654,6 +3654,22 @@ static int __access_remote_vm(struct task_struct *tsk, struct mm_struct *mm, return buf - old_buf; } +/** + * @access_remote_vm - access another process' address space + * @mm: the mm_struct of the target address space + * @addr: start address to access + * @buf: source or destination buffer + * @len: number of bytes to transfer + * @write: whether the access is a write + * + * The caller must hold a reference on @mm. + */ +int access_remote_vm(struct mm_struct *mm, unsigned long addr, + void *buf, int len, int write) +{ + return __access_remote_vm(NULL, mm, addr, buf, len, write); +} + /* * Access another process' address space. * Source/target buffer must be kernel space, -- 1.7.3.5 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/