diff options
author | Kay Sievers <kay@vrfy.org> | 2013-12-18 21:16:35 +0100 |
---|---|---|
committer | Kay Sievers <kay@vrfy.org> | 2013-12-18 21:16:35 +0100 |
commit | ec76ec1fde7da753676b18ff45926740fcd08072 (patch) | |
tree | 3141147499dc2ba46aed18d4e91ab0625b9f4cee /src/libudev | |
parent | 3e8a51eae6815eb9f54a6b672ba5e1a17d0bffe9 (diff) |
bus: catch up with kdbus changes
Diffstat (limited to 'src/libudev')
-rw-r--r-- | src/libudev/libudev-monitor.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/libudev/libudev-monitor.c b/src/libudev/libudev-monitor.c index a6dba89376..e07e462af3 100644 --- a/src/libudev/libudev-monitor.c +++ b/src/libudev/libudev-monitor.c @@ -122,6 +122,14 @@ struct udev_monitor *udev_monitor_new_from_netlink_fd(struct udev *udev, const c else return NULL; + /* + * We do not support subscribing to uevents if no instance of udev + * is running. Uevents would otherwise broadcast the processing data + * of the host into containers, which is not acceptable. Containers + * will currently just not get any uevents. + */ + + udev_monitor = udev_monitor_new(udev); if (udev_monitor == NULL) return NULL; |