mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
x86/dumpstack: Add loglevel argument to show_opcodes()
Will be used in the next patch. Signed-off-by: Borislav Petkov <bp@suse.de> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Josh Poimboeuf <jpoimboe@redhat.com> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Andy Lutomirski <luto@amacapital.net> Link: https://lkml.kernel.org/r/20180417161124.5294-6-bp@alien8.de
This commit is contained in:
parent
9e4a90fd34
commit
e8b6f98451
2 changed files with 4 additions and 3 deletions
|
@ -70,14 +70,14 @@ static void printk_stack_address(unsigned long address, int reliable,
|
|||
printk("%s %s%pB\n", log_lvl, reliable ? "" : "? ", (void *)address);
|
||||
}
|
||||
|
||||
static void show_opcodes(u8 *rip)
|
||||
void show_opcodes(u8 *rip, const char *loglvl)
|
||||
{
|
||||
unsigned int code_prologue = OPCODE_BUFSIZE * 2 / 3;
|
||||
u8 opcodes[OPCODE_BUFSIZE];
|
||||
u8 *ip;
|
||||
int i;
|
||||
|
||||
printk(KERN_DEFAULT "Code: ");
|
||||
printk("%sCode: ", loglvl);
|
||||
|
||||
ip = (u8 *)rip - code_prologue;
|
||||
if (probe_kernel_read(opcodes, ip, OPCODE_BUFSIZE)) {
|
||||
|
@ -401,6 +401,6 @@ void show_regs(struct pt_regs *regs)
|
|||
if (regs->ip < PAGE_OFFSET)
|
||||
printk(KERN_DEFAULT "Code: Bad RIP value.\n");
|
||||
else
|
||||
show_opcodes((u8 *)regs->ip);
|
||||
show_opcodes((u8 *)regs->ip, KERN_DEFAULT);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue