[PATCH] kexec -p fails on kernel versions of form x.y
Khalid Aziz
khalid at gonehiking.org
Thu Jul 25 18:21:09 EDT 2013
"kexec -p" fails to load kernels with version of the form x.y instead of
x.y.z with an error message similar to "Unsupported utsname.release:
3.10-1-amd64". Code in kernel_version() also checks the wrong variable
name for error return value from strtoul() for "minor" and "patch", and
hence possibly missing a real error.
These changes fix both of these problems.
Signed-off-by: Khalid Aziz <khalid at gonehiking.org>
---
kexec/kernel_version.c | 21 ++++++++++-----------
1 file changed, 10 insertions(+), 11 deletions(-)
diff --git a/kexec/kernel_version.c b/kexec/kernel_version.c
index 079312b..21fb13a 100644
--- a/kexec/kernel_version.c
+++ b/kexec/kernel_version.c
@@ -31,21 +31,20 @@ long kernel_version(void)
}
minor = strtoul(p, &p, 10);
- if (major == ULONG_MAX) {
+ if (minor == ULONG_MAX) {
fprintf(stderr, "strtoul failed: %s\n", strerror(errno));
return -1;
}
- if (*p++ != '.') {
- fprintf(stderr, "Unsupported utsname.release: %s\n",
- utsname.release);
- return -1;
- }
-
- patch = strtoul(p, &p, 10);
- if (major == ULONG_MAX) {
- fprintf(stderr, "strtoul failed: %s\n", strerror(errno));
- return -1;
+ /* There may or may not be a patch level for this kernel */
+ if (*p++ == '.') {
+ patch = strtoul(p, &p, 10);
+ if (patch == ULONG_MAX) {
+ fprintf(stderr, "strtoul failed: %s\n",strerror(errno));
+ return -1;
+ }
+ } else {
+ patch = 0;
}
if (major >= 256 || minor >= 256 || patch >= 256) {
--
1.8.3.2
More information about the kexec
mailing list