mirror of
https://github.com/adulau/aha.git
synced 2024-12-29 12:16:20 +00:00
Blackfin: don't give CPU its own line in traps output
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
parent
4b60779d5e
commit
13a1320cf5
1 changed files with 3 additions and 3 deletions
|
@ -976,12 +976,12 @@ void dump_bfin_process(struct pt_regs *fp)
|
||||||
!((unsigned long)current & 0x3) && current->pid) {
|
!((unsigned long)current & 0x3) && current->pid) {
|
||||||
verbose_printk(KERN_NOTICE "CURRENT PROCESS:\n");
|
verbose_printk(KERN_NOTICE "CURRENT PROCESS:\n");
|
||||||
if (current->comm >= (char *)FIXED_CODE_START)
|
if (current->comm >= (char *)FIXED_CODE_START)
|
||||||
verbose_printk(KERN_NOTICE "COMM=%s PID=%d\n",
|
verbose_printk(KERN_NOTICE "COMM=%s PID=%d",
|
||||||
current->comm, current->pid);
|
current->comm, current->pid);
|
||||||
else
|
else
|
||||||
verbose_printk(KERN_NOTICE "COMM= invalid\n");
|
verbose_printk(KERN_NOTICE "COMM= invalid");
|
||||||
|
|
||||||
printk(KERN_NOTICE "CPU = %d\n", current_thread_info()->cpu);
|
printk(KERN_CONT " CPU=%d\n", current_thread_info()->cpu);
|
||||||
if (!((unsigned long)current->mm & 0x3) && (unsigned long)current->mm >= FIXED_CODE_START)
|
if (!((unsigned long)current->mm & 0x3) && (unsigned long)current->mm >= FIXED_CODE_START)
|
||||||
verbose_printk(KERN_NOTICE
|
verbose_printk(KERN_NOTICE
|
||||||
"TEXT = 0x%p-0x%p DATA = 0x%p-0x%p\n"
|
"TEXT = 0x%p-0x%p DATA = 0x%p-0x%p\n"
|
||||||
|
|
Loading…
Reference in a new issue