[lvm-devel] [PATCH] Workaround for kernel 3.0 & uname

Milan Broz mbroz at redhat.com
Sat Jun 4 19:03:35 UTC 2011


With recent ernel 3.0 update sme distros
has uname in form "3.0-rc1".

This patch temporary workarounds uname detection
(because with the new release string libdevmapper
initialization fails.)

Signed-off-by: Milan Broz <mbroz at redhat.com>
---
 libdm/ioctl/libdm-iface.c |   13 +++++++++++--
 1 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/libdm/ioctl/libdm-iface.c b/libdm/ioctl/libdm-iface.c
index f54cf1d..02b3470 100644
--- a/libdm/ioctl/libdm-iface.c
+++ b/libdm/ioctl/libdm-iface.c
@@ -152,6 +152,7 @@ static int _uname(void)
 {
 	static int _uts_set = 0;
 	struct utsname _uts;
+	int parts;
 
 	if (_uts_set)
 		return 1;
@@ -160,10 +161,18 @@ static int _uname(void)
 		log_error("uname failed: %s", strerror(errno));
 		return 0;
 	}
-	if (sscanf(_uts.release, "%d.%d.%d",
+
+	parts = sscanf(_uts.release, "%d.%d.%d",
 			&_kernel_major,
 			&_kernel_minor,
-			&_kernel_release) != 3) {
+			&_kernel_release);
+
+	if (parts == 1 && _kernel_major >= 3) {
+		_kernel_minor = 0;
+		_kernel_release = 0;
+	} else if (parts == 2 && _kernel_major >= 3) {
+		_kernel_release = 0;
+	} else if (parts != 3) {
 		log_error("Could not determine kernel version used.");
 		return 0;
 	}
-- 
1.7.5.3




More information about the lvm-devel mailing list