Commit 0f20e117 authored by Christoph Hellwig's avatar Christoph Hellwig Committed by Linus Torvalds

[PATCH] unexport do_execve/do_select

These are basically shared code for native/32bit compat code, but as
CONFIG_COMPAT is a bool there's no need to export them.
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 239ff74b
......@@ -1187,8 +1187,6 @@ int do_execve(char * filename,
return retval;
}
EXPORT_SYMBOL(do_execve);
int set_binfmt(struct linux_binfmt *new)
{
struct linux_binfmt *old = current->binfmt;
......
......@@ -268,8 +268,6 @@ int do_select(int n, fd_set_bits *fds, long *timeout)
return retval;
}
EXPORT_SYMBOL(do_select);
static void *select_bits_alloc(int size)
{
return kmalloc(6 * size, GFP_KERNEL);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment