systemd/backport-udev-ignore-ENOENT-when-chmod_and_chown-device-node.patch
2023-12-06 16:52:45 +08:00

28 lines
986 B
Diff

From 4b613ec212bfd06fd9d9487bd37b0791fa6dff9e Mon Sep 17 00:00:00 2001
From: Yu Watanabe <watanabe.yu+github@gmail.com>
Date: Tue, 12 Nov 2019 14:57:48 +0900
Subject: [PATCH] udev: ignore ENOENT when chmod_and_chown() device node
Reference: https://github.com/systemd/systemd/commit/4b613ec212bfd06fd9d9487bd37b0791fa6dff9e
Conflict: NA
---
src/udev/udev-rules.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/udev/udev-rules.c b/src/udev/udev-rules.c
index ab54067b3f..92eb136e69 100644
--- a/src/udev/udev-rules.c
+++ b/src/udev/udev-rules.c
@@ -2333,6 +2333,8 @@ static int apply_static_dev_perms(const char *devnode, uid_t uid, gid_t gid, mod
gid = 0;
r = chmod_and_chown(device_node, mode, uid, gid);
+ if (r == -ENOENT)
+ return 0;
if (r < 0)
return log_error_errno(errno, "Failed to chown '%s' %u %u: %m",
device_node, uid, gid);
--
2.23.0