From: Kay Sievers Date: Thu, 19 Jul 2012 10:32:24 +0000 (+0200) Subject: udev: firmware - do not cancel requests in the initrd X-Git-Tag: debian/247.3-7+deb11u1~2386^2^2~2579 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=39177382a4f92a834b568d6ae5d750eb2a5a86f9;p=systemd.git udev: firmware - do not cancel requests in the initrd --- diff --git a/src/udev/udev-builtin-firmware.c b/src/udev/udev-builtin-firmware.c index 56dc8fcaa..de93d7b34 100644 --- a/src/udev/udev-builtin-firmware.c +++ b/src/udev/udev-builtin-firmware.c @@ -129,7 +129,13 @@ static int builtin_firmware(struct udev_device *dev, int argc, char *argv[], boo err = -errno; } while (err == -ENOENT); rc = EXIT_FAILURE; - set_loading(udev, loadpath, "-1"); + /* + * Do not cancel the request in the initrd, the real root might have + * the firmware file and the 'coldplug' run in the real root will find + * this pending request and fulfill or cancel it. + * */ + if (!in_initrd()) + set_loading(udev, loadpath, "-1"); goto exit; }