We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5849e7 commit 5f1f2b3Copy full SHA for 5f1f2b3
arch/x86/kernel/e820.c
@@ -877,7 +877,8 @@ void __init early_res_to_bootmem(u64 start, u64 end)
877
for (i = 0; i < MAX_EARLY_RES && early_res[i].end; i++)
878
count++;
879
880
- printk(KERN_INFO "(%d early reservations) ==> bootmem\n", count);
+ printk(KERN_INFO "(%d early reservations) ==> bootmem [%010llx - %010llx]\n",
881
+ count, start, end);
882
for (i = 0; i < count; i++) {
883
struct early_res *r = &early_res[i];
884
printk(KERN_INFO " #%d [%010llx - %010llx] %16s", i,
0 commit comments