You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.6 KiB
36 lines
1.6 KiB
From d913c83db4d3271a400173dfee55078335055e86 Mon Sep 17 00:00:00 2001 |
|
From: Ming Lin <minggr@gmail.com> |
|
Date: Fri, 29 Apr 2016 04:02:57 -0700 |
|
Subject: [PATCH] rules: add NVMe rules (#3136) |
|
|
|
Add NVMe rules using the "wwid" attribute. |
|
|
|
root@target:~# cat /sys/block/nvme0n1/wwid |
|
eui.3825004235000591 |
|
|
|
root@target:~# ls /dev/disk/by-id/ -l |grep nvme |
|
lrwxrwxrwx 1 root root 13 Apr 27 16:08 nvme-eui.3825004235000591 -> ../../nvme0n1 |
|
lrwxrwxrwx 1 root root 15 Apr 27 16:08 nvme-eui.3825004235000591-part1 -> ../../nvme0n1p1 |
|
lrwxrwxrwx 1 root root 15 Apr 27 16:08 nvme-eui.3825004235000591-part2 -> ../../nvme0n1p2 |
|
|
|
Cherry-picked from: 427a28ecbe0eb170e651e0530ab58d6e6f6c498c |
|
Resolves: #1274651 |
|
--- |
|
rules/60-persistent-storage.rules | 4 ++++ |
|
1 file changed, 4 insertions(+) |
|
|
|
diff --git a/rules/60-persistent-storage.rules b/rules/60-persistent-storage.rules |
|
index 71ab97484..cc01acb16 100644 |
|
--- a/rules/60-persistent-storage.rules |
|
+++ b/rules/60-persistent-storage.rules |
|
@@ -22,6 +22,10 @@ TEST=="whole_disk", GOTO="persistent_storage_end" |
|
# for partitions import parent information |
|
ENV{DEVTYPE}=="partition", IMPORT{parent}="ID_*" |
|
|
|
+# NVMe |
|
+KERNEL=="nvme*[0-9]n*[0-9]", ATTR{wwid}=="?*", SYMLINK+="disk/by-id/nvme-$attr{wwid}" |
|
+KERNEL=="nvme*[0-9]n*[0-9]p*[0-9]", ENV{DEVTYPE}=="partition", ATTRS{wwid}=="?*", SYMLINK+="disk/by-id/nvme-$attr{wwid}-part%n" |
|
+ |
|
# virtio-blk |
|
KERNEL=="vd*[!0-9]", ATTRS{serial}=="?*", ENV{ID_SERIAL}="$attr{serial}", SYMLINK+="disk/by-id/virtio-$env{ID_SERIAL}" |
|
KERNEL=="vd*[0-9]", ATTRS{serial}=="?*", ENV{ID_SERIAL}="$attr{serial}", SYMLINK+="disk/by-id/virtio-$env{ID_SERIAL}-part%n"
|
|
|