X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=init%2Fdo_mounts_initrd.c;h=fd4fc12d262464b0b763e2e0fb5dd1781f2a3b70;hb=cc1bf182bb8451a036a7c227f0a95a0416c4736e;hp=2cfd7cb36e7963bee6987c826c39a3411459666d;hpb=0a01707b289853f56d1c000057b27e243c039722;p=linux-2.6 diff --git a/init/do_mounts_initrd.c b/init/do_mounts_initrd.c index 2cfd7cb36e..fd4fc12d26 100644 --- a/init/do_mounts_initrd.c +++ b/init/do_mounts_initrd.c @@ -55,12 +55,12 @@ static void __init handle_initrd(void) sys_mount(".", "/", NULL, MS_MOVE, NULL); sys_chroot("."); - current->flags |= PF_NOFREEZE; pid = kernel_thread(do_linuxrc, "/linuxrc", SIGCHLD); - if (pid > 0) { - while (pid != sys_wait4(-1, NULL, 0, NULL)) + if (pid > 0) + while (pid != sys_wait4(-1, NULL, 0, NULL)) { + try_to_freeze(); yield(); - } + } /* move initrd to rootfs' /old */ sys_fchdir(old_fd);