Add support for NVME disks with blkext driver (#12007)
Ralph Meijer committed
Jan 20, 2022 at 10:13 UTC
db366842182507759e01db49b60d95dd7f57355c
1 file changed
+1
-1
daemon/system-info.sh
+1
-1
@@ -335,7 +335,7 @@ else
335
# These translate to the prefixs of files in `/dev` indicating the device type.
336
# They are sorted by lowest used device major number, with dynamically assigned ones at the end.
337
# We use this to look up device major numbers in `/proc/devices`
338
- device_names='hd sd mfm ad ftl pd nftl dasd intfl mmcblk ub xvd rfd vbd nvme'
338
+ device_names='hd sd mfm ad ftl pd nftl dasd intfl mmcblk ub xvd rfd vbd nvme virtblk blkext'
339
340
for name in ${device_names}; do
341
if grep -qE " ${name}\$" /proc/devices; then