Here's a proposal patch.
Description: Typo in error msg when no crashkernel memory reservation is set Fix typo in the ERRMSG of function show_mem_usage, where the word "kernel" has been spelled by mistake like this "kenrel". Author: Eric Desrochers <eric.desroch...@canonical.com> Bug: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=857051 --- a/makedumpfile.c +++ b/makedumpfile.c @@ -10938,7 +10938,7 @@ struct cycle cycle = {0}; if (!is_crashkernel_mem_reserved()) { - ERRMSG("No memory is reserved for crashkenrel!\n"); + ERRMSG("No memory is reserved for crashkernel!\n"); return FALSE; }