Merge branch 'master' into for-3.9-async
To receive f56c3196f2 ("async: fix
__lowest_in_progress()").
Signed-off-by: Tejun Heo <tj@kernel.org>
This commit is contained in:
+2
-2
@@ -882,7 +882,7 @@ config MEMCG_SWAP_ENABLED
|
||||
config MEMCG_KMEM
|
||||
bool "Memory Resource Controller Kernel Memory accounting (EXPERIMENTAL)"
|
||||
depends on MEMCG && EXPERIMENTAL
|
||||
default n
|
||||
depends on SLUB || SLAB
|
||||
help
|
||||
The Kernel Memory extension for Memory Resource Controller can limit
|
||||
the amount of memory used by kernel objects in the system. Those are
|
||||
@@ -1182,7 +1182,7 @@ config CC_OPTIMIZE_FOR_SIZE
|
||||
Enabling this option will pass "-Os" instead of "-O2" to gcc
|
||||
resulting in a smaller kernel.
|
||||
|
||||
If unsure, say Y.
|
||||
If unsure, say N.
|
||||
|
||||
config SYSCTL
|
||||
bool
|
||||
|
||||
@@ -36,6 +36,10 @@ __setup("noinitrd", no_initrd);
|
||||
static int init_linuxrc(struct subprocess_info *info, struct cred *new)
|
||||
{
|
||||
sys_unshare(CLONE_FS | CLONE_FILES);
|
||||
/* stdin/stdout/stderr for /linuxrc */
|
||||
sys_open("/dev/console", O_RDWR, 0);
|
||||
sys_dup(0);
|
||||
sys_dup(0);
|
||||
/* move initrd over / and chdir/chroot in initrd root */
|
||||
sys_chdir("/root");
|
||||
sys_mount(".", "/", NULL, MS_MOVE, NULL);
|
||||
|
||||
+5
-3
@@ -810,10 +810,12 @@ void __init load_default_modules(void)
|
||||
static int run_init_process(const char *init_filename)
|
||||
{
|
||||
argv_init[0] = init_filename;
|
||||
return kernel_execve(init_filename, argv_init, envp_init);
|
||||
return do_execve(init_filename,
|
||||
(const char __user *const __user *)argv_init,
|
||||
(const char __user *const __user *)envp_init);
|
||||
}
|
||||
|
||||
static void __init kernel_init_freeable(void);
|
||||
static noinline void __init kernel_init_freeable(void);
|
||||
|
||||
static int __ref kernel_init(void *unused)
|
||||
{
|
||||
@@ -856,7 +858,7 @@ static int __ref kernel_init(void *unused)
|
||||
"See Linux Documentation/init.txt for guidance.");
|
||||
}
|
||||
|
||||
static void __init kernel_init_freeable(void)
|
||||
static noinline void __init kernel_init_freeable(void)
|
||||
{
|
||||
/*
|
||||
* Wait until kthreadd is all set-up.
|
||||
|
||||
Reference in New Issue
Block a user