Skip to content

Commit

Permalink
s390/perf: Remove print_hex_dump_bytes() debug output
Browse files Browse the repository at this point in the history
Signed-off-by: Hendrik Brueckner <[email protected]>
Signed-off-by: Heiko Carstens <[email protected]>
  • Loading branch information
hbrueckner authored and heicarst committed Sep 4, 2013
1 parent 3b459c5 commit ae6834c
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions arch/s390/kernel/perf_event.c
Original file line number Diff line number Diff line change
Expand Up @@ -105,13 +105,10 @@ void perf_event_print_debug(void)

cpu = smp_processor_id();
memset(&cf_info, 0, sizeof(cf_info));
if (!qctri(&cf_info)) {
if (!qctri(&cf_info))
pr_info("CPU[%i] CPUM_CF: ver=%u.%u A=%04x E=%04x C=%04x\n",
cpu, cf_info.cfvn, cf_info.csvn,
cf_info.auth_ctl, cf_info.enable_ctl, cf_info.act_ctl);
print_hex_dump_bytes("CPUMF Query: ", DUMP_PREFIX_OFFSET,
&cf_info, sizeof(cf_info));
}

local_irq_restore(flags);
}
Expand Down

0 comments on commit ae6834c

Please sign in to comment.