Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'efi-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull EFI fix from Thomas Gleixner:
"Downgrade the missing ESRT header printk to warning level and remove a
useless error printk which just generates noise for no value"

* 'efi-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
efi/esrt: Cleanup bad memory map log messages

+1 -2
-1
drivers/firmware/efi/efi.c
··· 389 389 return 0; 390 390 } 391 391 } 392 - pr_err_once("requested map not found.\n"); 393 392 return -ENOENT; 394 393 } 395 394
+1 -1
drivers/firmware/efi/esrt.c
··· 254 254 255 255 rc = efi_mem_desc_lookup(efi.esrt, &md); 256 256 if (rc < 0) { 257 - pr_err("ESRT header is not in the memory map.\n"); 257 + pr_warn("ESRT header is not in the memory map.\n"); 258 258 return; 259 259 } 260 260