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.

Fix acpi_find_rsdp() - acpi_scan_rsdp takes length, not end

Noticed by Jakub Jermar <jermar@itbs.cz>

+1 -1
+1 -1
arch/i386/kernel/acpi/boot.c
··· 650 650 */ 651 651 rsdp_phys = acpi_scan_rsdp (0, 0x400); 652 652 if (!rsdp_phys) 653 - rsdp_phys = acpi_scan_rsdp (0xE0000, 0xFFFFF); 653 + rsdp_phys = acpi_scan_rsdp (0xE0000, 0x20000); 654 654 655 655 return rsdp_phys; 656 656 }