Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /** |
| 2 | * @file cpu_buffer.c |
| 3 | * |
| 4 | * @remark Copyright 2002 OProfile authors |
| 5 | * @remark Read the file COPYING |
| 6 | * |
| 7 | * @author John Levon <levon@movementarian.org> |
Barry Kasindorf | 345c257 | 2008-07-22 21:08:54 +0200 | [diff] [blame] | 8 | * @author Barry Kasindorf <barry.kasindorf@amd.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * |
| 10 | * Each CPU has a local buffer that stores PC value/event |
| 11 | * pairs. We also log context switches when we notice them. |
| 12 | * Eventually each CPU's buffer is processed into the global |
| 13 | * event buffer by sync_buffer(). |
| 14 | * |
| 15 | * We use a local buffer for two reasons: an NMI or similar |
| 16 | * interrupt cannot synchronise, and high sampling rates |
| 17 | * would lead to catastrophic global synchronisation if |
| 18 | * a global buffer was used. |
| 19 | */ |
| 20 | |
| 21 | #include <linux/sched.h> |
| 22 | #include <linux/oprofile.h> |
| 23 | #include <linux/vmalloc.h> |
| 24 | #include <linux/errno.h> |
Robert Richter | 6a18037 | 2008-10-16 15:01:40 +0200 | [diff] [blame] | 25 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include "event_buffer.h" |
| 27 | #include "cpu_buffer.h" |
| 28 | #include "buffer_sync.h" |
| 29 | #include "oprof.h" |
| 30 | |
Eric Dumazet | 8b8b498 | 2008-05-14 16:05:31 -0700 | [diff] [blame] | 31 | DEFINE_PER_CPU(struct oprofile_cpu_buffer, cpu_buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 33 | static void wq_sync_buffer(struct work_struct *work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
| 35 | #define DEFAULT_TIMER_EXPIRE (HZ / 10) |
| 36 | static int work_enabled; |
| 37 | |
| 38 | void free_cpu_buffers(void) |
| 39 | { |
| 40 | int i; |
Carl Love | a5598ca | 2008-10-14 23:37:01 +0000 | [diff] [blame] | 41 | |
Chris J Arges | 4bd9b9d | 2008-10-15 11:03:39 -0500 | [diff] [blame] | 42 | for_each_possible_cpu(i) { |
Mike Travis | 608dfdd | 2008-04-28 02:14:15 -0700 | [diff] [blame] | 43 | vfree(per_cpu(cpu_buffer, i).buffer); |
Carl Love | f4156d1 | 2008-08-11 17:25:43 +1000 | [diff] [blame] | 44 | per_cpu(cpu_buffer, i).buffer = NULL; |
| 45 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | } |
Jesper Juhl | 77933d7 | 2005-07-27 11:46:09 -0700 | [diff] [blame] | 47 | |
Carl Love | a5598ca | 2008-10-14 23:37:01 +0000 | [diff] [blame] | 48 | unsigned long oprofile_get_cpu_buffer_size(void) |
| 49 | { |
| 50 | return fs_cpu_buffer_size; |
| 51 | } |
| 52 | |
| 53 | void oprofile_cpu_buffer_inc_smpl_lost(void) |
| 54 | { |
| 55 | struct oprofile_cpu_buffer *cpu_buf |
| 56 | = &__get_cpu_var(cpu_buffer); |
| 57 | |
| 58 | cpu_buf->sample_lost_overflow++; |
| 59 | } |
| 60 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | int alloc_cpu_buffers(void) |
| 62 | { |
| 63 | int i; |
Robert Richter | 6a18037 | 2008-10-16 15:01:40 +0200 | [diff] [blame] | 64 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | unsigned long buffer_size = fs_cpu_buffer_size; |
Robert Richter | 6a18037 | 2008-10-16 15:01:40 +0200 | [diff] [blame] | 66 | |
Chris J Arges | 4bd9b9d | 2008-10-15 11:03:39 -0500 | [diff] [blame] | 67 | for_each_possible_cpu(i) { |
Mike Travis | 608dfdd | 2008-04-28 02:14:15 -0700 | [diff] [blame] | 68 | struct oprofile_cpu_buffer *b = &per_cpu(cpu_buffer, i); |
Robert Richter | 6a18037 | 2008-10-16 15:01:40 +0200 | [diff] [blame] | 69 | |
Eric Dumazet | 25ab7cd | 2006-01-08 01:03:21 -0800 | [diff] [blame] | 70 | b->buffer = vmalloc_node(sizeof(struct op_sample) * buffer_size, |
| 71 | cpu_to_node(i)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | if (!b->buffer) |
| 73 | goto fail; |
Robert Richter | 6a18037 | 2008-10-16 15:01:40 +0200 | [diff] [blame] | 74 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | b->last_task = NULL; |
| 76 | b->last_is_kernel = -1; |
| 77 | b->tracing = 0; |
| 78 | b->buffer_size = buffer_size; |
| 79 | b->tail_pos = 0; |
| 80 | b->head_pos = 0; |
| 81 | b->sample_received = 0; |
| 82 | b->sample_lost_overflow = 0; |
Philippe Elie | df9d177 | 2007-11-14 16:58:48 -0800 | [diff] [blame] | 83 | b->backtrace_aborted = 0; |
| 84 | b->sample_invalid_eip = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | b->cpu = i; |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 86 | INIT_DELAYED_WORK(&b->work, wq_sync_buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | } |
| 88 | return 0; |
| 89 | |
| 90 | fail: |
| 91 | free_cpu_buffers(); |
| 92 | return -ENOMEM; |
| 93 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | |
| 95 | void start_cpu_work(void) |
| 96 | { |
| 97 | int i; |
| 98 | |
| 99 | work_enabled = 1; |
| 100 | |
| 101 | for_each_online_cpu(i) { |
Mike Travis | 608dfdd | 2008-04-28 02:14:15 -0700 | [diff] [blame] | 102 | struct oprofile_cpu_buffer *b = &per_cpu(cpu_buffer, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | |
| 104 | /* |
| 105 | * Spread the work by 1 jiffy per cpu so they dont all |
| 106 | * fire at once. |
| 107 | */ |
| 108 | schedule_delayed_work_on(i, &b->work, DEFAULT_TIMER_EXPIRE + i); |
| 109 | } |
| 110 | } |
| 111 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | void end_cpu_work(void) |
| 113 | { |
| 114 | int i; |
| 115 | |
| 116 | work_enabled = 0; |
| 117 | |
| 118 | for_each_online_cpu(i) { |
Mike Travis | 608dfdd | 2008-04-28 02:14:15 -0700 | [diff] [blame] | 119 | struct oprofile_cpu_buffer *b = &per_cpu(cpu_buffer, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | |
| 121 | cancel_delayed_work(&b->work); |
| 122 | } |
| 123 | |
| 124 | flush_scheduled_work(); |
| 125 | } |
| 126 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | /* Resets the cpu buffer to a sane state. */ |
Robert Richter | 25ad2913 | 2008-09-05 17:12:36 +0200 | [diff] [blame] | 128 | void cpu_buffer_reset(struct oprofile_cpu_buffer *cpu_buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | { |
Robert Richter | fd13f6c | 2008-10-19 21:00:09 +0200 | [diff] [blame] | 130 | /* |
| 131 | * reset these to invalid values; the next sample collected |
| 132 | * will populate the buffer with proper values to initialize |
| 133 | * the buffer |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | */ |
| 135 | cpu_buf->last_is_kernel = -1; |
| 136 | cpu_buf->last_task = NULL; |
| 137 | } |
| 138 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | /* compute number of available slots in cpu_buffer queue */ |
Robert Richter | 25ad2913 | 2008-09-05 17:12:36 +0200 | [diff] [blame] | 140 | static unsigned long nr_available_slots(struct oprofile_cpu_buffer const *b) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | { |
| 142 | unsigned long head = b->head_pos; |
| 143 | unsigned long tail = b->tail_pos; |
| 144 | |
| 145 | if (tail > head) |
| 146 | return (tail - head) - 1; |
| 147 | |
| 148 | return tail + (b->buffer_size - head) - 1; |
| 149 | } |
| 150 | |
Jesper Juhl | 77933d7 | 2005-07-27 11:46:09 -0700 | [diff] [blame] | 151 | static inline void |
Robert Richter | 25ad2913 | 2008-09-05 17:12:36 +0200 | [diff] [blame] | 152 | add_sample(struct oprofile_cpu_buffer *cpu_buf, |
Robert Richter | 6a18037 | 2008-10-16 15:01:40 +0200 | [diff] [blame] | 153 | unsigned long pc, unsigned long event) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | { |
Robert Richter | 7d468ab | 2008-11-27 10:57:09 +0100 | [diff] [blame] | 155 | struct op_sample *entry = cpu_buffer_write_entry(cpu_buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | entry->eip = pc; |
| 157 | entry->event = event; |
Robert Richter | 229234a | 2008-11-27 18:36:08 +0100 | [diff] [blame^] | 158 | cpu_buffer_write_commit(cpu_buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | } |
| 160 | |
Jesper Juhl | 77933d7 | 2005-07-27 11:46:09 -0700 | [diff] [blame] | 161 | static inline void |
Robert Richter | 25ad2913 | 2008-09-05 17:12:36 +0200 | [diff] [blame] | 162 | add_code(struct oprofile_cpu_buffer *buffer, unsigned long value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | { |
| 164 | add_sample(buffer, ESCAPE_CODE, value); |
| 165 | } |
| 166 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | /* This must be safe from any context. It's safe writing here |
| 168 | * because of the head/tail separation of the writer and reader |
| 169 | * of the CPU buffer. |
| 170 | * |
| 171 | * is_kernel is needed because on some architectures you cannot |
| 172 | * tell if you are in kernel or user space simply by looking at |
| 173 | * pc. We tag this in the buffer by generating kernel enter/exit |
| 174 | * events whenever is_kernel changes |
| 175 | */ |
Robert Richter | 25ad2913 | 2008-09-05 17:12:36 +0200 | [diff] [blame] | 176 | static int log_sample(struct oprofile_cpu_buffer *cpu_buf, unsigned long pc, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | int is_kernel, unsigned long event) |
| 178 | { |
Robert Richter | 25ad2913 | 2008-09-05 17:12:36 +0200 | [diff] [blame] | 179 | struct task_struct *task; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | |
| 181 | cpu_buf->sample_received++; |
| 182 | |
Philippe Elie | df9d177 | 2007-11-14 16:58:48 -0800 | [diff] [blame] | 183 | if (pc == ESCAPE_CODE) { |
| 184 | cpu_buf->sample_invalid_eip++; |
| 185 | return 0; |
| 186 | } |
| 187 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | if (nr_available_slots(cpu_buf) < 3) { |
| 189 | cpu_buf->sample_lost_overflow++; |
| 190 | return 0; |
| 191 | } |
| 192 | |
| 193 | is_kernel = !!is_kernel; |
| 194 | |
| 195 | task = current; |
| 196 | |
| 197 | /* notice a switch from user->kernel or vice versa */ |
| 198 | if (cpu_buf->last_is_kernel != is_kernel) { |
| 199 | cpu_buf->last_is_kernel = is_kernel; |
| 200 | add_code(cpu_buf, is_kernel); |
| 201 | } |
| 202 | |
| 203 | /* notice a task switch */ |
| 204 | if (cpu_buf->last_task != task) { |
| 205 | cpu_buf->last_task = task; |
| 206 | add_code(cpu_buf, (unsigned long)task); |
| 207 | } |
Robert Richter | 6a18037 | 2008-10-16 15:01:40 +0200 | [diff] [blame] | 208 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | add_sample(cpu_buf, pc, event); |
| 210 | return 1; |
| 211 | } |
| 212 | |
Barry Kasindorf | 345c257 | 2008-07-22 21:08:54 +0200 | [diff] [blame] | 213 | static int oprofile_begin_trace(struct oprofile_cpu_buffer *cpu_buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | { |
| 215 | if (nr_available_slots(cpu_buf) < 4) { |
| 216 | cpu_buf->sample_lost_overflow++; |
| 217 | return 0; |
| 218 | } |
| 219 | |
| 220 | add_code(cpu_buf, CPU_TRACE_BEGIN); |
| 221 | cpu_buf->tracing = 1; |
| 222 | return 1; |
| 223 | } |
| 224 | |
Robert Richter | 25ad2913 | 2008-09-05 17:12:36 +0200 | [diff] [blame] | 225 | static void oprofile_end_trace(struct oprofile_cpu_buffer *cpu_buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | { |
| 227 | cpu_buf->tracing = 0; |
| 228 | } |
| 229 | |
Brian Rogan | 2735771 | 2006-03-28 01:56:20 -0800 | [diff] [blame] | 230 | void oprofile_add_ext_sample(unsigned long pc, struct pt_regs * const regs, |
| 231 | unsigned long event, int is_kernel) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | { |
Mike Travis | 608dfdd | 2008-04-28 02:14:15 -0700 | [diff] [blame] | 233 | struct oprofile_cpu_buffer *cpu_buf = &__get_cpu_var(cpu_buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | |
| 235 | if (!backtrace_depth) { |
| 236 | log_sample(cpu_buf, pc, is_kernel, event); |
| 237 | return; |
| 238 | } |
| 239 | |
| 240 | if (!oprofile_begin_trace(cpu_buf)) |
| 241 | return; |
| 242 | |
Robert Richter | fd13f6c | 2008-10-19 21:00:09 +0200 | [diff] [blame] | 243 | /* |
| 244 | * if log_sample() fail we can't backtrace since we lost the |
| 245 | * source of this event |
| 246 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | if (log_sample(cpu_buf, pc, is_kernel, event)) |
| 248 | oprofile_ops.backtrace(regs, backtrace_depth); |
| 249 | oprofile_end_trace(cpu_buf); |
| 250 | } |
| 251 | |
Brian Rogan | 2735771 | 2006-03-28 01:56:20 -0800 | [diff] [blame] | 252 | void oprofile_add_sample(struct pt_regs * const regs, unsigned long event) |
| 253 | { |
| 254 | int is_kernel = !user_mode(regs); |
| 255 | unsigned long pc = profile_pc(regs); |
| 256 | |
| 257 | oprofile_add_ext_sample(pc, regs, event, is_kernel); |
| 258 | } |
| 259 | |
Robert Richter | 852402c | 2008-07-22 21:09:06 +0200 | [diff] [blame] | 260 | #ifdef CONFIG_OPROFILE_IBS |
| 261 | |
Robert Richter | e2fee27 | 2008-07-18 17:36:20 +0200 | [diff] [blame] | 262 | #define MAX_IBS_SAMPLE_SIZE 14 |
| 263 | |
Robert Richter | cdc1834 | 2008-09-26 22:18:44 -0400 | [diff] [blame] | 264 | void oprofile_add_ibs_sample(struct pt_regs * const regs, |
| 265 | unsigned int * const ibs_sample, int ibs_code) |
Barry Kasindorf | 345c257 | 2008-07-22 21:08:54 +0200 | [diff] [blame] | 266 | { |
Robert Richter | e2fee27 | 2008-07-18 17:36:20 +0200 | [diff] [blame] | 267 | int is_kernel = !user_mode(regs); |
| 268 | struct oprofile_cpu_buffer *cpu_buf = &__get_cpu_var(cpu_buffer); |
Barry Kasindorf | 345c257 | 2008-07-22 21:08:54 +0200 | [diff] [blame] | 269 | struct task_struct *task; |
| 270 | |
| 271 | cpu_buf->sample_received++; |
| 272 | |
| 273 | if (nr_available_slots(cpu_buf) < MAX_IBS_SAMPLE_SIZE) { |
Robert Richter | e2fee27 | 2008-07-18 17:36:20 +0200 | [diff] [blame] | 274 | /* we can't backtrace since we lost the source of this event */ |
Barry Kasindorf | 345c257 | 2008-07-22 21:08:54 +0200 | [diff] [blame] | 275 | cpu_buf->sample_lost_overflow++; |
Robert Richter | e2fee27 | 2008-07-18 17:36:20 +0200 | [diff] [blame] | 276 | return; |
Barry Kasindorf | 345c257 | 2008-07-22 21:08:54 +0200 | [diff] [blame] | 277 | } |
| 278 | |
Barry Kasindorf | 345c257 | 2008-07-22 21:08:54 +0200 | [diff] [blame] | 279 | /* notice a switch from user->kernel or vice versa */ |
| 280 | if (cpu_buf->last_is_kernel != is_kernel) { |
| 281 | cpu_buf->last_is_kernel = is_kernel; |
| 282 | add_code(cpu_buf, is_kernel); |
| 283 | } |
| 284 | |
| 285 | /* notice a task switch */ |
| 286 | if (!is_kernel) { |
| 287 | task = current; |
Barry Kasindorf | 345c257 | 2008-07-22 21:08:54 +0200 | [diff] [blame] | 288 | if (cpu_buf->last_task != task) { |
| 289 | cpu_buf->last_task = task; |
| 290 | add_code(cpu_buf, (unsigned long)task); |
| 291 | } |
| 292 | } |
| 293 | |
| 294 | add_code(cpu_buf, ibs_code); |
Robert Richter | e2fee27 | 2008-07-18 17:36:20 +0200 | [diff] [blame] | 295 | add_sample(cpu_buf, ibs_sample[0], ibs_sample[1]); |
| 296 | add_sample(cpu_buf, ibs_sample[2], ibs_sample[3]); |
| 297 | add_sample(cpu_buf, ibs_sample[4], ibs_sample[5]); |
Barry Kasindorf | 345c257 | 2008-07-22 21:08:54 +0200 | [diff] [blame] | 298 | |
| 299 | if (ibs_code == IBS_OP_BEGIN) { |
Robert Richter | e2fee27 | 2008-07-18 17:36:20 +0200 | [diff] [blame] | 300 | add_sample(cpu_buf, ibs_sample[6], ibs_sample[7]); |
| 301 | add_sample(cpu_buf, ibs_sample[8], ibs_sample[9]); |
| 302 | add_sample(cpu_buf, ibs_sample[10], ibs_sample[11]); |
Barry Kasindorf | 345c257 | 2008-07-22 21:08:54 +0200 | [diff] [blame] | 303 | } |
| 304 | |
Robert Richter | e2fee27 | 2008-07-18 17:36:20 +0200 | [diff] [blame] | 305 | if (backtrace_depth) |
Barry Kasindorf | 345c257 | 2008-07-22 21:08:54 +0200 | [diff] [blame] | 306 | oprofile_ops.backtrace(regs, backtrace_depth); |
| 307 | } |
| 308 | |
Robert Richter | 852402c | 2008-07-22 21:09:06 +0200 | [diff] [blame] | 309 | #endif |
| 310 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | void oprofile_add_pc(unsigned long pc, int is_kernel, unsigned long event) |
| 312 | { |
Mike Travis | 608dfdd | 2008-04-28 02:14:15 -0700 | [diff] [blame] | 313 | struct oprofile_cpu_buffer *cpu_buf = &__get_cpu_var(cpu_buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | log_sample(cpu_buf, pc, is_kernel, event); |
| 315 | } |
| 316 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | void oprofile_add_trace(unsigned long pc) |
| 318 | { |
Mike Travis | 608dfdd | 2008-04-28 02:14:15 -0700 | [diff] [blame] | 319 | struct oprofile_cpu_buffer *cpu_buf = &__get_cpu_var(cpu_buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | |
| 321 | if (!cpu_buf->tracing) |
| 322 | return; |
| 323 | |
| 324 | if (nr_available_slots(cpu_buf) < 1) { |
| 325 | cpu_buf->tracing = 0; |
| 326 | cpu_buf->sample_lost_overflow++; |
| 327 | return; |
| 328 | } |
| 329 | |
Robert Richter | fd13f6c | 2008-10-19 21:00:09 +0200 | [diff] [blame] | 330 | /* |
| 331 | * broken frame can give an eip with the same value as an |
| 332 | * escape code, abort the trace if we get it |
| 333 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | if (pc == ESCAPE_CODE) { |
| 335 | cpu_buf->tracing = 0; |
| 336 | cpu_buf->backtrace_aborted++; |
| 337 | return; |
| 338 | } |
| 339 | |
| 340 | add_sample(cpu_buf, pc, 0); |
| 341 | } |
| 342 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | /* |
| 344 | * This serves to avoid cpu buffer overflow, and makes sure |
| 345 | * the task mortuary progresses |
| 346 | * |
| 347 | * By using schedule_delayed_work_on and then schedule_delayed_work |
| 348 | * we guarantee this will stay on the correct cpu |
| 349 | */ |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 350 | static void wq_sync_buffer(struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | { |
Robert Richter | 25ad2913 | 2008-09-05 17:12:36 +0200 | [diff] [blame] | 352 | struct oprofile_cpu_buffer *b = |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 353 | container_of(work, struct oprofile_cpu_buffer, work.work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | if (b->cpu != smp_processor_id()) { |
Robert Richter | bd17b62 | 2008-07-22 21:09:07 +0200 | [diff] [blame] | 355 | printk(KERN_DEBUG "WQ on CPU%d, prefer CPU%d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | smp_processor_id(), b->cpu); |
Chris J Arges | 4bd9b9d | 2008-10-15 11:03:39 -0500 | [diff] [blame] | 357 | |
| 358 | if (!cpu_online(b->cpu)) { |
| 359 | cancel_delayed_work(&b->work); |
| 360 | return; |
| 361 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | } |
| 363 | sync_buffer(b->cpu); |
| 364 | |
| 365 | /* don't re-add the work if we're shutting down */ |
| 366 | if (work_enabled) |
| 367 | schedule_delayed_work(&b->work, DEFAULT_TIMER_EXPIRE); |
| 368 | } |