summaryrefslogtreecommitdiffstats
path: root/arch/um/kernel/process.c
diff options
context:
space:
mode:
authorAl Viro2011-08-18 21:14:10 +0200
committerRichard Weinberger2011-11-02 14:15:36 +0100
commit73395a0002aa9573ffc8d989587b79663847f705 (patch)
tree5edb92458670b6ae30c53c47179b60379922c729 /arch/um/kernel/process.c
parentum: kill system-um.h (diff)
downloadkernel-qcow2-linux-73395a0002aa9573ffc8d989587b79663847f705.tar.gz
kernel-qcow2-linux-73395a0002aa9573ffc8d989587b79663847f705.tar.xz
kernel-qcow2-linux-73395a0002aa9573ffc8d989587b79663847f705.zip
um: distribute exports to where exported stuff is defined
ksyms.c is down to the stuff defined in various USER_OBJS Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'arch/um/kernel/process.c')
-rw-r--r--arch/um/kernel/process.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/um/kernel/process.c b/arch/um/kernel/process.c
index db44142d126c..c5338351aecd 100644
--- a/arch/um/kernel/process.c
+++ b/arch/um/kernel/process.c
@@ -78,6 +78,7 @@ int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags)
&current->thread.regs, 0, NULL, NULL);
return pid;
}
+EXPORT_SYMBOL(kernel_thread);
static inline void set_current(struct task_struct *task)
{
@@ -286,6 +287,7 @@ char *uml_strdup(const char *string)
{
return kstrdup(string, GFP_KERNEL);
}
+EXPORT_SYMBOL(uml_strdup);
int copy_to_user_proc(void __user *to, void *from, int size)
{