summaryrefslogtreecommitdiff
path: root/rules
diff options
context:
space:
mode:
authorJóhann B. Guðmundsson <johannbg@gmail.com>2014-02-02 13:29:19 +0000
committerAnthony G. Basile <blueness@gentoo.org>2014-02-09 08:14:56 -0500
commit96d6c22b3b8f82891658ed47436a3234a1c6b986 (patch)
tree79246b9554248d1b3c24e5a94b1b225b930776e3 /rules
parent8fe035158681d0324ff2be99a67bc0434da6faad (diff)
udev: add zram to the list of devices inappropriate for symlinks
udev seems to have a race condition with swapon to see which can open /dev/zram0 first, causing swapon to fail. Seems to be most noticeable on arm devices one out of every 7 times or something. Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'rules')
-rw-r--r--rules/60-persistent-storage.rules2
1 files changed, 1 insertions, 1 deletions
diff --git a/rules/60-persistent-storage.rules b/rules/60-persistent-storage.rules
index a4d009ae6e..154ffd92ce 100644
--- a/rules/60-persistent-storage.rules
+++ b/rules/60-persistent-storage.rules
@@ -14,7 +14,7 @@ ACTION=="add", SUBSYSTEM=="module", KERNEL=="block", ATTR{parameters/events_dfl_
SUBSYSTEM!="block", GOTO="persistent_storage_end"
# skip rules for inappropriate block devices
-KERNEL=="fd*|mtd*|nbd*|gnbd*|btibm*|dm-*|md*", GOTO="persistent_storage_end"
+KERNEL=="fd*|mtd*|nbd*|gnbd*|btibm*|dm-*|md*|zram*", GOTO="persistent_storage_end"
# ignore partitions that span the entire disk
TEST=="whole_disk", GOTO="persistent_storage_end"