The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [PATCH] Minor Kexec bug fix (2.6.11-rc2-mm2)
@ 2005-02-02 13:56 Vivek Goyal
  2005-02-03  0:07 ` [Fastboot] " Randy.Dunlap
  0 siblings, 1 reply; 3+ messages in thread
From: Vivek Goyal @ 2005-02-02 13:56 UTC (permalink / raw)
  To: Andrew Morton, lkml, fastboot

[-- Attachment #1: Type: text/plain, Size: 119 bytes --]

Hi Andrew,

This patch has been generated against 2.6.11-rc2-mm2. This fixes a very
minor bug in kexec.

Thanks
Vivek


[-- Attachment #2: kexec_minor_bug_fix.patch --]
[-- Type: text/plain, Size: 796 bytes --]


This patch fixes a minor bug in kexec. Changing the data type of flags makes 
sure proper control flow of code during crash event.

Signed-off-by: Vivek Goyal <vgoyal@in.ibm.com>
---

 linux-2.6.11-rc2-mm2-kdump-vivek/include/linux/kexec.h |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

diff -puN include/linux/kexec.h~kexec_minor_bug_fix include/linux/kexec.h
--- linux-2.6.11-rc2-mm2-kdump/include/linux/kexec.h~kexec_minor_bug_fix	2005-02-02 16:28:18.000000000 +0530
+++ linux-2.6.11-rc2-mm2-kdump-vivek/include/linux/kexec.h	2005-02-02 16:29:01.000000000 +0530
@@ -79,7 +79,7 @@ struct kimage {
 	unsigned long control_page;
 
 	/* Flags to indicate special processing */
-	int type : 1;
+	unsigned int type : 1;
 #define KEXEC_TYPE_DEFAULT 0
 #define KEXEC_TYPE_CRASH   1
 };
_

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2005-02-03  1:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-02-02 13:56 [PATCH] Minor Kexec bug fix (2.6.11-rc2-mm2) Vivek Goyal
2005-02-03  0:07 ` [Fastboot] " Randy.Dunlap
2005-02-03  1:26   ` Eric W. Biederman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox