[PATCH] makedumpfile: works on 2.6.32
Cliff Wickman
cpw at sgi.com
Wed Jun 16 09:51:12 EDT 2010
LATEST_VERSION is updated to KERNEL_VERSION(2, 6, 32), as this seems to
work on 2.6.32 and prevents a makedumpfile grumbling.
Tested on SGI UV, which is x86_64.
Diffed against makedumpfile-1.3.5
Signed-off-by: Cliff Wickman <cpw at sgi.com>
---
makedumpfile.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: makedumpfile-1.3.5/makedumpfile.h
===================================================================
--- makedumpfile-1.3.5.orig/makedumpfile.h
+++ makedumpfile-1.3.5/makedumpfile.h
@@ -449,7 +449,7 @@ do { \
#define KVER_MIN_SHIFT 16
#define KERNEL_VERSION(x,y,z) (((x) << KVER_MAJ_SHIFT) | ((y) << KVER_MIN_SHIFT) | (z))
#define OLDEST_VERSION KERNEL_VERSION(2, 6, 15)/* linux-2.6.15 */
-#define LATEST_VERSION KERNEL_VERSION(2, 6, 31)/* linux-2.6.31 */
+#define LATEST_VERSION KERNEL_VERSION(2, 6, 32)/* linux-2.6.32 */
/*
* vmcoreinfo in /proc/vmcore
More information about the kexec
mailing list