blob: 166b67ea622f11563a33c539b78c5dafc7c2503f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/**
2 * @file cpu_buffer.c
3 *
Robert Richter2cc28b92008-12-25 17:26:07 +01004 * @remark Copyright 2002-2009 OProfile authors
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * @remark Read the file COPYING
6 *
7 * @author John Levon <levon@movementarian.org>
Barry Kasindorf345c2572008-07-22 21:08:54 +02008 * @author Barry Kasindorf <barry.kasindorf@amd.com>
Robert Richter2cc28b92008-12-25 17:26:07 +01009 * @author Robert Richter <robert.richter@amd.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
11 * Each CPU has a local buffer that stores PC value/event
12 * pairs. We also log context switches when we notice them.
13 * Eventually each CPU's buffer is processed into the global
14 * event buffer by sync_buffer().
15 *
16 * We use a local buffer for two reasons: an NMI or similar
17 * interrupt cannot synchronise, and high sampling rates
18 * would lead to catastrophic global synchronisation if
19 * a global buffer was used.
20 */
21
22#include <linux/sched.h>
23#include <linux/oprofile.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/errno.h>
Robert Richter6a180372008-10-16 15:01:40 +020025
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "event_buffer.h"
27#include "cpu_buffer.h"
28#include "buffer_sync.h"
29#include "oprof.h"
30
Robert Richter6dad8282008-12-09 01:21:32 +010031#define OP_BUFFER_FLAGS 0
32
33/*
34 * Read and write access is using spin locking. Thus, writing to the
35 * buffer by NMI handler (x86) could occur also during critical
36 * sections when reading the buffer. To avoid this, there are 2
37 * buffers for independent read and write access. Read access is in
38 * process context only, write access only in the NMI handler. If the
39 * read buffer runs empty, both buffers are swapped atomically. There
40 * is potentially a small window during swapping where the buffers are
41 * disabled and samples could be lost.
42 *
43 * Using 2 buffers is a little bit overhead, but the solution is clear
44 * and does not require changes in the ring buffer implementation. It
45 * can be changed to a single buffer solution when the ring buffer
46 * access is implemented as non-locking atomic code.
47 */
Robert Richter99667182008-12-16 16:19:54 +010048static struct ring_buffer *op_ring_buffer_read;
49static struct ring_buffer *op_ring_buffer_write;
Tejun Heob3e9f672009-10-29 22:34:13 +090050DEFINE_PER_CPU(struct oprofile_cpu_buffer, op_cpu_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
David Howellsc4028952006-11-22 14:57:56 +000052static void wq_sync_buffer(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54#define DEFAULT_TIMER_EXPIRE (HZ / 10)
55static int work_enabled;
56
Carl Lovea5598ca2008-10-14 23:37:01 +000057unsigned long oprofile_get_cpu_buffer_size(void)
58{
Robert Richterbd2172f2008-12-16 16:19:54 +010059 return oprofile_cpu_buffer_size;
Carl Lovea5598ca2008-10-14 23:37:01 +000060}
61
62void oprofile_cpu_buffer_inc_smpl_lost(void)
63{
Tejun Heob3e9f672009-10-29 22:34:13 +090064 struct oprofile_cpu_buffer *cpu_buf = &__get_cpu_var(op_cpu_buffer);
Carl Lovea5598ca2008-10-14 23:37:01 +000065
66 cpu_buf->sample_lost_overflow++;
67}
68
Robert Richter30015772008-12-23 01:35:12 +010069void free_cpu_buffers(void)
70{
71 if (op_ring_buffer_read)
72 ring_buffer_free(op_ring_buffer_read);
73 op_ring_buffer_read = NULL;
74 if (op_ring_buffer_write)
75 ring_buffer_free(op_ring_buffer_write);
76 op_ring_buffer_write = NULL;
77}
78
Robert Richter54f2c842009-05-07 17:28:59 +020079#define RB_EVENT_HDR_SIZE 4
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081int alloc_cpu_buffers(void)
82{
83 int i;
Robert Richter6a180372008-10-16 15:01:40 +020084
Robert Richterbd2172f2008-12-16 16:19:54 +010085 unsigned long buffer_size = oprofile_cpu_buffer_size;
Robert Richter54f2c842009-05-07 17:28:59 +020086 unsigned long byte_size = buffer_size * (sizeof(struct op_sample) +
87 RB_EVENT_HDR_SIZE);
Robert Richter6a180372008-10-16 15:01:40 +020088
Robert Richter54f2c842009-05-07 17:28:59 +020089 op_ring_buffer_read = ring_buffer_alloc(byte_size, OP_BUFFER_FLAGS);
Robert Richter6dad8282008-12-09 01:21:32 +010090 if (!op_ring_buffer_read)
91 goto fail;
Robert Richter54f2c842009-05-07 17:28:59 +020092 op_ring_buffer_write = ring_buffer_alloc(byte_size, OP_BUFFER_FLAGS);
Robert Richter6dad8282008-12-09 01:21:32 +010093 if (!op_ring_buffer_write)
94 goto fail;
95
Chris J Arges4bd9b9d2008-10-15 11:03:39 -050096 for_each_possible_cpu(i) {
Tejun Heob3e9f672009-10-29 22:34:13 +090097 struct oprofile_cpu_buffer *b = &per_cpu(op_cpu_buffer, i);
Robert Richter6a180372008-10-16 15:01:40 +020098
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 b->last_task = NULL;
100 b->last_is_kernel = -1;
101 b->tracing = 0;
102 b->buffer_size = buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 b->sample_received = 0;
104 b->sample_lost_overflow = 0;
Philippe Eliedf9d1772007-11-14 16:58:48 -0800105 b->backtrace_aborted = 0;
106 b->sample_invalid_eip = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 b->cpu = i;
David Howellsc4028952006-11-22 14:57:56 +0000108 INIT_DELAYED_WORK(&b->work, wq_sync_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 }
110 return 0;
111
112fail:
113 free_cpu_buffers();
114 return -ENOMEM;
115}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117void start_cpu_work(void)
118{
119 int i;
120
121 work_enabled = 1;
122
123 for_each_online_cpu(i) {
Tejun Heob3e9f672009-10-29 22:34:13 +0900124 struct oprofile_cpu_buffer *b = &per_cpu(op_cpu_buffer, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126 /*
127 * Spread the work by 1 jiffy per cpu so they dont all
128 * fire at once.
129 */
130 schedule_delayed_work_on(i, &b->work, DEFAULT_TIMER_EXPIRE + i);
131 }
132}
133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134void end_cpu_work(void)
135{
136 int i;
137
138 work_enabled = 0;
139
140 for_each_online_cpu(i) {
Tejun Heob3e9f672009-10-29 22:34:13 +0900141 struct oprofile_cpu_buffer *b = &per_cpu(op_cpu_buffer, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143 cancel_delayed_work(&b->work);
144 }
145
146 flush_scheduled_work();
147}
148
Robert Richter2cc28b92008-12-25 17:26:07 +0100149/*
150 * This function prepares the cpu buffer to write a sample.
151 *
152 * Struct op_entry is used during operations on the ring buffer while
153 * struct op_sample contains the data that is stored in the ring
154 * buffer. Struct entry can be uninitialized. The function reserves a
155 * data array that is specified by size. Use
156 * op_cpu_buffer_write_commit() after preparing the sample. In case of
157 * errors a null pointer is returned, otherwise the pointer to the
158 * sample.
159 *
160 */
161struct op_sample
162*op_cpu_buffer_write_reserve(struct op_entry *entry, unsigned long size)
Robert Richter99667182008-12-16 16:19:54 +0100163{
Robert Richter2cc28b92008-12-25 17:26:07 +0100164 entry->event = ring_buffer_lock_reserve
165 (op_ring_buffer_write, sizeof(struct op_sample) +
Ingo Molnar304cc6a2009-02-06 01:12:02 +0100166 size * sizeof(entry->sample->data[0]));
Robert Richter99667182008-12-16 16:19:54 +0100167 if (entry->event)
168 entry->sample = ring_buffer_event_data(entry->event);
169 else
170 entry->sample = NULL;
171
172 if (!entry->sample)
Robert Richter2cc28b92008-12-25 17:26:07 +0100173 return NULL;
Robert Richter99667182008-12-16 16:19:54 +0100174
Robert Richter2cc28b92008-12-25 17:26:07 +0100175 entry->size = size;
176 entry->data = entry->sample->data;
177
178 return entry->sample;
Robert Richter99667182008-12-16 16:19:54 +0100179}
180
181int op_cpu_buffer_write_commit(struct op_entry *entry)
182{
Ingo Molnar304cc6a2009-02-06 01:12:02 +0100183 return ring_buffer_unlock_commit(op_ring_buffer_write, entry->event);
Robert Richter99667182008-12-16 16:19:54 +0100184}
185
Robert Richter2d87b142008-12-30 04:10:46 +0100186struct op_sample *op_cpu_buffer_read_entry(struct op_entry *entry, int cpu)
Robert Richter99667182008-12-16 16:19:54 +0100187{
188 struct ring_buffer_event *e;
189 e = ring_buffer_consume(op_ring_buffer_read, cpu, NULL);
190 if (e)
Robert Richter2d87b142008-12-30 04:10:46 +0100191 goto event;
Robert Richter99667182008-12-16 16:19:54 +0100192 if (ring_buffer_swap_cpu(op_ring_buffer_read,
193 op_ring_buffer_write,
194 cpu))
195 return NULL;
196 e = ring_buffer_consume(op_ring_buffer_read, cpu, NULL);
197 if (e)
Robert Richter2d87b142008-12-30 04:10:46 +0100198 goto event;
Robert Richter99667182008-12-16 16:19:54 +0100199 return NULL;
Robert Richter2d87b142008-12-30 04:10:46 +0100200
201event:
202 entry->event = e;
203 entry->sample = ring_buffer_event_data(e);
204 entry->size = (ring_buffer_event_length(e) - sizeof(struct op_sample))
205 / sizeof(entry->sample->data[0]);
206 entry->data = entry->sample->data;
207 return entry->sample;
Robert Richter99667182008-12-16 16:19:54 +0100208}
209
210unsigned long op_cpu_buffer_entries(int cpu)
211{
212 return ring_buffer_entries_cpu(op_ring_buffer_read, cpu)
213 + ring_buffer_entries_cpu(op_ring_buffer_write, cpu);
214}
215
Robert Richterae735e92008-12-25 17:26:07 +0100216static int
217op_add_code(struct oprofile_cpu_buffer *cpu_buf, unsigned long backtrace,
218 int is_kernel, struct task_struct *task)
219{
220 struct op_entry entry;
221 struct op_sample *sample;
222 unsigned long flags;
223 int size;
224
225 flags = 0;
226
227 if (backtrace)
228 flags |= TRACE_BEGIN;
229
230 /* notice a switch from user->kernel or vice versa */
231 is_kernel = !!is_kernel;
232 if (cpu_buf->last_is_kernel != is_kernel) {
233 cpu_buf->last_is_kernel = is_kernel;
234 flags |= KERNEL_CTX_SWITCH;
235 if (is_kernel)
236 flags |= IS_KERNEL;
237 }
238
239 /* notice a task switch */
240 if (cpu_buf->last_task != task) {
241 cpu_buf->last_task = task;
242 flags |= USER_CTX_SWITCH;
243 }
244
245 if (!flags)
246 /* nothing to do */
247 return 0;
248
249 if (flags & USER_CTX_SWITCH)
250 size = 1;
251 else
252 size = 0;
253
254 sample = op_cpu_buffer_write_reserve(&entry, size);
255 if (!sample)
256 return -ENOMEM;
257
258 sample->eip = ESCAPE_CODE;
259 sample->event = flags;
260
261 if (size)
Robert Richterd9928c22008-12-25 17:26:07 +0100262 op_cpu_buffer_add_data(&entry, (unsigned long)task);
Robert Richterae735e92008-12-25 17:26:07 +0100263
264 op_cpu_buffer_write_commit(&entry);
265
266 return 0;
267}
268
Robert Richter211117f2008-12-09 02:13:25 +0100269static inline int
Robert Richterd0e23382008-12-23 04:03:05 +0100270op_add_sample(struct oprofile_cpu_buffer *cpu_buf,
271 unsigned long pc, unsigned long event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
Robert Richter6dad8282008-12-09 01:21:32 +0100273 struct op_entry entry;
Robert Richter2cc28b92008-12-25 17:26:07 +0100274 struct op_sample *sample;
Robert Richter6dad8282008-12-09 01:21:32 +0100275
Robert Richter2cc28b92008-12-25 17:26:07 +0100276 sample = op_cpu_buffer_write_reserve(&entry, 0);
277 if (!sample)
278 return -ENOMEM;
Robert Richter6dad8282008-12-09 01:21:32 +0100279
Robert Richter2cc28b92008-12-25 17:26:07 +0100280 sample->eip = pc;
281 sample->event = event;
Robert Richter6dad8282008-12-09 01:21:32 +0100282
Robert Richter3967e932008-12-30 05:10:58 +0100283 return op_cpu_buffer_write_commit(&entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
Robert Richterae735e92008-12-25 17:26:07 +0100286/*
287 * This must be safe from any context.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 *
289 * is_kernel is needed because on some architectures you cannot
290 * tell if you are in kernel or user space simply by looking at
291 * pc. We tag this in the buffer by generating kernel enter/exit
292 * events whenever is_kernel changes
293 */
Robert Richterae735e92008-12-25 17:26:07 +0100294static int
295log_sample(struct oprofile_cpu_buffer *cpu_buf, unsigned long pc,
296 unsigned long backtrace, int is_kernel, unsigned long event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 cpu_buf->sample_received++;
299
Philippe Eliedf9d1772007-11-14 16:58:48 -0800300 if (pc == ESCAPE_CODE) {
301 cpu_buf->sample_invalid_eip++;
302 return 0;
303 }
304
Robert Richterae735e92008-12-25 17:26:07 +0100305 if (op_add_code(cpu_buf, backtrace, is_kernel, current))
306 goto fail;
Robert Richter6a180372008-10-16 15:01:40 +0200307
Robert Richterd0e23382008-12-23 04:03:05 +0100308 if (op_add_sample(cpu_buf, pc, event))
Robert Richter211117f2008-12-09 02:13:25 +0100309 goto fail;
310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 return 1;
Robert Richter211117f2008-12-09 02:13:25 +0100312
313fail:
314 cpu_buf->sample_lost_overflow++;
315 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316}
317
Robert Richter6352d922008-12-18 22:09:13 +0100318static inline void oprofile_begin_trace(struct oprofile_cpu_buffer *cpu_buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 cpu_buf->tracing = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321}
322
Robert Richter6352d922008-12-18 22:09:13 +0100323static inline void oprofile_end_trace(struct oprofile_cpu_buffer *cpu_buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
325 cpu_buf->tracing = 0;
326}
327
Robert Richterd45d23b2008-12-16 12:00:10 +0100328static inline void
329__oprofile_add_ext_sample(unsigned long pc, struct pt_regs * const regs,
330 unsigned long event, int is_kernel)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
Tejun Heob3e9f672009-10-29 22:34:13 +0900332 struct oprofile_cpu_buffer *cpu_buf = &__get_cpu_var(op_cpu_buffer);
Robert Richterae735e92008-12-25 17:26:07 +0100333 unsigned long backtrace = oprofile_backtrace_depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Robert Richterfd13f6c2008-10-19 21:00:09 +0200335 /*
336 * if log_sample() fail we can't backtrace since we lost the
337 * source of this event
338 */
Robert Richterae735e92008-12-25 17:26:07 +0100339 if (!log_sample(cpu_buf, pc, backtrace, is_kernel, event))
340 /* failed */
341 return;
Robert Richter6352d922008-12-18 22:09:13 +0100342
Robert Richterae735e92008-12-25 17:26:07 +0100343 if (!backtrace)
344 return;
345
346 oprofile_begin_trace(cpu_buf);
347 oprofile_ops.backtrace(regs, backtrace);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 oprofile_end_trace(cpu_buf);
349}
350
Robert Richterd45d23b2008-12-16 12:00:10 +0100351void oprofile_add_ext_sample(unsigned long pc, struct pt_regs * const regs,
352 unsigned long event, int is_kernel)
353{
354 __oprofile_add_ext_sample(pc, regs, event, is_kernel);
355}
356
Brian Rogan27357712006-03-28 01:56:20 -0800357void oprofile_add_sample(struct pt_regs * const regs, unsigned long event)
358{
359 int is_kernel = !user_mode(regs);
360 unsigned long pc = profile_pc(regs);
361
Robert Richterd45d23b2008-12-16 12:00:10 +0100362 __oprofile_add_ext_sample(pc, regs, event, is_kernel);
Brian Rogan27357712006-03-28 01:56:20 -0800363}
364
Robert Richter1acda872009-01-05 10:35:31 +0100365/*
366 * Add samples with data to the ring buffer.
367 *
Robert Richter14f0ca82009-01-07 21:50:22 +0100368 * Use oprofile_add_data(&entry, val) to add data and
369 * oprofile_write_commit(&entry) to commit the sample.
Robert Richter1acda872009-01-05 10:35:31 +0100370 */
Robert Richter14f0ca82009-01-07 21:50:22 +0100371void
372oprofile_write_reserve(struct op_entry *entry, struct pt_regs * const regs,
Robert Richter1acda872009-01-05 10:35:31 +0100373 unsigned long pc, int code, int size)
Barry Kasindorf345c2572008-07-22 21:08:54 +0200374{
Robert Richter1acda872009-01-05 10:35:31 +0100375 struct op_sample *sample;
Robert Richtere2fee272008-07-18 17:36:20 +0200376 int is_kernel = !user_mode(regs);
Tejun Heob3e9f672009-10-29 22:34:13 +0900377 struct oprofile_cpu_buffer *cpu_buf = &__get_cpu_var(op_cpu_buffer);
Barry Kasindorf345c2572008-07-22 21:08:54 +0200378
379 cpu_buf->sample_received++;
380
Robert Richter1acda872009-01-05 10:35:31 +0100381 /* no backtraces for samples with data */
382 if (op_add_code(cpu_buf, 0, is_kernel, current))
383 goto fail;
Barry Kasindorf345c2572008-07-22 21:08:54 +0200384
Robert Richter1acda872009-01-05 10:35:31 +0100385 sample = op_cpu_buffer_write_reserve(entry, size + 2);
386 if (!sample)
387 goto fail;
388 sample->eip = ESCAPE_CODE;
389 sample->event = 0; /* no flags */
Barry Kasindorf345c2572008-07-22 21:08:54 +0200390
Robert Richter1acda872009-01-05 10:35:31 +0100391 op_cpu_buffer_add_data(entry, code);
392 op_cpu_buffer_add_data(entry, pc);
Barry Kasindorf345c2572008-07-22 21:08:54 +0200393
Robert Richter1acda872009-01-05 10:35:31 +0100394 return;
395
396fail:
Robert Richterfdb6a8f2009-01-17 17:13:27 +0100397 entry->event = NULL;
Robert Richter1acda872009-01-05 10:35:31 +0100398 cpu_buf->sample_lost_overflow++;
Barry Kasindorf345c2572008-07-22 21:08:54 +0200399}
400
Robert Richter14f0ca82009-01-07 21:50:22 +0100401int oprofile_add_data(struct op_entry *entry, unsigned long val)
402{
Robert Richterfdb6a8f2009-01-17 17:13:27 +0100403 if (!entry->event)
404 return 0;
Robert Richter14f0ca82009-01-07 21:50:22 +0100405 return op_cpu_buffer_add_data(entry, val);
406}
407
Robert Richter51563a02009-06-03 20:54:56 +0200408int oprofile_add_data64(struct op_entry *entry, u64 val)
409{
410 if (!entry->event)
411 return 0;
412 if (op_cpu_buffer_get_size(entry) < 2)
413 /*
414 * the function returns 0 to indicate a too small
415 * buffer, even if there is some space left
416 */
417 return 0;
418 if (!op_cpu_buffer_add_data(entry, (u32)val))
419 return 0;
420 return op_cpu_buffer_add_data(entry, (u32)(val >> 32));
421}
422
Robert Richter14f0ca82009-01-07 21:50:22 +0100423int oprofile_write_commit(struct op_entry *entry)
424{
Robert Richterfdb6a8f2009-01-17 17:13:27 +0100425 if (!entry->event)
426 return -EINVAL;
Robert Richter14f0ca82009-01-07 21:50:22 +0100427 return op_cpu_buffer_write_commit(entry);
428}
429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430void oprofile_add_pc(unsigned long pc, int is_kernel, unsigned long event)
431{
Tejun Heob3e9f672009-10-29 22:34:13 +0900432 struct oprofile_cpu_buffer *cpu_buf = &__get_cpu_var(op_cpu_buffer);
Robert Richterae735e92008-12-25 17:26:07 +0100433 log_sample(cpu_buf, pc, 0, is_kernel, event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434}
435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436void oprofile_add_trace(unsigned long pc)
437{
Tejun Heob3e9f672009-10-29 22:34:13 +0900438 struct oprofile_cpu_buffer *cpu_buf = &__get_cpu_var(op_cpu_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440 if (!cpu_buf->tracing)
441 return;
442
Robert Richterfd13f6c2008-10-19 21:00:09 +0200443 /*
444 * broken frame can give an eip with the same value as an
445 * escape code, abort the trace if we get it
446 */
Robert Richter211117f2008-12-09 02:13:25 +0100447 if (pc == ESCAPE_CODE)
448 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Robert Richterd0e23382008-12-23 04:03:05 +0100450 if (op_add_sample(cpu_buf, pc, 0))
Robert Richter211117f2008-12-09 02:13:25 +0100451 goto fail;
452
453 return;
454fail:
455 cpu_buf->tracing = 0;
456 cpu_buf->backtrace_aborted++;
457 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458}
459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460/*
461 * This serves to avoid cpu buffer overflow, and makes sure
462 * the task mortuary progresses
463 *
464 * By using schedule_delayed_work_on and then schedule_delayed_work
465 * we guarantee this will stay on the correct cpu
466 */
David Howellsc4028952006-11-22 14:57:56 +0000467static void wq_sync_buffer(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468{
Robert Richter25ad29132008-09-05 17:12:36 +0200469 struct oprofile_cpu_buffer *b =
David Howellsc4028952006-11-22 14:57:56 +0000470 container_of(work, struct oprofile_cpu_buffer, work.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 if (b->cpu != smp_processor_id()) {
Robert Richterbd17b622008-07-22 21:09:07 +0200472 printk(KERN_DEBUG "WQ on CPU%d, prefer CPU%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 smp_processor_id(), b->cpu);
Chris J Arges4bd9b9d2008-10-15 11:03:39 -0500474
475 if (!cpu_online(b->cpu)) {
476 cancel_delayed_work(&b->work);
477 return;
478 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 }
480 sync_buffer(b->cpu);
481
482 /* don't re-add the work if we're shutting down */
483 if (work_enabled)
484 schedule_delayed_work(&b->work, DEFAULT_TIMER_EXPIRE);
485}