Skip to content

Commit

Permalink
From patchwork series 434734
Browse files Browse the repository at this point in the history
  • Loading branch information
Fox Snowpatch committed Nov 29, 2024
1 parent a85c72f commit b62b3b6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions arch/powerpc/xmon/xmon.c
Original file line number Diff line number Diff line change
Expand Up @@ -2623,9 +2623,9 @@ static void dump_one_paca(int cpu)

printf("paca for cpu 0x%x @ %px:\n", cpu, p);

printf(" %-*s = %s\n", 25, "possible", cpu_possible(cpu) ? "yes" : "no");
printf(" %-*s = %s\n", 25, "present", cpu_present(cpu) ? "yes" : "no");
printf(" %-*s = %s\n", 25, "online", cpu_online(cpu) ? "yes" : "no");
printf(" %-*s = %s\n", 25, "possible", str_yes_no(cpu_possible(cpu)));
printf(" %-*s = %s\n", 25, "present", str_yes_no(cpu_present(cpu)));
printf(" %-*s = %s\n", 25, "online", str_yes_no(cpu_online(cpu)));

#define DUMP(paca, name, format) \
printf(" %-*s = "format"\t(0x%lx)\n", 25, #name, 18, paca->name, \
Expand Down

0 comments on commit b62b3b6

Please sign in to comment.