9fc3254595
- Update of patch 0001-detect-s390-virt.patch (bnc#880438) - Shut up stupid check scripts crying for not mentioned systemd-mini-rpmlintrc - Add upstream patchs 0001-core-use-correct-format-string-for-UIDs.patch 0002-core-transaction-fix-cycle-break-attempts-outside-tr.patch 0003-fsck-consider-a-fsck-implementation-linked-to-bin-tr.patch - Add upstream patch 0001-units-order-network-online.target-after-network.targ.patch to make sure that etwork-online.target follows network.target - rules: re-enable dev_id conditionally in persistent rules (bnc#884403 and bnc#882714). Add 1040-re-enable-dev_id-conditionally-in-persistent-rules.patch - Add upstream patches 0001-vconsole-also-copy-character-maps-not-just-fonts-fro.patch 0002-core-make-sure-Environment-fields-passed-in-for-tran.patch 0003-core-You-can-not-put-the-cached-result-of-use_smack-.patch 0004-cryptsetup-don-t-add-unit-dependency-on-dev-null-dev.patch 0005-man-fix-path-in-crypttab-5.patch - Add upstream patch 1039-udevadm-settle-fixed-return-code-for-empty-queue.patch it fixes udevadm settle exit code which may had roken dracut scripts (bnc#884271 comment#18) - Temporary disable patch 1022 (bnc#884271 and bnc#882714). OBS-URL: https://build.opensuse.org/request/show/238853 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemd?expand=0&rev=190
86 lines
3.3 KiB
Diff
86 lines
3.3 KiB
Diff
From edd32000c806e4527c5f376d138f7bff07724c26 Mon Sep 17 00:00:00 2001
|
|
From: Kay Sievers <kay@vrfy.org>
|
|
Date: Wed, 4 Jun 2014 11:05:45 +0200
|
|
Subject: [PATCH] udevd: inotify - modernizations
|
|
|
|
Signed-off-by: Robert Milasan <rmilasan@suse.com>
|
|
---
|
|
src/udev/udevd.c | 45 ++++++++++++++++++++++-----------------------
|
|
1 file changed, 22 insertions(+), 23 deletions(-)
|
|
|
|
Index: systemd-210/src/udev/udevd.c
|
|
===================================================================
|
|
--- systemd-210.orig/src/udev/udevd.c
|
|
+++ systemd-210/src/udev/udevd.c
|
|
@@ -736,20 +736,30 @@ out:
|
|
return udev_ctrl_connection_unref(ctrl_conn);
|
|
}
|
|
|
|
+static void synthesize_change(struct udev_device *dev) {
|
|
+ char filename[UTIL_PATH_SIZE];
|
|
+
|
|
+ log_debug("device %s closed, synthesising 'change'", udev_device_get_devnode(dev));
|
|
+ strscpyl(filename, sizeof(filename), udev_device_get_syspath(dev), "/uevent", NULL);
|
|
+ write_string_file(filename, "change");
|
|
+}
|
|
+
|
|
/* read inotify messages */
|
|
static int handle_inotify(struct udev *udev)
|
|
{
|
|
int nbytes, pos;
|
|
char *buf;
|
|
struct inotify_event *ev;
|
|
+ int r;
|
|
|
|
- if ((ioctl(fd_inotify, FIONREAD, &nbytes) < 0) || (nbytes <= 0))
|
|
- return 0;
|
|
+ r = ioctl(fd_inotify, FIONREAD, &nbytes);
|
|
+ if (r < 0 || nbytes <= 0)
|
|
+ return -errno;
|
|
|
|
buf = malloc(nbytes);
|
|
- if (buf == NULL) {
|
|
+ if (!buf) {
|
|
log_error("error getting buffer for inotify");
|
|
- return -1;
|
|
+ return -ENOMEM;
|
|
}
|
|
|
|
nbytes = read(fd_inotify, buf, nbytes);
|
|
@@ -759,27 +769,16 @@ static int handle_inotify(struct udev *u
|
|
|
|
ev = (struct inotify_event *)(buf + pos);
|
|
dev = udev_watch_lookup(udev, ev->wd);
|
|
- if (dev != NULL) {
|
|
- log_debug("inotify event: %x for %s", ev->mask, udev_device_get_devnode(dev));
|
|
- if (ev->mask & IN_CLOSE_WRITE) {
|
|
- char filename[UTIL_PATH_SIZE];
|
|
- int fd;
|
|
-
|
|
- log_debug("device %s closed, synthesising 'change'", udev_device_get_devnode(dev));
|
|
- strscpyl(filename, sizeof(filename), udev_device_get_syspath(dev), "/uevent", NULL);
|
|
- fd = open(filename, O_WRONLY|O_CLOEXEC);
|
|
- if (fd >= 0) {
|
|
- if (write(fd, "change", 6) < 0)
|
|
- log_debug("error writing uevent: %m");
|
|
- close(fd);
|
|
- }
|
|
- }
|
|
- if (ev->mask & IN_IGNORED)
|
|
- udev_watch_end(udev, dev);
|
|
+ if (!dev)
|
|
+ continue;
|
|
|
|
- udev_device_unref(dev);
|
|
- }
|
|
+ log_debug("inotify event: %x for %s", ev->mask, udev_device_get_devnode(dev));
|
|
+ if (ev->mask & IN_CLOSE_WRITE)
|
|
+ synthesize_change(dev);
|
|
+ else if (ev->mask & IN_IGNORED)
|
|
+ udev_watch_end(udev, dev);
|
|
|
|
+ udev_device_unref(dev);
|
|
}
|
|
|
|
free(buf);
|