]> code.ossystems Code Review - openembedded-core.git/commit
initramfs-framework/udev: call settle before kill
authorAnuj Mittal <anuj.mittal@intel.com>
Wed, 19 Sep 2018 08:08:46 +0000 (16:08 +0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 19 Sep 2018 13:39:16 +0000 (06:39 -0700)
commita85c34d263fcf1542bbedcaf1634302466bb20cf
tree4c5dd7edf886ffa371acb8ce21529e3637b75d68
parent7a7b29f5f1392f4f87af4f20cda99c66b4789fde
initramfs-framework/udev: call settle before kill

When mount command is executed in rootfs module of initrd, eudev creates
a loop0 device node, applies rules and adds a inotify watch to it. Right
after this step, we execute finish which first tries to kill any running
udevd daemon before doing a switch_root.

In some cases, it is possible that switch_root is executed before
inotify_add_watch was actually processed which would lead to errors like:

| inotify_add_watch(6, /dev/loop0, 10) failed: No such file or directory

Make sure that we process all the events in queue before actually trying
to kill udevd to prevent this race.

Fixes [YOCTO #12861]

Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-core/initrdscripts/initramfs-framework/udev