blob: ae7ead82cbc9f7bd25a15ec373c14a1f2ea79bf5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/kernel/profile.c
3 * Simple profiling. Manages a direct-mapped profile hit count buffer,
4 * with configurable resolution, support for restricting the cpus on
5 * which profiling is done, and switching between cpu time and
6 * schedule() calls via kernel command line parameters passed at boot.
7 *
8 * Scheduler profiling support, Arjan van de Ven and Ingo Molnar,
9 * Red Hat, July 2004
10 * Consolidation of architecture support code for profiling,
11 * William Irwin, Oracle, July 2004
12 * Amortized hit count accounting via per-cpu open-addressed hashtables
13 * to resolve timer interrupt livelocks, William Irwin, Oracle, 2004
14 */
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/module.h>
17#include <linux/profile.h>
18#include <linux/bootmem.h>
19#include <linux/notifier.h>
20#include <linux/mm.h>
21#include <linux/cpumask.h>
22#include <linux/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/highmem.h>
Arjan van de Ven97d1f152006-03-23 03:00:24 -080024#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <asm/sections.h>
David Howells7d12e782006-10-05 14:55:46 +010026#include <asm/irq_regs.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040027#include <asm/ptrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29struct profile_hit {
30 u32 pc, hits;
31};
32#define PROFILE_GRPSHIFT 3
33#define PROFILE_GRPSZ (1 << PROFILE_GRPSHIFT)
34#define NR_PROFILE_HIT (PAGE_SIZE/sizeof(struct profile_hit))
35#define NR_PROFILE_GRP (NR_PROFILE_HIT/PROFILE_GRPSZ)
36
37/* Oprofile timer tick hook */
Adrian Bunkb012d342007-10-16 23:29:26 -070038static int (*timer_hook)(struct pt_regs *) __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40static atomic_t *prof_buffer;
41static unsigned long prof_len, prof_shift;
Ingo Molnar07031e12007-01-10 23:15:38 -080042
Ingo Molnarece8a682006-12-06 20:37:24 -080043int prof_on __read_mostly;
Ingo Molnar07031e12007-01-10 23:15:38 -080044EXPORT_SYMBOL_GPL(prof_on);
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046static cpumask_t prof_cpu_mask = CPU_MASK_ALL;
47#ifdef CONFIG_SMP
48static DEFINE_PER_CPU(struct profile_hit *[2], cpu_profile_hits);
49static DEFINE_PER_CPU(int, cpu_profile_flip);
Arjan van de Ven97d1f152006-03-23 03:00:24 -080050static DEFINE_MUTEX(profile_flip_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#endif /* CONFIG_SMP */
52
Paolo Ciarrocchi1ad82fd2008-01-25 21:08:33 +010053static int __init profile_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054{
William Lee Irwin IIIdfaa9c92005-05-16 21:53:58 -070055 static char __initdata schedstr[] = "schedule";
Ingo Molnarece8a682006-12-06 20:37:24 -080056 static char __initdata sleepstr[] = "sleep";
Ingo Molnar07031e12007-01-10 23:15:38 -080057 static char __initdata kvmstr[] = "kvm";
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 int par;
59
Ingo Molnarece8a682006-12-06 20:37:24 -080060 if (!strncmp(str, sleepstr, strlen(sleepstr))) {
Mel Gormanb3da2a72007-10-24 18:23:50 +020061#ifdef CONFIG_SCHEDSTATS
Ingo Molnarece8a682006-12-06 20:37:24 -080062 prof_on = SLEEP_PROFILING;
63 if (str[strlen(sleepstr)] == ',')
64 str += strlen(sleepstr) + 1;
65 if (get_option(&str, &par))
66 prof_shift = par;
67 printk(KERN_INFO
68 "kernel sleep profiling enabled (shift: %ld)\n",
69 prof_shift);
Mel Gormanb3da2a72007-10-24 18:23:50 +020070#else
71 printk(KERN_WARNING
72 "kernel sleep profiling requires CONFIG_SCHEDSTATS\n");
73#endif /* CONFIG_SCHEDSTATS */
Ingo Molnara75acf82007-01-05 16:36:29 -080074 } else if (!strncmp(str, schedstr, strlen(schedstr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 prof_on = SCHED_PROFILING;
William Lee Irwin IIIdfaa9c92005-05-16 21:53:58 -070076 if (str[strlen(schedstr)] == ',')
77 str += strlen(schedstr) + 1;
78 if (get_option(&str, &par))
79 prof_shift = par;
80 printk(KERN_INFO
81 "kernel schedule profiling enabled (shift: %ld)\n",
82 prof_shift);
Ingo Molnar07031e12007-01-10 23:15:38 -080083 } else if (!strncmp(str, kvmstr, strlen(kvmstr))) {
84 prof_on = KVM_PROFILING;
85 if (str[strlen(kvmstr)] == ',')
86 str += strlen(kvmstr) + 1;
87 if (get_option(&str, &par))
88 prof_shift = par;
89 printk(KERN_INFO
90 "kernel KVM profiling enabled (shift: %ld)\n",
91 prof_shift);
William Lee Irwin IIIdfaa9c92005-05-16 21:53:58 -070092 } else if (get_option(&str, &par)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 prof_shift = par;
94 prof_on = CPU_PROFILING;
95 printk(KERN_INFO "kernel profiling enabled (shift: %ld)\n",
96 prof_shift);
97 }
98 return 1;
99}
100__setup("profile=", profile_setup);
101
102
103void __init profile_init(void)
104{
Paolo Ciarrocchi1ad82fd2008-01-25 21:08:33 +0100105 if (!prof_on)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 return;
Paolo Ciarrocchi1ad82fd2008-01-25 21:08:33 +0100107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 /* only text is profiled */
109 prof_len = (_etext - _stext) >> prof_shift;
110 prof_buffer = alloc_bootmem(prof_len*sizeof(atomic_t));
111}
112
113/* Profile event notifications */
Paolo Ciarrocchi1ad82fd2008-01-25 21:08:33 +0100114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115#ifdef CONFIG_PROFILING
Paolo Ciarrocchi1ad82fd2008-01-25 21:08:33 +0100116
Alan Sterne041c682006-03-27 01:16:30 -0800117static BLOCKING_NOTIFIER_HEAD(task_exit_notifier);
118static ATOMIC_NOTIFIER_HEAD(task_free_notifier);
119static BLOCKING_NOTIFIER_HEAD(munmap_notifier);
Paolo Ciarrocchi1ad82fd2008-01-25 21:08:33 +0100120
121void profile_task_exit(struct task_struct *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
Alan Sterne041c682006-03-27 01:16:30 -0800123 blocking_notifier_call_chain(&task_exit_notifier, 0, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124}
Paolo Ciarrocchi1ad82fd2008-01-25 21:08:33 +0100125
126int profile_handoff_task(struct task_struct *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127{
128 int ret;
Alan Sterne041c682006-03-27 01:16:30 -0800129 ret = atomic_notifier_call_chain(&task_free_notifier, 0, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 return (ret == NOTIFY_OK) ? 1 : 0;
131}
132
133void profile_munmap(unsigned long addr)
134{
Alan Sterne041c682006-03-27 01:16:30 -0800135 blocking_notifier_call_chain(&munmap_notifier, 0, (void *)addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
137
Paolo Ciarrocchi1ad82fd2008-01-25 21:08:33 +0100138int task_handoff_register(struct notifier_block *n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
Alan Sterne041c682006-03-27 01:16:30 -0800140 return atomic_notifier_chain_register(&task_free_notifier, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141}
Paolo Ciarrocchi1ad82fd2008-01-25 21:08:33 +0100142EXPORT_SYMBOL_GPL(task_handoff_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Paolo Ciarrocchi1ad82fd2008-01-25 21:08:33 +0100144int task_handoff_unregister(struct notifier_block *n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
Alan Sterne041c682006-03-27 01:16:30 -0800146 return atomic_notifier_chain_unregister(&task_free_notifier, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147}
Paolo Ciarrocchi1ad82fd2008-01-25 21:08:33 +0100148EXPORT_SYMBOL_GPL(task_handoff_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Paolo Ciarrocchi1ad82fd2008-01-25 21:08:33 +0100150int profile_event_register(enum profile_type type, struct notifier_block *n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
152 int err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 switch (type) {
Paolo Ciarrocchi1ad82fd2008-01-25 21:08:33 +0100155 case PROFILE_TASK_EXIT:
156 err = blocking_notifier_chain_register(
157 &task_exit_notifier, n);
158 break;
159 case PROFILE_MUNMAP:
160 err = blocking_notifier_chain_register(
161 &munmap_notifier, n);
162 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 }
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 return err;
166}
Paolo Ciarrocchi1ad82fd2008-01-25 21:08:33 +0100167EXPORT_SYMBOL_GPL(profile_event_register);
168
169int profile_event_unregister(enum profile_type type, struct notifier_block *n)
170{
171 int err = -EINVAL;
172
173 switch (type) {
174 case PROFILE_TASK_EXIT:
175 err = blocking_notifier_chain_unregister(
176 &task_exit_notifier, n);
177 break;
178 case PROFILE_MUNMAP:
179 err = blocking_notifier_chain_unregister(
180 &munmap_notifier, n);
181 break;
182 }
183
184 return err;
185}
186EXPORT_SYMBOL_GPL(profile_event_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188int register_timer_hook(int (*hook)(struct pt_regs *))
189{
190 if (timer_hook)
191 return -EBUSY;
192 timer_hook = hook;
193 return 0;
194}
Paolo Ciarrocchi1ad82fd2008-01-25 21:08:33 +0100195EXPORT_SYMBOL_GPL(register_timer_hook);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197void unregister_timer_hook(int (*hook)(struct pt_regs *))
198{
199 WARN_ON(hook != timer_hook);
200 timer_hook = NULL;
201 /* make sure all CPUs see the NULL hook */
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -0700202 synchronize_sched(); /* Allow ongoing interrupts to complete. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204EXPORT_SYMBOL_GPL(unregister_timer_hook);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206#endif /* CONFIG_PROFILING */
207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209#ifdef CONFIG_SMP
210/*
211 * Each cpu has a pair of open-addressed hashtables for pending
212 * profile hits. read_profile() IPI's all cpus to request them
213 * to flip buffers and flushes their contents to prof_buffer itself.
214 * Flip requests are serialized by the profile_flip_mutex. The sole
215 * use of having a second hashtable is for avoiding cacheline
216 * contention that would otherwise happen during flushes of pending
217 * profile hits required for the accuracy of reported profile hits
218 * and so resurrect the interrupt livelock issue.
219 *
220 * The open-addressed hashtables are indexed by profile buffer slot
221 * and hold the number of pending hits to that profile buffer slot on
222 * a cpu in an entry. When the hashtable overflows, all pending hits
223 * are accounted to their corresponding profile buffer slots with
224 * atomic_add() and the hashtable emptied. As numerous pending hits
225 * may be accounted to a profile buffer slot in a hashtable entry,
226 * this amortizes a number of atomic profile buffer increments likely
227 * to be far larger than the number of entries in the hashtable,
228 * particularly given that the number of distinct profile buffer
229 * positions to which hits are accounted during short intervals (e.g.
230 * several seconds) is usually very small. Exclusion from buffer
231 * flipping is provided by interrupt disablement (note that for
Ingo Molnarece8a682006-12-06 20:37:24 -0800232 * SCHED_PROFILING or SLEEP_PROFILING profile_hit() may be called from
233 * process context).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 * The hash function is meant to be lightweight as opposed to strong,
235 * and was vaguely inspired by ppc64 firmware-supported inverted
236 * pagetable hash functions, but uses a full hashtable full of finite
237 * collision chains, not just pairs of them.
238 *
239 * -- wli
240 */
241static void __profile_flip_buffers(void *unused)
242{
243 int cpu = smp_processor_id();
244
245 per_cpu(cpu_profile_flip, cpu) = !per_cpu(cpu_profile_flip, cpu);
246}
247
248static void profile_flip_buffers(void)
249{
250 int i, j, cpu;
251
Arjan van de Ven97d1f152006-03-23 03:00:24 -0800252 mutex_lock(&profile_flip_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 j = per_cpu(cpu_profile_flip, get_cpu());
254 put_cpu();
255 on_each_cpu(__profile_flip_buffers, NULL, 0, 1);
256 for_each_online_cpu(cpu) {
257 struct profile_hit *hits = per_cpu(cpu_profile_hits, cpu)[j];
258 for (i = 0; i < NR_PROFILE_HIT; ++i) {
259 if (!hits[i].hits) {
260 if (hits[i].pc)
261 hits[i].pc = 0;
262 continue;
263 }
264 atomic_add(hits[i].hits, &prof_buffer[hits[i].pc]);
265 hits[i].hits = hits[i].pc = 0;
266 }
267 }
Arjan van de Ven97d1f152006-03-23 03:00:24 -0800268 mutex_unlock(&profile_flip_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
270
271static void profile_discard_flip_buffers(void)
272{
273 int i, cpu;
274
Arjan van de Ven97d1f152006-03-23 03:00:24 -0800275 mutex_lock(&profile_flip_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 i = per_cpu(cpu_profile_flip, get_cpu());
277 put_cpu();
278 on_each_cpu(__profile_flip_buffers, NULL, 0, 1);
279 for_each_online_cpu(cpu) {
280 struct profile_hit *hits = per_cpu(cpu_profile_hits, cpu)[i];
281 memset(hits, 0, NR_PROFILE_HIT*sizeof(struct profile_hit));
282 }
Arjan van de Ven97d1f152006-03-23 03:00:24 -0800283 mutex_unlock(&profile_flip_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
Ingo Molnarece8a682006-12-06 20:37:24 -0800286void profile_hits(int type, void *__pc, unsigned int nr_hits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
288 unsigned long primary, secondary, flags, pc = (unsigned long)__pc;
289 int i, j, cpu;
290 struct profile_hit *hits;
291
292 if (prof_on != type || !prof_buffer)
293 return;
294 pc = min((pc - (unsigned long)_stext) >> prof_shift, prof_len - 1);
295 i = primary = (pc & (NR_PROFILE_GRP - 1)) << PROFILE_GRPSHIFT;
296 secondary = (~(pc << 1) & (NR_PROFILE_GRP - 1)) << PROFILE_GRPSHIFT;
297 cpu = get_cpu();
298 hits = per_cpu(cpu_profile_hits, cpu)[per_cpu(cpu_profile_flip, cpu)];
299 if (!hits) {
300 put_cpu();
301 return;
302 }
Ingo Molnarece8a682006-12-06 20:37:24 -0800303 /*
304 * We buffer the global profiler buffer into a per-CPU
305 * queue and thus reduce the number of global (and possibly
306 * NUMA-alien) accesses. The write-queue is self-coalescing:
307 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 local_irq_save(flags);
309 do {
310 for (j = 0; j < PROFILE_GRPSZ; ++j) {
311 if (hits[i + j].pc == pc) {
Ingo Molnarece8a682006-12-06 20:37:24 -0800312 hits[i + j].hits += nr_hits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 goto out;
314 } else if (!hits[i + j].hits) {
315 hits[i + j].pc = pc;
Ingo Molnarece8a682006-12-06 20:37:24 -0800316 hits[i + j].hits = nr_hits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 goto out;
318 }
319 }
320 i = (i + secondary) & (NR_PROFILE_HIT - 1);
321 } while (i != primary);
Ingo Molnarece8a682006-12-06 20:37:24 -0800322
323 /*
324 * Add the current hit(s) and flush the write-queue out
325 * to the global buffer:
326 */
327 atomic_add(nr_hits, &prof_buffer[pc]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 for (i = 0; i < NR_PROFILE_HIT; ++i) {
329 atomic_add(hits[i].hits, &prof_buffer[hits[i].pc]);
330 hits[i].pc = hits[i].hits = 0;
331 }
332out:
333 local_irq_restore(flags);
334 put_cpu();
335}
336
Chandra Seetharaman9c7b2162006-06-27 02:54:07 -0700337static int __devinit profile_cpu_callback(struct notifier_block *info,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 unsigned long action, void *__cpu)
339{
340 int node, cpu = (unsigned long)__cpu;
341 struct page *page;
342
343 switch (action) {
344 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700345 case CPU_UP_PREPARE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 node = cpu_to_node(cpu);
347 per_cpu(cpu_profile_flip, cpu) = 0;
348 if (!per_cpu(cpu_profile_hits, cpu)[1]) {
Christoph Lameterfbd98162006-09-25 23:31:45 -0700349 page = alloc_pages_node(node,
Christoph Lameter4199cfa2007-10-16 01:25:34 -0700350 GFP_KERNEL | __GFP_ZERO,
Christoph Lameterfbd98162006-09-25 23:31:45 -0700351 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 if (!page)
353 return NOTIFY_BAD;
354 per_cpu(cpu_profile_hits, cpu)[1] = page_address(page);
355 }
356 if (!per_cpu(cpu_profile_hits, cpu)[0]) {
Christoph Lameterfbd98162006-09-25 23:31:45 -0700357 page = alloc_pages_node(node,
Christoph Lameter4199cfa2007-10-16 01:25:34 -0700358 GFP_KERNEL | __GFP_ZERO,
Christoph Lameterfbd98162006-09-25 23:31:45 -0700359 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 if (!page)
361 goto out_free;
362 per_cpu(cpu_profile_hits, cpu)[0] = page_address(page);
363 }
364 break;
Paolo Ciarrocchi1ad82fd2008-01-25 21:08:33 +0100365out_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 page = virt_to_page(per_cpu(cpu_profile_hits, cpu)[1]);
367 per_cpu(cpu_profile_hits, cpu)[1] = NULL;
368 __free_page(page);
369 return NOTIFY_BAD;
370 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700371 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 cpu_set(cpu, prof_cpu_mask);
373 break;
374 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700375 case CPU_UP_CANCELED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700377 case CPU_DEAD_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 cpu_clear(cpu, prof_cpu_mask);
379 if (per_cpu(cpu_profile_hits, cpu)[0]) {
380 page = virt_to_page(per_cpu(cpu_profile_hits, cpu)[0]);
381 per_cpu(cpu_profile_hits, cpu)[0] = NULL;
382 __free_page(page);
383 }
384 if (per_cpu(cpu_profile_hits, cpu)[1]) {
385 page = virt_to_page(per_cpu(cpu_profile_hits, cpu)[1]);
386 per_cpu(cpu_profile_hits, cpu)[1] = NULL;
387 __free_page(page);
388 }
389 break;
390 }
391 return NOTIFY_OK;
392}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393#else /* !CONFIG_SMP */
394#define profile_flip_buffers() do { } while (0)
395#define profile_discard_flip_buffers() do { } while (0)
Ingo Molnar023160672006-12-06 20:38:17 -0800396#define profile_cpu_callback NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Ingo Molnarece8a682006-12-06 20:37:24 -0800398void profile_hits(int type, void *__pc, unsigned int nr_hits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399{
400 unsigned long pc;
401
402 if (prof_on != type || !prof_buffer)
403 return;
404 pc = ((unsigned long)__pc - (unsigned long)_stext) >> prof_shift;
Ingo Molnarece8a682006-12-06 20:37:24 -0800405 atomic_add(nr_hits, &prof_buffer[min(pc, prof_len - 1)]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406}
407#endif /* !CONFIG_SMP */
Andrew Mortonbbe1a59b2007-01-22 20:40:33 -0800408EXPORT_SYMBOL_GPL(profile_hits);
409
David Howells7d12e782006-10-05 14:55:46 +0100410void profile_tick(int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411{
David Howells7d12e782006-10-05 14:55:46 +0100412 struct pt_regs *regs = get_irq_regs();
413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 if (type == CPU_PROFILING && timer_hook)
415 timer_hook(regs);
416 if (!user_mode(regs) && cpu_isset(smp_processor_id(), prof_cpu_mask))
417 profile_hit(type, (void *)profile_pc(regs));
418}
419
420#ifdef CONFIG_PROC_FS
421#include <linux/proc_fs.h>
422#include <asm/uaccess.h>
423#include <asm/ptrace.h>
424
Paolo Ciarrocchi1ad82fd2008-01-25 21:08:33 +0100425static int prof_cpu_mask_read_proc(char *page, char **start, off_t off,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 int count, int *eof, void *data)
427{
428 int len = cpumask_scnprintf(page, count, *(cpumask_t *)data);
429 if (count - len < 2)
430 return -EINVAL;
431 len += sprintf(page + len, "\n");
432 return len;
433}
434
Paolo Ciarrocchi1ad82fd2008-01-25 21:08:33 +0100435static int prof_cpu_mask_write_proc(struct file *file,
436 const char __user *buffer, unsigned long count, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
438 cpumask_t *mask = (cpumask_t *)data;
439 unsigned long full_count = count, err;
440 cpumask_t new_value;
441
Reinette Chatre01a3ee22006-10-11 01:21:55 -0700442 err = cpumask_parse_user(buffer, count, new_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 if (err)
444 return err;
445
446 *mask = new_value;
447 return full_count;
448}
449
450void create_prof_cpu_mask(struct proc_dir_entry *root_irq_dir)
451{
452 struct proc_dir_entry *entry;
453
454 /* create /proc/irq/prof_cpu_mask */
Paolo Ciarrocchi1ad82fd2008-01-25 21:08:33 +0100455 entry = create_proc_entry("prof_cpu_mask", 0600, root_irq_dir);
456 if (!entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 entry->data = (void *)&prof_cpu_mask;
459 entry->read_proc = prof_cpu_mask_read_proc;
460 entry->write_proc = prof_cpu_mask_write_proc;
461}
462
463/*
464 * This function accesses profiling information. The returned data is
465 * binary: the sampling step and the actual contents of the profile
466 * buffer. Use of the program readprofile is recommended in order to
467 * get meaningful info out of these data.
468 */
469static ssize_t
470read_profile(struct file *file, char __user *buf, size_t count, loff_t *ppos)
471{
472 unsigned long p = *ppos;
473 ssize_t read;
Paolo Ciarrocchi1ad82fd2008-01-25 21:08:33 +0100474 char *pnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 unsigned int sample_step = 1 << prof_shift;
476
477 profile_flip_buffers();
478 if (p >= (prof_len+1)*sizeof(unsigned int))
479 return 0;
480 if (count > (prof_len+1)*sizeof(unsigned int) - p)
481 count = (prof_len+1)*sizeof(unsigned int) - p;
482 read = 0;
483
484 while (p < sizeof(unsigned int) && count > 0) {
Paolo Ciarrocchi1ad82fd2008-01-25 21:08:33 +0100485 if (put_user(*((char *)(&sample_step)+p), buf))
Heiko Carstens064b0222006-12-06 20:36:37 -0800486 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 buf++; p++; count--; read++;
488 }
489 pnt = (char *)prof_buffer + p - sizeof(atomic_t);
Paolo Ciarrocchi1ad82fd2008-01-25 21:08:33 +0100490 if (copy_to_user(buf, (void *)pnt, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 return -EFAULT;
492 read += count;
493 *ppos += read;
494 return read;
495}
496
497/*
498 * Writing to /proc/profile resets the counters
499 *
500 * Writing a 'profiling multiplier' value into it also re-sets the profiling
501 * interrupt frequency, on architectures that support this.
502 */
503static ssize_t write_profile(struct file *file, const char __user *buf,
504 size_t count, loff_t *ppos)
505{
506#ifdef CONFIG_SMP
Paolo Ciarrocchi1ad82fd2008-01-25 21:08:33 +0100507 extern int setup_profiling_timer(unsigned int multiplier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
509 if (count == sizeof(int)) {
510 unsigned int multiplier;
511
512 if (copy_from_user(&multiplier, buf, sizeof(int)))
513 return -EFAULT;
514
515 if (setup_profiling_timer(multiplier))
516 return -EINVAL;
517 }
518#endif
519 profile_discard_flip_buffers();
520 memset(prof_buffer, 0, prof_len * sizeof(atomic_t));
521 return count;
522}
523
Helge Deller15ad7cd2006-12-06 20:40:36 -0800524static const struct file_operations proc_profile_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 .read = read_profile,
526 .write = write_profile,
527};
528
529#ifdef CONFIG_SMP
530static void __init profile_nop(void *unused)
531{
532}
533
534static int __init create_hash_tables(void)
535{
536 int cpu;
537
538 for_each_online_cpu(cpu) {
539 int node = cpu_to_node(cpu);
540 struct page *page;
541
Christoph Lameterfbd98162006-09-25 23:31:45 -0700542 page = alloc_pages_node(node,
543 GFP_KERNEL | __GFP_ZERO | GFP_THISNODE,
544 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 if (!page)
546 goto out_cleanup;
547 per_cpu(cpu_profile_hits, cpu)[1]
548 = (struct profile_hit *)page_address(page);
Christoph Lameterfbd98162006-09-25 23:31:45 -0700549 page = alloc_pages_node(node,
550 GFP_KERNEL | __GFP_ZERO | GFP_THISNODE,
551 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 if (!page)
553 goto out_cleanup;
554 per_cpu(cpu_profile_hits, cpu)[0]
555 = (struct profile_hit *)page_address(page);
556 }
557 return 0;
558out_cleanup:
559 prof_on = 0;
akpm@osdl.orgd59dd462005-05-01 08:58:47 -0700560 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 on_each_cpu(profile_nop, NULL, 0, 1);
562 for_each_online_cpu(cpu) {
563 struct page *page;
564
565 if (per_cpu(cpu_profile_hits, cpu)[0]) {
566 page = virt_to_page(per_cpu(cpu_profile_hits, cpu)[0]);
567 per_cpu(cpu_profile_hits, cpu)[0] = NULL;
568 __free_page(page);
569 }
570 if (per_cpu(cpu_profile_hits, cpu)[1]) {
571 page = virt_to_page(per_cpu(cpu_profile_hits, cpu)[1]);
572 per_cpu(cpu_profile_hits, cpu)[1] = NULL;
573 __free_page(page);
574 }
575 }
576 return -1;
577}
578#else
579#define create_hash_tables() ({ 0; })
580#endif
581
582static int __init create_proc_profile(void)
583{
584 struct proc_dir_entry *entry;
585
586 if (!prof_on)
587 return 0;
588 if (create_hash_tables())
589 return -1;
Denis V. Lunevc33fff02008-04-29 01:02:31 -0700590 entry = proc_create("profile", S_IWUSR | S_IRUGO,
591 NULL, &proc_profile_operations);
Paolo Ciarrocchi1ad82fd2008-01-25 21:08:33 +0100592 if (!entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 entry->size = (1+prof_len) * sizeof(atomic_t);
595 hotcpu_notifier(profile_cpu_callback, 0);
596 return 0;
597}
598module_init(create_proc_profile);
599#endif /* CONFIG_PROC_FS */