kdump kernel tried to load modules not included in the kdump initrd?

2012-01-18 Thread Jay Lan
Hi, I have a 2.6.32-131.6.1.el6 kernel, and kexec-tools-2.0.0-145.el6.x86_64 rpm on a cent6 machine. When i forced a kdump by 'echo c > /proc/sysrq-trigger', the kdump kernel panicked during the boot. Surprisingly, it tried to load lustre modules that should not be part of the initrd and panicke

Re: [PATCH v1 0/3][makedumpfile]Add support for PPC32

2012-01-18 Thread Atsushi Kumagai
Hi Suzuki, On Wed, 18 Jan 2012 15:37:49 +0530 "Suzuki K. Poulose" wrote: > The following series implements makedumpfile support for PPC32. > > The implementation is heavily based on PPC64. This also introduces > cross build support which is required for Embedded PPC Boards. > > --- > > Suzuki

kdump kernel tried to load modules not included in the kdump initrd?

2012-01-18 Thread Jay Lan
Hi, I have a 2.6.32-131.6.1.el6 kernel, and kexec-tools-2.0.0-145.el6.x86_64 rpm on a cent6 machine. When i forced a kdump by 'echo c > /proc/sysrq-trigger', the kdump kernel panicked during the boot. Surprisingly, it tried to load lustre modules that should not be part of the initrd and panicke

Re: makedumpfile can't build on Fedora 16

2012-01-18 Thread Cong Wang
On 01/18/2012 08:40 AM, Ken'ichi Ohmichi wrote: > > Hi, > > On Wed, 18 Jan 2012 08:35:24 +0800 > Wen Congyang wrote: >> At 01/18/2012 12:36 AM, Cong Wang Wrote: >>> Hello, Atsushi, >>> >>> I can't build the latest makedumpfile on Fedora 16, >>> >>> [wangcong@cr0]~/makedumpfile% make >>> ... >>>

[PATCH v1 2/3][makedumpfile][ppc64] Rename the __powerpc__ macro to __powerpc64__ for PPC64

2012-01-18 Thread Suzuki K. Poulose
Makedumpfile uses __powerpc__ as the value of ARCH to control the PPC64 specfic definitions. Rename this to __powerpc64__ for a better readability of the code as the support for ppc32 will be introduced in the later series. We could use __powerpc32__ for PPC32. Signed-off-by: Suzuki Poulose ---

[PATCH v1 3/3] [makedumpfile] Add support for PPC32

2012-01-18 Thread Suzuki K. Poulose
Mostly a copy of ppc64 with renaming to _ppc variants. Signed-off-by: Suzuki K. Poulose --- Makefile | 11 -- arch/ppc.c | 101 makedumpfile.c |4 +- makedumpfile.h | 24 - 4 files changed, 133 insertion

[PATCH v1 1/3] [makedumpfile] Support for cross building

2012-01-18 Thread Suzuki K. Poulose
Support cross building of makedumpfile. This would be useful for building the makedumpfile for embedded PPC boards. Support for PPC32 would be added in the later patches. Use TARGET variable to set the arch to build for. Also honour the value of CC if set. Signed-off-by: Suzuki K. Poulose ---

[PATCH v1 0/3][makedumpfile]Add support for PPC32

2012-01-18 Thread Suzuki K. Poulose
The following series implements makedumpfile support for PPC32. The implementation is heavily based on PPC64. This also introduces cross build support which is required for Embedded PPC Boards. --- Suzuki K. Poulose (3): [makedumpfile] Add support for PPC32 [ppc64] Rename the __power