mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-20 00:26:39 +08:00
[SPARC64]: Print symbol name of regs->tpc on kernel unaligned accesses.
This makes things easier to track down, especially in modules. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
f57caaefac
commit
675f740e55
@ -20,6 +20,7 @@
|
|||||||
#include <linux/smp.h>
|
#include <linux/smp.h>
|
||||||
#include <linux/smp_lock.h>
|
#include <linux/smp_lock.h>
|
||||||
#include <linux/bitops.h>
|
#include <linux/bitops.h>
|
||||||
|
#include <linux/kallsyms.h>
|
||||||
#include <asm/fpumacro.h>
|
#include <asm/fpumacro.h>
|
||||||
|
|
||||||
/* #define DEBUG_MNA */
|
/* #define DEBUG_MNA */
|
||||||
@ -291,7 +292,8 @@ asmlinkage void kernel_unaligned_trap(struct pt_regs *regs, unsigned int insn)
|
|||||||
if (count < 5) {
|
if (count < 5) {
|
||||||
last_time = jiffies;
|
last_time = jiffies;
|
||||||
count++;
|
count++;
|
||||||
printk("Kernel unaligned access at TPC[%lx]\n", regs->tpc);
|
printk("Kernel unaligned access at TPC[%lx] ", regs->tpc);
|
||||||
|
print_symbol("%s\n", regs->tpc);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!ok_for_kernel(insn) || dir == both) {
|
if (!ok_for_kernel(insn) || dir == both) {
|
||||||
|
Loading…
Reference in New Issue
Block a user