Package: udev Version: 0.114-2 Severity: normal Tags: patch Unfortunately the patch that I included in the report for bug #427993 that added handling of the rdma_ucm module's misc device had a typo in the rules. Although the module name is rdma_ucm, the device that is created has
KERNEL=="rdma_cm" as its name, so the udev rules need to use rdma_cm instead of rdma_ucm. I'm including a patch to fix this. Sorry for the screwup, and I promise I did not hand-edit this patch after testing it! diff -Naur udev-0.114.orig/debian/patches/rules udev-0.114/debian/patches/rules --- udev-0.114.orig/debian/patches/rules 2007-11-02 14:02:16.000000000 -0700 +++ udev-0.114/debian/patches/rules 2007-11-02 14:08:34.000000000 -0700 @@ -30,7 +30,7 @@ KERNEL=="issm*", NAME="infiniband/%k" KERNEL=="uverbs*", NAME="infiniband/%k" KERNEL=="ucm*", NAME="infiniband/%k" -+KERNEL=="rdma_ucm", NAME="infiniband/%k" ++KERNEL=="rdma_cm", NAME="infiniband/%k" # sound devices KERNEL=="controlC[0-9]*", NAME="snd/%k" @@ -115,7 +115,7 @@ KERNEL=="uverbs*", GROUP="rdma" KERNEL=="ucm*", GROUP="rdma" -+KERNEL=="rdma_ucm", GROUP="rdma" ++KERNEL=="rdma_cm", GROUP="rdma" # printers and parallel devices SUBSYSTEM=="printer", GROUP="lp" @@ -295,7 +295,7 @@ KERNEL=="issm*", NAME="infiniband/%k" KERNEL=="uverbs*", NAME="infiniband/%k" KERNEL=="ucm*", NAME="infiniband/%k" -+KERNEL=="rdma_ucm", NAME="infiniband/%k" ++KERNEL=="rdma_cm", NAME="infiniband/%k" # ALSA devices KERNEL=="controlC[0-9]*", NAME="snd/%k" -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]