diff options
author | Joe Perches <joe@perches.com> | 2012-02-28 16:08:02 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-02-28 16:08:02 -0500 |
commit | e9b57cca3dbdc7a0b90514af8bf613baf97105a5 (patch) | |
tree | 48b8ff9e570226c3ffafc3738de48f0d6c2cb057 /arch/sparc | |
parent | b4096504c2b6945c41eae99f85f4ec64ac19bfce (diff) |
sparc: Use vsprintf extention %pf with builtin_return_address
Emit the function name not the address when possible.
builtin_return_address() gives an address. When building
a kernel with CONFIG_KALLSYMS, emit the actual function
name not the address.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc')
-rw-r--r-- | arch/sparc/kernel/ds.c | 2 | ||||
-rw-r--r-- | arch/sparc/mm/srmmu.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/sparc/kernel/ds.c b/arch/sparc/kernel/ds.c index 381edcd5bc29..e65b9fc52b49 100644 --- a/arch/sparc/kernel/ds.c +++ b/arch/sparc/kernel/ds.c | |||
@@ -868,7 +868,7 @@ void ldom_power_off(void) | |||
868 | 868 | ||
869 | static void ds_conn_reset(struct ds_info *dp) | 869 | static void ds_conn_reset(struct ds_info *dp) |
870 | { | 870 | { |
871 | printk(KERN_ERR "ds-%llu: ds_conn_reset() from %p\n", | 871 | printk(KERN_ERR "ds-%llu: ds_conn_reset() from %pf\n", |
872 | dp->id, __builtin_return_address(0)); | 872 | dp->id, __builtin_return_address(0)); |
873 | } | 873 | } |
874 | 874 | ||
diff --git a/arch/sparc/mm/srmmu.c b/arch/sparc/mm/srmmu.c index cbef74e793b8..f37fbb24458b 100644 --- a/arch/sparc/mm/srmmu.c +++ b/arch/sparc/mm/srmmu.c | |||
@@ -705,7 +705,7 @@ static void swift_update_mmu_cache(struct vm_area_struct * vma, unsigned long ad | |||
705 | val = srmmu_hwprobe(address); | 705 | val = srmmu_hwprobe(address); |
706 | if (val != 0 && pte_val(*ptep) != val) { | 706 | if (val != 0 && pte_val(*ptep) != val) { |
707 | printk("swift_update_mmu_cache: " | 707 | printk("swift_update_mmu_cache: " |
708 | "addr %lx put %08x probed %08x from %p\n", | 708 | "addr %lx put %08x probed %08x from %pf\n", |
709 | address, pte_val(*ptep), val, | 709 | address, pte_val(*ptep), val, |
710 | __builtin_return_address(0)); | 710 | __builtin_return_address(0)); |
711 | srmmu_flush_whole_tlb(); | 711 | srmmu_flush_whole_tlb(); |