[PATCH] fix depmod to handle passing 3.0 version numbers

From: Kyle McMartin
Date: Mon May 30 2011 - 09:32:41 EST


depmod with a 3.x version number passed in breaks since it's
testing for 3.x.y still, fix that.

(I can confirm it works and fixes modules.dep generation during fedora
package builds.)

Signed-off-by: Kyle McMartin <kmcmartin@xxxxxxxxxx>
---
diff --git a/depmod.c b/depmod.c
index abfb11e..853b52b 100644
--- a/depmod.c
+++ b/depmod.c
@@ -245,9 +245,16 @@ static const struct option options[] = { { "all", 0, NULL, 'a' },
/* Version number or module name? Don't assume extension. */
static int is_version_number(const char *version)
{
- unsigned int dummy;
+ int ret;
+ unsigned int major, dummy;

- return (sscanf(version, "%u.%u.%u", &dummy, &dummy, &dummy) == 3);
+ ret = sscanf(version, "%u.%u", &major, &dummy);
+ if ((major == 3) && (ret == 2))
+ return 1;
+
+ ret = sscanf(version, "%u.%u.%u", &dummy, &dummy, &dummy);
+
+ return (ret == 3);
}

static int old_module_version(const char *version)
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/