From: Yu Watanabe Date: Wed, 2 Jun 2021 10:10:49 +0000 (+0900) Subject: udev: ignore the case that the device is already removed X-Git-Tag: v249-rc1~111^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6be1feb1d7e30c0e7591121b74d4c3c7079de6b3;p=thirdparty%2Fsystemd.git udev: ignore the case that the device is already removed See #19788. --- diff --git a/src/udev/udev-builtin-blkid.c b/src/udev/udev-builtin-blkid.c index 2daafb11505..cfb74b9cf8e 100644 --- a/src/udev/udev-builtin-blkid.c +++ b/src/udev/udev-builtin-blkid.c @@ -298,8 +298,11 @@ static int builtin_blkid(sd_device *dev, int argc, char *argv[], bool test) { return log_device_debug_errno(dev, r, "Failed to get device name: %m"); fd = open(devnode, O_RDONLY|O_CLOEXEC|O_NONBLOCK); - if (fd < 0) - return log_device_debug_errno(dev, errno, "Failed to open block device %s: %m", devnode); + if (fd < 0) { + log_device_debug_errno(dev, errno, "Failed to open block device %s%s: %m", + devnode, errno == ENOENT ? ", ignoring" : ""); + return errno == ENOENT ? 0 : -errno; + } errno = 0; r = blkid_probe_set_device(pr, fd, offset, 0);