Hi,

udev 220 arrived in Debian sid and this update broke bcache support [1]: no /dev/disk/by-uuid/ symlink is being created for the filesystem on top of /dev/bcache*. That's because 60-persistent-storage now uses a whitelist instead of blacklist. The simple attached patch fixes this, could you please apply it?

Thanks,
~David

[1]: http://bugs.debian.org/787367
--- lib/udev/rules.d/60-persistent-storage.rules.orig   2015-05-31 
13:30:08.327444638 -0600
+++ lib/udev/rules.d/60-persistent-storage.rules        2015-05-31 
13:30:14.799448929 -0600
@@ -6,7 +6,7 @@
 ACTION=="remove", GOTO="persistent_storage_end"
 
 SUBSYSTEM!="block", GOTO="persistent_storage_end"
-KERNEL!="loop*|mmcblk*[0-9]|msblk*[0-9]|mspblk*[0-9]|nvme*|sd*|sr*|vd*", 
GOTO="persistent_storage_end"
+KERNEL!="loop*|mmcblk*[0-9]|msblk*[0-9]|mspblk*[0-9]|nvme*|sd*|sr*|vd*|bcache*",
 GOTO="persistent_storage_end"
 
 # ignore partitions that span the entire disk
 TEST=="whole_disk", GOTO="persistent_storage_end"
_______________________________________________
systemd-devel mailing list
systemd-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/systemd-devel

Reply via email to