提交 c8f8cca4 编写于 作者: A Ard Biesheuvel 提交者: Will Deacon

arm64: ptdump: use static initializers for vmemmap region boundaries

There is no need to initialize the vmemmap region boundaries dynamically,
since they are compile time constants. So just add these constants to the
global struct initializer, and drop the dynamic assignment and related code.
Acked-by: NMark Rutland <mark.rutland@arm.com>
Signed-off-by: NArd Biesheuvel <ard.biesheuvel@linaro.org>
Signed-off-by: NWill Deacon <will.deacon@arm.com>
上级 1dff8083
...@@ -32,37 +32,21 @@ struct addr_marker { ...@@ -32,37 +32,21 @@ struct addr_marker {
const char *name; const char *name;
}; };
enum address_markers_idx { static const struct addr_marker address_markers[] = {
MODULES_START_NR = 0, { MODULES_VADDR, "Modules start" },
MODULES_END_NR, { MODULES_END, "Modules end" },
VMALLOC_START_NR, { VMALLOC_START, "vmalloc() Area" },
VMALLOC_END_NR, { VMALLOC_END, "vmalloc() End" },
FIXADDR_START_NR, { FIXADDR_START, "Fixmap start" },
FIXADDR_END_NR, { FIXADDR_TOP, "Fixmap end" },
PCI_START_NR, { PCI_IO_START, "PCI I/O start" },
PCI_END_NR, { PCI_IO_END, "PCI I/O end" },
#ifdef CONFIG_SPARSEMEM_VMEMMAP #ifdef CONFIG_SPARSEMEM_VMEMMAP
VMEMMAP_START_NR, { VMEMMAP_START, "vmemmap start" },
VMEMMAP_END_NR, { VMEMMAP_START + VMEMMAP_SIZE, "vmemmap end" },
#endif #endif
KERNEL_SPACE_NR, { PAGE_OFFSET, "Linear Mapping" },
}; { -1, NULL },
static struct addr_marker address_markers[] = {
{ MODULES_VADDR, "Modules start" },
{ MODULES_END, "Modules end" },
{ VMALLOC_START, "vmalloc() Area" },
{ VMALLOC_END, "vmalloc() End" },
{ FIXADDR_START, "Fixmap start" },
{ FIXADDR_TOP, "Fixmap end" },
{ PCI_IO_START, "PCI I/O start" },
{ PCI_IO_END, "PCI I/O end" },
#ifdef CONFIG_SPARSEMEM_VMEMMAP
{ 0, "vmemmap start" },
{ 0, "vmemmap end" },
#endif
{ PAGE_OFFSET, "Linear Mapping" },
{ -1, NULL },
}; };
/* /*
...@@ -347,13 +331,6 @@ static int ptdump_init(void) ...@@ -347,13 +331,6 @@ static int ptdump_init(void)
for (j = 0; j < pg_level[i].num; j++) for (j = 0; j < pg_level[i].num; j++)
pg_level[i].mask |= pg_level[i].bits[j].mask; pg_level[i].mask |= pg_level[i].bits[j].mask;
#ifdef CONFIG_SPARSEMEM_VMEMMAP
address_markers[VMEMMAP_START_NR].start_address =
(unsigned long)virt_to_page(PAGE_OFFSET);
address_markers[VMEMMAP_END_NR].start_address =
(unsigned long)virt_to_page(high_memory);
#endif
pe = debugfs_create_file("kernel_page_tables", 0400, NULL, NULL, pe = debugfs_create_file("kernel_page_tables", 0400, NULL, NULL,
&ptdump_fops); &ptdump_fops);
return pe ? 0 : -ENOMEM; return pe ? 0 : -ENOMEM;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册