mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 18:30:55 +07:00
lmb: Make lmb debugging more useful.
Having to muck with the build and set DEBUG just to get lmb_dump_all() to print things isn't very useful. So use pr_info() and use an early boot param "lmb=debug" so we can simply ask users to reboot with this option when we need some debugging from them. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
4978db5bd9
commit
faa6cfde74
33
lib/lmb.c
33
lib/lmb.c
@ -19,31 +19,42 @@
|
|||||||
|
|
||||||
struct lmb lmb;
|
struct lmb lmb;
|
||||||
|
|
||||||
|
static int lmb_debug;
|
||||||
|
|
||||||
|
static int __init early_lmb(char *p)
|
||||||
|
{
|
||||||
|
if (p && strstr(p, "debug"))
|
||||||
|
lmb_debug = 1;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
early_param("lmb", early_lmb);
|
||||||
|
|
||||||
void lmb_dump_all(void)
|
void lmb_dump_all(void)
|
||||||
{
|
{
|
||||||
#ifdef DEBUG
|
|
||||||
unsigned long i;
|
unsigned long i;
|
||||||
|
|
||||||
pr_debug("lmb_dump_all:\n");
|
if (!lmb_debug)
|
||||||
pr_debug(" memory.cnt = 0x%lx\n", lmb.memory.cnt);
|
return;
|
||||||
pr_debug(" memory.size = 0x%llx\n",
|
|
||||||
|
pr_info("lmb_dump_all:\n");
|
||||||
|
pr_info(" memory.cnt = 0x%lx\n", lmb.memory.cnt);
|
||||||
|
pr_info(" memory.size = 0x%llx\n",
|
||||||
(unsigned long long)lmb.memory.size);
|
(unsigned long long)lmb.memory.size);
|
||||||
for (i=0; i < lmb.memory.cnt ;i++) {
|
for (i=0; i < lmb.memory.cnt ;i++) {
|
||||||
pr_debug(" memory.region[0x%x].base = 0x%llx\n",
|
pr_info(" memory.region[0x%lx].base = 0x%llx\n",
|
||||||
i, (unsigned long long)lmb.memory.region[i].base);
|
i, (unsigned long long)lmb.memory.region[i].base);
|
||||||
pr_debug(" .size = 0x%llx\n",
|
pr_info(" .size = 0x%llx\n",
|
||||||
(unsigned long long)lmb.memory.region[i].size);
|
(unsigned long long)lmb.memory.region[i].size);
|
||||||
}
|
}
|
||||||
|
|
||||||
pr_debug(" reserved.cnt = 0x%lx\n", lmb.reserved.cnt);
|
pr_info(" reserved.cnt = 0x%lx\n", lmb.reserved.cnt);
|
||||||
pr_debug(" reserved.size = 0x%lx\n", lmb.reserved.size);
|
pr_info(" reserved.size = 0x%lx\n", lmb.reserved.size);
|
||||||
for (i=0; i < lmb.reserved.cnt ;i++) {
|
for (i=0; i < lmb.reserved.cnt ;i++) {
|
||||||
pr_debug(" reserved.region[0x%x].base = 0x%llx\n",
|
pr_info(" reserved.region[0x%lx].base = 0x%llx\n",
|
||||||
i, (unsigned long long)lmb.reserved.region[i].base);
|
i, (unsigned long long)lmb.reserved.region[i].base);
|
||||||
pr_debug(" .size = 0x%llx\n",
|
pr_info(" .size = 0x%llx\n",
|
||||||
(unsigned long long)lmb.reserved.region[i].size);
|
(unsigned long long)lmb.reserved.region[i].size);
|
||||||
}
|
}
|
||||||
#endif /* DEBUG */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static unsigned long lmb_addrs_overlap(u64 base1, u64 size1, u64 base2,
|
static unsigned long lmb_addrs_overlap(u64 base1, u64 size1, u64 base2,
|
||||||
|
Loading…
Reference in New Issue
Block a user