diff options
author | Robert Richter <robert.richter@amd.com> | 2008-07-22 15:09:07 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-07-26 05:48:14 -0400 |
commit | bd17b625c09d1ed14c4d98604186b0bbb314f6b2 (patch) | |
tree | 4a8e65ae24190a0e4a47fabc45182e4dee3f9cf4 /drivers/oprofile | |
parent | 852402cc27bfa1200164e9e8dc7f6e5f0a4fbd46 (diff) |
oprofile: fix printk in cpu_buffer.c
Signed-off-by: Robert Richter <robert.richter@amd.com>
Cc: oprofile-list <oprofile-list@lists.sourceforge.net>
Cc: Robert Richter <robert.richter@amd.com>
Cc: Barry Kasindorf <barry.kasindorf@amd.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'drivers/oprofile')
-rw-r--r-- | drivers/oprofile/cpu_buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/oprofile/cpu_buffer.c b/drivers/oprofile/cpu_buffer.c index aba905b3afb8..4decab624e76 100644 --- a/drivers/oprofile/cpu_buffer.c +++ b/drivers/oprofile/cpu_buffer.c | |||
@@ -364,7 +364,7 @@ static void wq_sync_buffer(struct work_struct *work) | |||
364 | struct oprofile_cpu_buffer * b = | 364 | struct oprofile_cpu_buffer * b = |
365 | container_of(work, struct oprofile_cpu_buffer, work.work); | 365 | container_of(work, struct oprofile_cpu_buffer, work.work); |
366 | if (b->cpu != smp_processor_id()) { | 366 | if (b->cpu != smp_processor_id()) { |
367 | printk("WQ on CPU%d, prefer CPU%d\n", | 367 | printk(KERN_DEBUG "WQ on CPU%d, prefer CPU%d\n", |
368 | smp_processor_id(), b->cpu); | 368 | smp_processor_id(), b->cpu); |
369 | } | 369 | } |
370 | sync_buffer(b->cpu); | 370 | sync_buffer(b->cpu); |