Hi David, David Hildenbrand <david@xxxxxxxxxx> writes: > Similarly provide a custom is_kdump_kernel() implementation that will only > return "true" in kdump environments, and will do so consistently during > boot. > > Update the documentation of is_dump_available(). A small typo here: is_dump_available() -> dump_available() > @@ -587,16 +587,16 @@ int smp_store_status(int cpu) > * with sigp stop-and-store-status. The firmware or the boot-loader > * stored the registers of the boot CPU in the absolute lowcore in the > * memory of the old system. > - * 3) kdump and the old kernel did not store the CPU state, > - * or stand-alone kdump for DASD > - * condition: OLDMEM_BASE != NULL && !is_kdump_kernel() > + * 3) kdump or stand-alone kdump for DASD > + * condition: OLDMEM_BASE != NULL && !is_ipl_type_dump() == false Here is a typo in the condition, a redundant '!' before is_ipl_type_dump(). Otherwise, looks very good to me. Reviewed-by: Alexander Egorenkov <egorenar@xxxxxxxxxxxxx> Regards Alex