The patch titled Subject: x86/efi: use proper units in efi_find_mirror() has been removed from the -mm tree. Its filename was x86-efi-use-proper-units-in-efi_find_mirror.patch This patch was dropped because it is obsolete ------------------------------------------------------ From: Andy Shevchenko <andriy.shevchenko@xxxxxxxxxxxxxxx> Subject: x86/efi: use proper units in efi_find_mirror() Like in efi_print_mmap() use the proper units when printing sizes. Currently it's hardcoded to 'MiB', though it might be changed to adaptive efi_size_format() in the future. Signed-off-by: Andy Shevchenko <andriy.shevchenko@xxxxxxxxxxxxxxx> Cc: Matt Fleming <matt@xxxxxxxxxxxxxxxxxxx> Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxxxxx> Cc: "H. Peter Anvin" <hpa@xxxxxxxxx> Cc: Rasmus Villemoes <linux@xxxxxxxxxxxxxxxxxx> Cc: Robert Elliott <elliott@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/x86/platform/efi/efi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN arch/x86/platform/efi/efi.c~x86-efi-use-proper-units-in-efi_find_mirror arch/x86/platform/efi/efi.c --- a/arch/x86/platform/efi/efi.c~x86-efi-use-proper-units-in-efi_find_mirror +++ a/arch/x86/platform/efi/efi.c @@ -144,8 +144,8 @@ void __init efi_find_mirror(void) } } if (mirror_size) - pr_info("Memory: %lldM/%lldM mirrored memory\n", - mirror_size>>20, total_size>>20); + pr_info("Memory: %lld MiB/%lld MiB mirrored memory\n", + mirror_size >> 20, total_size >> 20); } /* _ Patches currently in -mm which might be from andriy.shevchenko@xxxxxxxxxxxxxxx are lib-string-introduce-match_string-helper.patch lib-string-introduce-match_string-helper-fix.patch device-property-convert-to-use-match_string-helper.patch device-property-convert-to-use-match_string-helper-fix.patch pinctrl-convert-to-use-match_string-helper.patch drm-edid-convert-to-use-match_string-helper.patch power-charger_manager-convert-to-use-match_string-helper.patch power-ab8500-convert-to-use-match_string-helper.patch ata-hpt366-convert-to-use-match_string-helper.patch ide-hpt366-convert-to-use-match_string-helper.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html