aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Whitcroft <apw@canonical.com>2011-01-06 18:42:23 +0000
committerJohn Rigby <john.rigby@linaro.org>2012-06-20 14:33:45 -0600
commit1ca5d1cb4e76bb8a6c9c28f5f416264caba89a59 (patch)
tree4afe5ef74fff4c074f6be6b997ae6aeb8145b7f0
parent9b76529e00ea38272378e720526c20f137cae434 (diff)
UBUNTU: SAUCE: ensure root is ready before running usermodehelpers in it
Signed-off-by: Andy Whitcroft <apw@canonical.com>
-rw-r--r--include/linux/init.h2
-rw-r--r--include/linux/kmod.h4
-rw-r--r--init/initramfs.c7
-rw-r--r--init/main.c2
4 files changed, 12 insertions, 3 deletions
diff --git a/include/linux/init.h b/include/linux/init.h
index ad021e87d5a..bc7379f6625 100644
--- a/include/linux/init.h
+++ b/include/linux/init.h
@@ -224,8 +224,6 @@ extern bool initcall_debug;
static initcall_t __initcall_##fn \
__used __section(.security_initcall.init) = fn
-extern struct list_head populate_rootfs_domain;
-
struct obs_kernel_param {
const char *str;
int (*setup_func)(char *);
diff --git a/include/linux/kmod.h b/include/linux/kmod.h
index dd99c329e16..37f497b8912 100644
--- a/include/linux/kmod.h
+++ b/include/linux/kmod.h
@@ -83,6 +83,8 @@ int call_usermodehelper_exec(struct subprocess_info *info, int wait);
to call call_usermodehelper_exec */
void call_usermodehelper_freeinfo(struct subprocess_info *info);
+void populate_rootfs_wait(void);
+
static inline int
call_usermodehelper_fns(char *path, char **argv, char **envp, int wait,
int (*init)(struct subprocess_info *info, struct cred *new),
@@ -91,6 +93,8 @@ call_usermodehelper_fns(char *path, char **argv, char **envp, int wait,
struct subprocess_info *info;
gfp_t gfp_mask = (wait == UMH_NO_WAIT) ? GFP_ATOMIC : GFP_KERNEL;
+ populate_rootfs_wait();
+
info = call_usermodehelper_setup(path, argv, envp, gfp_mask);
if (info == NULL)
diff --git a/init/initramfs.c b/init/initramfs.c
index 91312f76e1c..b33d6aee82f 100644
--- a/init/initramfs.c
+++ b/init/initramfs.c
@@ -9,6 +9,7 @@
#include <linux/syscalls.h>
#include <linux/utime.h>
#include <linux/async.h>
+#include <linux/export.h>
static __initdata char *message;
static void __init error(char *x)
@@ -572,6 +573,12 @@ static void __init clean_rootfs(void)
LIST_HEAD(populate_rootfs_domain);
+void populate_rootfs_wait(void)
+{
+ async_synchronize_full_domain(&populate_rootfs_domain);
+}
+EXPORT_SYMBOL(populate_rootfs_wait);
+
static void __init async_populate_rootfs(void)
{
char *err = unpack_to_rootfs(__initramfs_start, __initramfs_size);
diff --git a/init/main.c b/init/main.c
index 89895a7dcf7..f75e7804525 100644
--- a/init/main.c
+++ b/init/main.c
@@ -892,7 +892,7 @@ static int __init kernel_init(void * unused)
* We need to ensure that the filesystem is ready by this point, wait for
* async_populate_rootfs to complete.
*/
- async_synchronize_full_domain(&populate_rootfs_domain);
+ populate_rootfs_wait();
/*
* check if there is an early userspace init. If yes, let it do all