On Thu, Feb 16, 2012 at 04:44:30PM +0530, Mahesh J Salgaonkar wrote: > +/* > + * Prepare for firmware-assisted dump. > + */ > +int __init setup_fadump(void) > +{ > + if (!fw_dump.fadump_supported) { > + printk(KERN_ERR "Firmware-assisted dump is not supported on" > + " this hardware\n"); > + return 0; > + } > + > + fadump_show_config(); > + /* Initialize the kernel dump memory structure for FAD registration. */ > + if (fw_dump.reserve_dump_area_size) > + init_fadump_mem_struct(&fdm, fw_dump.reserve_dump_area_start); > + fadump_init_files(); > + > + return 1; > +} > +subsys_initcall(setup_fadump); If I have read the code correctly, we are going to get this printk on non-pSeries machines or on older pSeries machines, even if the user has not put the fadump=on option on the kernel command line. The printk will be annoying since there is no actual error condition. It seems to me that the condition for the printk should include fw_dump.fadump_enabled. In other words you should probably add if (!fw_dump.fadump_enabled) return 0; at the beginning of the function. Paul.