Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 292507
b: refs/heads/master
c: 7ac21cd
h: refs/heads/master
i:
  292505: 79eee95
  292503: 46aa238
v: v3
  • Loading branch information
Benjamin Herrenschmidt committed Mar 8, 2012
1 parent ab6576a commit 893d533
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9be72573a80648866ed0045db22d97c6e160a540
refs/heads/master: 7ac21cd465391802d931bd5e692302639383b8f5
7 changes: 4 additions & 3 deletions trunk/arch/powerpc/xmon/xmon.c
Original file line number Diff line number Diff line change
Expand Up @@ -1437,7 +1437,8 @@ static void excprint(struct pt_regs *fp)

printf(" current = 0x%lx\n", current);
#ifdef CONFIG_PPC64
printf(" paca = 0x%lx\n", get_paca());
printf(" paca = 0x%lx\t softe: %d\t harde: %d\n",
local_paca, local_paca->soft_enabled, local_paca->hard_enabled);
#endif
if (current) {
printf(" pid = %ld, comm = %s\n",
Expand Down Expand Up @@ -1641,7 +1642,7 @@ static void super_regs(void)

/* Dump out relevant Paca data areas. */
printf("Paca: \n");
ptrPaca = get_paca();
ptrPaca = local_paca;

printf(" Local Processor Control Area (LpPaca): \n");
ptrLpPaca = ptrPaca->lppaca_ptr;
Expand Down Expand Up @@ -2644,7 +2645,7 @@ static void dump_slb(void)
static void dump_stab(void)
{
int i;
unsigned long *tmp = (unsigned long *)get_paca()->stab_addr;
unsigned long *tmp = (unsigned long *)local_paca->stab_addr;

printf("Segment table contents of cpu %x\n", smp_processor_id());

Expand Down

0 comments on commit 893d533

Please sign in to comment.