]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
udev/rules: add by-path and by-ibdev links to infiniband verbs
authorLubomir Rintel <lkundrak@v3.sk>
Thu, 13 Oct 2022 11:49:22 +0000 (13:49 +0200)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Fri, 14 Oct 2022 03:18:08 +0000 (12:18 +0900)
The uverbs devices are sequentially numbered and are not guarranteed to
stay stable across reboot.

At least one good person was disappointed by this, because they couldn't
find their device: https://bugzilla.redhat.com/show_bug.cgi?id=2036515

Let's add a few helpful links.

rules.d/60-infiniband.rules [new file with mode: 0644]

diff --git a/rules.d/60-infiniband.rules b/rules.d/60-infiniband.rules
new file mode 100644 (file)
index 0000000..da3eea6
--- /dev/null
@@ -0,0 +1,12 @@
+# do not edit this file, it will be overwritten on update
+
+ACTION=="remove", GOTO="infiniband_end"
+SUBSYSTEM!="infiniband_verbs", GOTO="infiniband_end"
+KERNEL!="uverbs*", GOTO="infiniband_end"
+
+IMPORT{builtin}="path_id"
+
+ENV{ID_PATH}=="?*", SYMLINK+="infiniband/by-path/$env{ID_PATH}"
+ATTR{ibdev}=="?*", SYMLINK+="infiniband/by-ibdev/uverbs-$attr{ibdev}"
+
+LABEL="infiniband_end"