From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from sc8-sf-mx1-b.sourceforge.net ([10.3.1.91] helo=mail.sourceforge.net) by sc8-sf-list1-new.sourceforge.net with esmtp (Exim 4.43) id 1JCj7X-00055r-72 for user-mode-linux-devel@lists.sourceforge.net; Wed, 09 Jan 2008 14:09:59 -0800 Received: from saraswathi.solana.com ([198.99.130.12]) by mail.sourceforge.net with esmtps (TLSv1:AES256-SHA:256) (Exim 4.44) id 1JCj7W-0007x5-GF for user-mode-linux-devel@lists.sourceforge.net; Wed, 09 Jan 2008 14:09:59 -0800 Received: from c2.user-mode-linux.org (littleton.addtoit.com [198.99.130.129]) by saraswathi.solana.com (8.13.1/8.13.1) with ESMTP id m09M9ss9000411 for ; Wed, 9 Jan 2008 17:09:54 -0500 Received: from c2.user-mode-linux.org (localhost.localdomain [127.0.0.1]) by c2.user-mode-linux.org (8.14.1/8.13.8) with ESMTP id m09M9sOO009329 for ; Wed, 9 Jan 2008 17:09:54 -0500 Date: Wed, 9 Jan 2008 17:09:54 -0500 From: Jeff Dike Message-ID: <20080109220954.GA9134@c2.user-mode-linux.org> Mime-Version: 1.0 Content-Disposition: inline Subject: [uml-devel] [RFC PATCH 8/9] SKAS4 - rename new_mm List-Id: The user-mode Linux development list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: user-mode-linux-devel-bounces@lists.sourceforge.net Errors-To: user-mode-linux-devel-bounces@lists.sourceforge.net To: uml-devel UML already had a new_mm(). This is renamed to make_new_mm(). Index: linux-2.6-skas4/arch/um/include/skas/skas.h =================================================================== --- linux-2.6-skas4.orig/arch/um/include/skas/skas.h 2008-01-09 16:22:13.000000000 -0500 +++ linux-2.6-skas4/arch/um/include/skas/skas.h 2008-01-09 16:22:57.000000000 -0500 @@ -15,7 +15,7 @@ extern int skas_needs_stub; extern int user_thread(unsigned long stack, int flags); extern void new_thread_handler(void); extern void handle_syscall(struct uml_pt_regs *regs); -extern int new_mm(unsigned long stack); +extern int make_new_mm(unsigned long stack); extern void get_skas_faultinfo(int pid, struct faultinfo * fi); extern long execute_syscall_skas(void *r); extern unsigned long current_stub_stack(void); Index: linux-2.6-skas4/arch/um/kernel/skas/mmu.c =================================================================== --- linux-2.6-skas4.orig/arch/um/kernel/skas/mmu.c 2008-01-09 16:22:13.000000000 -0500 +++ linux-2.6-skas4/arch/um/kernel/skas/mmu.c 2008-01-09 16:24:05.000000000 -0500 @@ -101,7 +101,7 @@ int init_new_context(struct task_struct from_mm = ¤t->mm->context; if (proc_mm) { - ret = new_mm(stack); + ret = make_new_mm(stack); if (ret < 0) { printk(KERN_ERR "init_new_context_skas - " "new_mm failed, errno = %d\n", ret); Index: linux-2.6-skas4/arch/um/kernel/skas/process.c =================================================================== --- linux-2.6-skas4.orig/arch/um/kernel/skas/process.c 2008-01-09 16:22:13.000000000 -0500 +++ linux-2.6-skas4/arch/um/kernel/skas/process.c 2008-01-09 16:24:05.000000000 -0500 @@ -9,7 +9,7 @@ #include "os.h" #include "skas.h" -int new_mm(unsigned long stack) +int make_new_mm(unsigned long stack) { int fd; Index: linux-2.6-skas4/arch/um/sys-i386/ldt.c =================================================================== --- linux-2.6-skas4.orig/arch/um/sys-i386/ldt.c 2008-01-09 16:22:13.000000000 -0500 +++ linux-2.6-skas4/arch/um/sys-i386/ldt.c 2008-01-09 16:24:05.000000000 -0500 @@ -436,7 +436,7 @@ long init_new_ldt(struct mm_context *new /* * We have a valid from_mm, so we now have to copy the LDT of * from_mm to new_mm, because using proc_mm an new mm with - * an empty/default LDT was created in new_mm() + * an empty/default LDT was created in make_new_mm() */ copy = ((struct proc_mm_op) { .op = MM_COPY_SEGMENTS, .u = ------------------------------------------------------------------------- Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open Source. http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace _______________________________________________ User-mode-linux-devel mailing list User-mode-linux-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel