[Bug 779718] New: udev complains about rules files from libdlm and ocfs2-tools; ocfs2 in pacemaker not usable
https://bugzilla.novell.com/show_bug.cgi?id=779718 https://bugzilla.novell.com/show_bug.cgi?id=779718#c0 Summary: udev complains about rules files from libdlm and ocfs2-tools; ocfs2 in pacemaker not usable Classification: openSUSE Product: openSUSE 12.2 Version: Final Platform: x86-64 OS/Version: openSUSE 12.2 Status: NEW Severity: Major Priority: P5 - None Component: Kernel AssignedTo: kernel-maintainers@forge.provo.novell.com ReportedBy: steffen.hau@rz.uni-mannheim.de QAContact: qa-bugs@suse.de Found By: --- Blocker: --- Created an attachment (id=505191) --> (http://bugzilla.novell.com/attachment.cgi?id=505191) pacemaker start syslog User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:15.0) Gecko/20100101 Firefox/15.0 udev is complaining about the rules files provided by libdlm-3.00.01-22.3.2.x86_64 and ocfs2-tools-1.8.0-9.1.3.x86_64. In detail: Sep 7 18:06:43 www-v78 udevd[437]: NAME="misc/dlm-control" ignored, kernel device nodes can not be renamed; please fix it in /etc/udev/rules.d/51-dlm.rules:1 Sep 7 18:06:43 www-v78 udevd[439]: NAME="misc/dlm-monitor" ignored, kernel device nodes can not be renamed; please fix it in /etc/udev/rules.d/51-dlm.rules:2 Sep 7 18:06:43 www-v78 udevd[3705]: NAME="misc/%k" ignored, kernel device nodes can not be renamed; please fix it in /etc/udev/rules.d/51-dlm.rules:4 Sep 7 18:06:44 www-v78 udevd[437]: NAME="misc/ocfs2_control" ignored, kernel device nodes can not be renamed; please fix it in /etc/udev/rules.d/51-ocfs2.rules:1 This leads to pacemaker beeing not able to start ocf:pacemaker:controld and ocf:ocfs2:o2cb: Sep 7 18:06:53 www-v78 cluster-dlm: find_udev_device: cannot find device /dev/misc/dlm-control with minor 58 You can find the detailed log of an unsuccessful pacemaker start attached. I worked around the issue by changing the NAME variable in the rules files to SYMLINK, but i don't know wether this was the right way. Reproducible: Always Steps to Reproduce: 1. Install pacemaker and create resources for dlm, o2cb and ocfs2 2. Start the pacemaker stack 3. Actual Results: OCFS2 filesystem is not mounted Expected Results: OCFS2 filesystem is mounted Extract of syslog from pacemaker start and the attempts to start the ocfs2 stuff -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=779718 https://bugzilla.novell.com/show_bug.cgi?id=779718#c1 Boris Wesslowski <bw@inside-security.de> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bw@inside-security.de Component|Kernel |Kernel Product|openSUSE 12.2 |openSUSE 12.3 --- Comment #1 from Boris Wesslowski <bw@inside-security.de> 2013-04-24 16:06:30 UTC --- This bug also exists in openSUSE 12.3: 2013-04-24T10:56:55.259624+02:00 labarbara systemd-udevd[2474]: NAME="misc/dlm-control" ignored, kernel device nodes can not be renamed; please fix it in /etc/udev/rules.d/51-dlm.rules:1 2013-04-24T10:56:55.261295+02:00 labarbara systemd-udevd[2474]: NAME="misc/dlm-monitor" ignored, kernel device nodes can not be renamed; please fix it in /etc/udev/rules.d/51-dlm.rules:2 2013-04-24T10:56:55.263262+02:00 labarbara systemd-udevd[2474]: NAME="misc/%k" ignored, kernel device nodes can not be renamed; please fix it in /etc/udev/rules.d/51-dlm.rules:4 2013-04-24T10:56:56.520731+02:00 labarbara systemd-udevd[2474]: NAME="misc/ocfs2_control" ignored, kernel device nodes can not be renamed; please fix it in /etc/udev/rules.d/51-ocfs2.rules:1 -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=779718 https://bugzilla.novell.com/show_bug.cgi?id=779718#c Boris Wesslowski <bw@inside-security.de> changed: What |Removed |Added ---------------------------------------------------------------------------- OS/Version|openSUSE 12.2 |openSUSE 12.3 -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=779718 https://bugzilla.novell.com/show_bug.cgi?id=779718#c2 Tim Serong <tserong@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED CC| |jjzhang@suse.com, | |rgoldwyn@suse.com AssignedTo|kernel-maintainers@forge.pr |tserong@suse.com |ovo.novell.com | --- Comment #2 from Tim Serong <tserong@suse.com> 2013-05-27 11:26:14 UTC --- The following two patches fix this: Index: libdlm/dlm/libdlm/51-dlm.rules =================================================================== --- libdlm.orig/dlm/libdlm/51-dlm.rules +++ libdlm/dlm/libdlm/51-dlm.rules @@ -1,5 +1,5 @@ -KERNEL=="dlm-control", NAME="misc/dlm-control", MODE="0666" -KERNEL=="dlm-monitor", NAME="misc/dlm-monitor", MODE="0666" -KERNEL=="dlm_default", NAME="misc/dlm_default", MODE="0666" -KERNEL=="dlm_*", NAME="misc/%k", MODE="0660" +KERNEL=="dlm-control", SYMLINK+="misc/dlm-control", MODE="0666" +KERNEL=="dlm-monitor", SYMLINK+="misc/dlm-monitor", MODE="0666" +KERNEL=="dlm_default", SYMLINK+="misc/dlm_default", MODE="0666" +KERNEL=="dlm_*", SYMLINK+="misc/%k", MODE="0660" Index: ocfs2-tools-1.8.2+git.1361836695.ff84eb5/vendor/common/51-ocfs2.rules =================================================================== --- ocfs2-tools-1.8.2+git.1361836695.ff84eb5.orig/vendor/common/51-ocfs2.rules +++ ocfs2-tools-1.8.2+git.1361836695.ff84eb5/vendor/common/51-ocfs2.rules @@ -1,2 +1,2 @@ -KERNEL=="ocfs2_control", NAME="misc/ocfs2_control", MODE="0660" +KERNEL=="ocfs2_control", SYMLINK+="misc/ocfs2_control", MODE="0660" I'll submit these for 12.2 and 12.3 maintenance momentarily. I've also got these fixes in libdlm and ocfs2-tools in network:ha-clustering:Factory, but those have not yet been submitted to openSUSE:Factory (I'm not sure if these or similar patches are already upstream or not - if they are, we might be better just pulling the latest upstream libdlm and ocfs2-tools into Factory). -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=779718 https://bugzilla.novell.com/show_bug.cgi?id=779718#c3 --- Comment #3 from Bernhard Wiedemann <bwiedemann@suse.com> 2013-05-27 14:00:07 CEST --- This is an autogenerated message for OBS integration: This bug (779718) was mentioned in https://build.opensuse.org/request/show/176731 Maintenance / https://build.opensuse.org/request/show/176732 Maintenance / https://build.opensuse.org/request/show/176733 Maintenance / https://build.opensuse.org/request/show/176734 Maintenance / -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=779718 https://bugzilla.novell.com/show_bug.cgi?id=779718#c4 Benjamin Brunner <bbrunner@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED --- Comment #4 from Benjamin Brunner <bbrunner@suse.com> 2013-06-03 05:00:48 CEST --- Update released for libdlm and ocfs2-tools on openSUSE 12.2 and 12.3. Resolved fixed. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=779718 https://bugzilla.novell.com/show_bug.cgi?id=779718#c5 --- Comment #5 from Swamp Workflow Management <swamp@suse.de> 2013-06-03 03:05:00 UTC --- openSUSE-RU-2013:0853-1: An update that has one recommended fix can now be installed. Category: recommended (low) Bug References: 779718 CVE References: Sources used: openSUSE 12.2 (src): libdlm-3.00.01-22.6.1, ocfs2-tools-1.8.0-9.4.1 -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=779718 https://bugzilla.novell.com/show_bug.cgi?id=779718#c6 --- Comment #6 from Swamp Workflow Management <swamp@suse.de> 2013-06-10 10:19:39 UTC --- openSUSE-RU-2013:0956-1: An update that has one recommended fix can now be installed. Category: recommended (low) Bug References: 779718 CVE References: Sources used: openSUSE 12.3 (src): libdlm-3.00.01-25.5.1, ocfs2-tools-1.8.2-4.4.1 -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
participants (1)
-
bugzilla_noreply@novell.com