Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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, |
Nadia Yvette Chambers | 6d49e35 | 2012-12-06 10:39:54 +0100 | [diff] [blame] | 11 | * Nadia Yvette Chambers, Oracle, July 2004 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | * Amortized hit count accounting via per-cpu open-addressed hashtables |
Nadia Yvette Chambers | 6d49e35 | 2012-12-06 10:39:54 +0100 | [diff] [blame] | 13 | * to resolve timer interrupt livelocks, Nadia Yvette Chambers, |
| 14 | * Oracle, 2004 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | */ |
| 16 | |
Paul Gortmaker | 9984de1 | 2011-05-23 14:51:41 -0400 | [diff] [blame] | 17 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/profile.h> |
| 19 | #include <linux/bootmem.h> |
| 20 | #include <linux/notifier.h> |
| 21 | #include <linux/mm.h> |
| 22 | #include <linux/cpumask.h> |
| 23 | #include <linux/cpu.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/highmem.h> |
Arjan van de Ven | 97d1f15 | 2006-03-23 03:00:24 -0800 | [diff] [blame] | 25 | #include <linux/mutex.h> |
Dave Hansen | 22b8ce9 | 2008-10-15 22:01:46 -0700 | [diff] [blame] | 26 | #include <linux/slab.h> |
| 27 | #include <linux/vmalloc.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <asm/sections.h> |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 29 | #include <asm/irq_regs.h> |
Alexey Dobriyan | e8edc6e | 2007-05-21 01:22:52 +0400 | [diff] [blame] | 30 | #include <asm/ptrace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
| 32 | struct profile_hit { |
| 33 | u32 pc, hits; |
| 34 | }; |
| 35 | #define PROFILE_GRPSHIFT 3 |
| 36 | #define PROFILE_GRPSZ (1 << PROFILE_GRPSHIFT) |
| 37 | #define NR_PROFILE_HIT (PAGE_SIZE/sizeof(struct profile_hit)) |
| 38 | #define NR_PROFILE_GRP (NR_PROFILE_HIT/PROFILE_GRPSZ) |
| 39 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | static atomic_t *prof_buffer; |
| 41 | static unsigned long prof_len, prof_shift; |
Ingo Molnar | 07031e1 | 2007-01-10 23:15:38 -0800 | [diff] [blame] | 42 | |
Ingo Molnar | ece8a68 | 2006-12-06 20:37:24 -0800 | [diff] [blame] | 43 | int prof_on __read_mostly; |
Ingo Molnar | 07031e1 | 2007-01-10 23:15:38 -0800 | [diff] [blame] | 44 | EXPORT_SYMBOL_GPL(prof_on); |
| 45 | |
Rusty Russell | c309b91 | 2009-01-01 10:12:27 +1030 | [diff] [blame] | 46 | static cpumask_var_t prof_cpu_mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #ifdef CONFIG_SMP |
| 48 | static DEFINE_PER_CPU(struct profile_hit *[2], cpu_profile_hits); |
| 49 | static DEFINE_PER_CPU(int, cpu_profile_flip); |
Arjan van de Ven | 97d1f15 | 2006-03-23 03:00:24 -0800 | [diff] [blame] | 50 | static DEFINE_MUTEX(profile_flip_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | #endif /* CONFIG_SMP */ |
| 52 | |
Dave Hansen | 22b8ce9 | 2008-10-15 22:01:46 -0700 | [diff] [blame] | 53 | int profile_setup(char *str) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | { |
Fabian Frederick | f3da64d | 2014-06-06 14:37:30 -0700 | [diff] [blame] | 55 | static const char schedstr[] = "schedule"; |
| 56 | static const char sleepstr[] = "sleep"; |
| 57 | static const char kvmstr[] = "kvm"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | int par; |
| 59 | |
Ingo Molnar | ece8a68 | 2006-12-06 20:37:24 -0800 | [diff] [blame] | 60 | if (!strncmp(str, sleepstr, strlen(sleepstr))) { |
Mel Gorman | b3da2a7 | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 61 | #ifdef CONFIG_SCHEDSTATS |
Ingo Molnar | ece8a68 | 2006-12-06 20:37:24 -0800 | [diff] [blame] | 62 | prof_on = SLEEP_PROFILING; |
| 63 | if (str[strlen(sleepstr)] == ',') |
| 64 | str += strlen(sleepstr) + 1; |
| 65 | if (get_option(&str, &par)) |
| 66 | prof_shift = par; |
Fabian Frederick | aba871f | 2014-06-06 14:37:29 -0700 | [diff] [blame] | 67 | pr_info("kernel sleep profiling enabled (shift: %ld)\n", |
Ingo Molnar | ece8a68 | 2006-12-06 20:37:24 -0800 | [diff] [blame] | 68 | prof_shift); |
Mel Gorman | b3da2a7 | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 69 | #else |
Fabian Frederick | aba871f | 2014-06-06 14:37:29 -0700 | [diff] [blame] | 70 | pr_warn("kernel sleep profiling requires CONFIG_SCHEDSTATS\n"); |
Mel Gorman | b3da2a7 | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 71 | #endif /* CONFIG_SCHEDSTATS */ |
Ingo Molnar | a75acf8 | 2007-01-05 16:36:29 -0800 | [diff] [blame] | 72 | } else if (!strncmp(str, schedstr, strlen(schedstr))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | prof_on = SCHED_PROFILING; |
William Lee Irwin III | dfaa9c9 | 2005-05-16 21:53:58 -0700 | [diff] [blame] | 74 | if (str[strlen(schedstr)] == ',') |
| 75 | str += strlen(schedstr) + 1; |
| 76 | if (get_option(&str, &par)) |
| 77 | prof_shift = par; |
Fabian Frederick | aba871f | 2014-06-06 14:37:29 -0700 | [diff] [blame] | 78 | pr_info("kernel schedule profiling enabled (shift: %ld)\n", |
William Lee Irwin III | dfaa9c9 | 2005-05-16 21:53:58 -0700 | [diff] [blame] | 79 | prof_shift); |
Ingo Molnar | 07031e1 | 2007-01-10 23:15:38 -0800 | [diff] [blame] | 80 | } else if (!strncmp(str, kvmstr, strlen(kvmstr))) { |
| 81 | prof_on = KVM_PROFILING; |
| 82 | if (str[strlen(kvmstr)] == ',') |
| 83 | str += strlen(kvmstr) + 1; |
| 84 | if (get_option(&str, &par)) |
| 85 | prof_shift = par; |
Fabian Frederick | aba871f | 2014-06-06 14:37:29 -0700 | [diff] [blame] | 86 | pr_info("kernel KVM profiling enabled (shift: %ld)\n", |
Ingo Molnar | 07031e1 | 2007-01-10 23:15:38 -0800 | [diff] [blame] | 87 | prof_shift); |
William Lee Irwin III | dfaa9c9 | 2005-05-16 21:53:58 -0700 | [diff] [blame] | 88 | } else if (get_option(&str, &par)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | prof_shift = par; |
| 90 | prof_on = CPU_PROFILING; |
Fabian Frederick | aba871f | 2014-06-06 14:37:29 -0700 | [diff] [blame] | 91 | pr_info("kernel profiling enabled (shift: %ld)\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | prof_shift); |
| 93 | } |
| 94 | return 1; |
| 95 | } |
| 96 | __setup("profile=", profile_setup); |
| 97 | |
| 98 | |
Paul Mundt | ce05fcc | 2008-10-29 14:01:07 -0700 | [diff] [blame] | 99 | int __ref profile_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | { |
Dave Hansen | 22b8ce9 | 2008-10-15 22:01:46 -0700 | [diff] [blame] | 101 | int buffer_bytes; |
Paolo Ciarrocchi | 1ad82fd | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 102 | if (!prof_on) |
Dave Hansen | 22b8ce9 | 2008-10-15 22:01:46 -0700 | [diff] [blame] | 103 | return 0; |
Paolo Ciarrocchi | 1ad82fd | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 104 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | /* only text is profiled */ |
| 106 | prof_len = (_etext - _stext) >> prof_shift; |
Dave Hansen | 22b8ce9 | 2008-10-15 22:01:46 -0700 | [diff] [blame] | 107 | buffer_bytes = prof_len*sizeof(atomic_t); |
Dave Hansen | 22b8ce9 | 2008-10-15 22:01:46 -0700 | [diff] [blame] | 108 | |
Rusty Russell | c309b91 | 2009-01-01 10:12:27 +1030 | [diff] [blame] | 109 | if (!alloc_cpumask_var(&prof_cpu_mask, GFP_KERNEL)) |
| 110 | return -ENOMEM; |
| 111 | |
Hugh Dickins | acd8957 | 2009-02-09 19:20:50 +0000 | [diff] [blame] | 112 | cpumask_copy(prof_cpu_mask, cpu_possible_mask); |
| 113 | |
Mel Gorman | b62f495 | 2009-07-29 15:04:09 -0700 | [diff] [blame] | 114 | prof_buffer = kzalloc(buffer_bytes, GFP_KERNEL|__GFP_NOWARN); |
Dave Hansen | 22b8ce9 | 2008-10-15 22:01:46 -0700 | [diff] [blame] | 115 | if (prof_buffer) |
| 116 | return 0; |
| 117 | |
Mel Gorman | b62f495 | 2009-07-29 15:04:09 -0700 | [diff] [blame] | 118 | prof_buffer = alloc_pages_exact(buffer_bytes, |
| 119 | GFP_KERNEL|__GFP_ZERO|__GFP_NOWARN); |
Dave Hansen | 22b8ce9 | 2008-10-15 22:01:46 -0700 | [diff] [blame] | 120 | if (prof_buffer) |
| 121 | return 0; |
| 122 | |
Jesper Juhl | 559fa6e | 2010-10-30 21:56:26 +0200 | [diff] [blame] | 123 | prof_buffer = vzalloc(buffer_bytes); |
| 124 | if (prof_buffer) |
Dave Hansen | 22b8ce9 | 2008-10-15 22:01:46 -0700 | [diff] [blame] | 125 | return 0; |
| 126 | |
Rusty Russell | c309b91 | 2009-01-01 10:12:27 +1030 | [diff] [blame] | 127 | free_cpumask_var(prof_cpu_mask); |
Dave Hansen | 22b8ce9 | 2008-10-15 22:01:46 -0700 | [diff] [blame] | 128 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | } |
| 130 | |
| 131 | /* Profile event notifications */ |
Paolo Ciarrocchi | 1ad82fd | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 132 | |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 133 | static BLOCKING_NOTIFIER_HEAD(task_exit_notifier); |
| 134 | static ATOMIC_NOTIFIER_HEAD(task_free_notifier); |
| 135 | static BLOCKING_NOTIFIER_HEAD(munmap_notifier); |
Paolo Ciarrocchi | 1ad82fd | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 136 | |
| 137 | void profile_task_exit(struct task_struct *task) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | { |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 139 | blocking_notifier_call_chain(&task_exit_notifier, 0, task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | } |
Paolo Ciarrocchi | 1ad82fd | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 141 | |
| 142 | int profile_handoff_task(struct task_struct *task) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | { |
| 144 | int ret; |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 145 | ret = atomic_notifier_call_chain(&task_free_notifier, 0, task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | return (ret == NOTIFY_OK) ? 1 : 0; |
| 147 | } |
| 148 | |
| 149 | void profile_munmap(unsigned long addr) |
| 150 | { |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 151 | blocking_notifier_call_chain(&munmap_notifier, 0, (void *)addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | } |
| 153 | |
Paolo Ciarrocchi | 1ad82fd | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 154 | int task_handoff_register(struct notifier_block *n) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | { |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 156 | return atomic_notifier_chain_register(&task_free_notifier, n); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | } |
Paolo Ciarrocchi | 1ad82fd | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 158 | EXPORT_SYMBOL_GPL(task_handoff_register); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | |
Paolo Ciarrocchi | 1ad82fd | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 160 | int task_handoff_unregister(struct notifier_block *n) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | { |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 162 | return atomic_notifier_chain_unregister(&task_free_notifier, n); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | } |
Paolo Ciarrocchi | 1ad82fd | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 164 | EXPORT_SYMBOL_GPL(task_handoff_unregister); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | |
Paolo Ciarrocchi | 1ad82fd | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 166 | int profile_event_register(enum profile_type type, struct notifier_block *n) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | { |
| 168 | int err = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | switch (type) { |
Paolo Ciarrocchi | 1ad82fd | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 171 | case PROFILE_TASK_EXIT: |
| 172 | err = blocking_notifier_chain_register( |
| 173 | &task_exit_notifier, n); |
| 174 | break; |
| 175 | case PROFILE_MUNMAP: |
| 176 | err = blocking_notifier_chain_register( |
| 177 | &munmap_notifier, n); |
| 178 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | } |
| 180 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | return err; |
| 182 | } |
Paolo Ciarrocchi | 1ad82fd | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 183 | EXPORT_SYMBOL_GPL(profile_event_register); |
| 184 | |
| 185 | int profile_event_unregister(enum profile_type type, struct notifier_block *n) |
| 186 | { |
| 187 | int err = -EINVAL; |
| 188 | |
| 189 | switch (type) { |
| 190 | case PROFILE_TASK_EXIT: |
| 191 | err = blocking_notifier_chain_unregister( |
| 192 | &task_exit_notifier, n); |
| 193 | break; |
| 194 | case PROFILE_MUNMAP: |
| 195 | err = blocking_notifier_chain_unregister( |
| 196 | &munmap_notifier, n); |
| 197 | break; |
| 198 | } |
| 199 | |
| 200 | return err; |
| 201 | } |
| 202 | EXPORT_SYMBOL_GPL(profile_event_unregister); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | #ifdef CONFIG_SMP |
| 205 | /* |
| 206 | * Each cpu has a pair of open-addressed hashtables for pending |
| 207 | * profile hits. read_profile() IPI's all cpus to request them |
| 208 | * to flip buffers and flushes their contents to prof_buffer itself. |
| 209 | * Flip requests are serialized by the profile_flip_mutex. The sole |
| 210 | * use of having a second hashtable is for avoiding cacheline |
| 211 | * contention that would otherwise happen during flushes of pending |
| 212 | * profile hits required for the accuracy of reported profile hits |
| 213 | * and so resurrect the interrupt livelock issue. |
| 214 | * |
| 215 | * The open-addressed hashtables are indexed by profile buffer slot |
| 216 | * and hold the number of pending hits to that profile buffer slot on |
| 217 | * a cpu in an entry. When the hashtable overflows, all pending hits |
| 218 | * are accounted to their corresponding profile buffer slots with |
| 219 | * atomic_add() and the hashtable emptied. As numerous pending hits |
| 220 | * may be accounted to a profile buffer slot in a hashtable entry, |
| 221 | * this amortizes a number of atomic profile buffer increments likely |
| 222 | * to be far larger than the number of entries in the hashtable, |
| 223 | * particularly given that the number of distinct profile buffer |
| 224 | * positions to which hits are accounted during short intervals (e.g. |
| 225 | * several seconds) is usually very small. Exclusion from buffer |
| 226 | * flipping is provided by interrupt disablement (note that for |
Ingo Molnar | ece8a68 | 2006-12-06 20:37:24 -0800 | [diff] [blame] | 227 | * SCHED_PROFILING or SLEEP_PROFILING profile_hit() may be called from |
| 228 | * process context). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | * The hash function is meant to be lightweight as opposed to strong, |
| 230 | * and was vaguely inspired by ppc64 firmware-supported inverted |
| 231 | * pagetable hash functions, but uses a full hashtable full of finite |
| 232 | * collision chains, not just pairs of them. |
| 233 | * |
Nadia Yvette Chambers | 6d49e35 | 2012-12-06 10:39:54 +0100 | [diff] [blame] | 234 | * -- nyc |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | */ |
| 236 | static void __profile_flip_buffers(void *unused) |
| 237 | { |
| 238 | int cpu = smp_processor_id(); |
| 239 | |
| 240 | per_cpu(cpu_profile_flip, cpu) = !per_cpu(cpu_profile_flip, cpu); |
| 241 | } |
| 242 | |
| 243 | static void profile_flip_buffers(void) |
| 244 | { |
| 245 | int i, j, cpu; |
| 246 | |
Arjan van de Ven | 97d1f15 | 2006-03-23 03:00:24 -0800 | [diff] [blame] | 247 | mutex_lock(&profile_flip_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | j = per_cpu(cpu_profile_flip, get_cpu()); |
| 249 | put_cpu(); |
Jens Axboe | 15c8b6c | 2008-05-09 09:39:44 +0200 | [diff] [blame] | 250 | on_each_cpu(__profile_flip_buffers, NULL, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | for_each_online_cpu(cpu) { |
| 252 | struct profile_hit *hits = per_cpu(cpu_profile_hits, cpu)[j]; |
| 253 | for (i = 0; i < NR_PROFILE_HIT; ++i) { |
| 254 | if (!hits[i].hits) { |
| 255 | if (hits[i].pc) |
| 256 | hits[i].pc = 0; |
| 257 | continue; |
| 258 | } |
| 259 | atomic_add(hits[i].hits, &prof_buffer[hits[i].pc]); |
| 260 | hits[i].hits = hits[i].pc = 0; |
| 261 | } |
| 262 | } |
Arjan van de Ven | 97d1f15 | 2006-03-23 03:00:24 -0800 | [diff] [blame] | 263 | mutex_unlock(&profile_flip_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | } |
| 265 | |
| 266 | static void profile_discard_flip_buffers(void) |
| 267 | { |
| 268 | int i, cpu; |
| 269 | |
Arjan van de Ven | 97d1f15 | 2006-03-23 03:00:24 -0800 | [diff] [blame] | 270 | mutex_lock(&profile_flip_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | i = per_cpu(cpu_profile_flip, get_cpu()); |
| 272 | put_cpu(); |
Jens Axboe | 15c8b6c | 2008-05-09 09:39:44 +0200 | [diff] [blame] | 273 | on_each_cpu(__profile_flip_buffers, NULL, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | for_each_online_cpu(cpu) { |
| 275 | struct profile_hit *hits = per_cpu(cpu_profile_hits, cpu)[i]; |
| 276 | memset(hits, 0, NR_PROFILE_HIT*sizeof(struct profile_hit)); |
| 277 | } |
Arjan van de Ven | 97d1f15 | 2006-03-23 03:00:24 -0800 | [diff] [blame] | 278 | mutex_unlock(&profile_flip_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | } |
| 280 | |
Rakib Mullick | 6f7bd76 | 2011-05-26 16:26:00 -0700 | [diff] [blame] | 281 | static void do_profile_hits(int type, void *__pc, unsigned int nr_hits) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | { |
| 283 | unsigned long primary, secondary, flags, pc = (unsigned long)__pc; |
| 284 | int i, j, cpu; |
| 285 | struct profile_hit *hits; |
| 286 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | pc = min((pc - (unsigned long)_stext) >> prof_shift, prof_len - 1); |
| 288 | i = primary = (pc & (NR_PROFILE_GRP - 1)) << PROFILE_GRPSHIFT; |
| 289 | secondary = (~(pc << 1) & (NR_PROFILE_GRP - 1)) << PROFILE_GRPSHIFT; |
| 290 | cpu = get_cpu(); |
| 291 | hits = per_cpu(cpu_profile_hits, cpu)[per_cpu(cpu_profile_flip, cpu)]; |
| 292 | if (!hits) { |
| 293 | put_cpu(); |
| 294 | return; |
| 295 | } |
Ingo Molnar | ece8a68 | 2006-12-06 20:37:24 -0800 | [diff] [blame] | 296 | /* |
| 297 | * We buffer the global profiler buffer into a per-CPU |
| 298 | * queue and thus reduce the number of global (and possibly |
| 299 | * NUMA-alien) accesses. The write-queue is self-coalescing: |
| 300 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | local_irq_save(flags); |
| 302 | do { |
| 303 | for (j = 0; j < PROFILE_GRPSZ; ++j) { |
| 304 | if (hits[i + j].pc == pc) { |
Ingo Molnar | ece8a68 | 2006-12-06 20:37:24 -0800 | [diff] [blame] | 305 | hits[i + j].hits += nr_hits; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | goto out; |
| 307 | } else if (!hits[i + j].hits) { |
| 308 | hits[i + j].pc = pc; |
Ingo Molnar | ece8a68 | 2006-12-06 20:37:24 -0800 | [diff] [blame] | 309 | hits[i + j].hits = nr_hits; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | goto out; |
| 311 | } |
| 312 | } |
| 313 | i = (i + secondary) & (NR_PROFILE_HIT - 1); |
| 314 | } while (i != primary); |
Ingo Molnar | ece8a68 | 2006-12-06 20:37:24 -0800 | [diff] [blame] | 315 | |
| 316 | /* |
| 317 | * Add the current hit(s) and flush the write-queue out |
| 318 | * to the global buffer: |
| 319 | */ |
| 320 | atomic_add(nr_hits, &prof_buffer[pc]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | for (i = 0; i < NR_PROFILE_HIT; ++i) { |
| 322 | atomic_add(hits[i].hits, &prof_buffer[hits[i].pc]); |
| 323 | hits[i].pc = hits[i].hits = 0; |
| 324 | } |
| 325 | out: |
| 326 | local_irq_restore(flags); |
| 327 | put_cpu(); |
| 328 | } |
| 329 | |
Paul Gortmaker | 0db0628 | 2013-06-19 14:53:51 -0400 | [diff] [blame] | 330 | static int profile_cpu_callback(struct notifier_block *info, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | unsigned long action, void *__cpu) |
| 332 | { |
| 333 | int node, cpu = (unsigned long)__cpu; |
| 334 | struct page *page; |
| 335 | |
| 336 | switch (action) { |
| 337 | case CPU_UP_PREPARE: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 338 | case CPU_UP_PREPARE_FROZEN: |
Lee Schermerhorn | 3dd6b5f | 2010-05-26 14:45:04 -0700 | [diff] [blame] | 339 | node = cpu_to_mem(cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | per_cpu(cpu_profile_flip, cpu) = 0; |
| 341 | if (!per_cpu(cpu_profile_hits, cpu)[1]) { |
Vlastimil Babka | 96db800 | 2015-09-08 15:03:50 -0700 | [diff] [blame] | 342 | page = __alloc_pages_node(node, |
Christoph Lameter | 4199cfa | 2007-10-16 01:25:34 -0700 | [diff] [blame] | 343 | GFP_KERNEL | __GFP_ZERO, |
Christoph Lameter | fbd9816 | 2006-09-25 23:31:45 -0700 | [diff] [blame] | 344 | 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | if (!page) |
Akinobu Mita | 80b5184 | 2010-05-26 14:43:32 -0700 | [diff] [blame] | 346 | return notifier_from_errno(-ENOMEM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | per_cpu(cpu_profile_hits, cpu)[1] = page_address(page); |
| 348 | } |
| 349 | if (!per_cpu(cpu_profile_hits, cpu)[0]) { |
Vlastimil Babka | 96db800 | 2015-09-08 15:03:50 -0700 | [diff] [blame] | 350 | page = __alloc_pages_node(node, |
Christoph Lameter | 4199cfa | 2007-10-16 01:25:34 -0700 | [diff] [blame] | 351 | GFP_KERNEL | __GFP_ZERO, |
Christoph Lameter | fbd9816 | 2006-09-25 23:31:45 -0700 | [diff] [blame] | 352 | 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | if (!page) |
| 354 | goto out_free; |
| 355 | per_cpu(cpu_profile_hits, cpu)[0] = page_address(page); |
| 356 | } |
| 357 | break; |
Paolo Ciarrocchi | 1ad82fd | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 358 | out_free: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | page = virt_to_page(per_cpu(cpu_profile_hits, cpu)[1]); |
| 360 | per_cpu(cpu_profile_hits, cpu)[1] = NULL; |
| 361 | __free_page(page); |
Akinobu Mita | 80b5184 | 2010-05-26 14:43:32 -0700 | [diff] [blame] | 362 | return notifier_from_errno(-ENOMEM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | case CPU_ONLINE: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 364 | case CPU_ONLINE_FROZEN: |
Rusty Russell | c309b91 | 2009-01-01 10:12:27 +1030 | [diff] [blame] | 365 | if (prof_cpu_mask != NULL) |
| 366 | cpumask_set_cpu(cpu, prof_cpu_mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | break; |
| 368 | case CPU_UP_CANCELED: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 369 | case CPU_UP_CANCELED_FROZEN: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | case CPU_DEAD: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 371 | case CPU_DEAD_FROZEN: |
Rusty Russell | c309b91 | 2009-01-01 10:12:27 +1030 | [diff] [blame] | 372 | if (prof_cpu_mask != NULL) |
| 373 | cpumask_clear_cpu(cpu, prof_cpu_mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | if (per_cpu(cpu_profile_hits, cpu)[0]) { |
| 375 | page = virt_to_page(per_cpu(cpu_profile_hits, cpu)[0]); |
| 376 | per_cpu(cpu_profile_hits, cpu)[0] = NULL; |
| 377 | __free_page(page); |
| 378 | } |
| 379 | if (per_cpu(cpu_profile_hits, cpu)[1]) { |
| 380 | page = virt_to_page(per_cpu(cpu_profile_hits, cpu)[1]); |
| 381 | per_cpu(cpu_profile_hits, cpu)[1] = NULL; |
| 382 | __free_page(page); |
| 383 | } |
| 384 | break; |
| 385 | } |
| 386 | return NOTIFY_OK; |
| 387 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | #else /* !CONFIG_SMP */ |
| 389 | #define profile_flip_buffers() do { } while (0) |
| 390 | #define profile_discard_flip_buffers() do { } while (0) |
Ingo Molnar | 02316067 | 2006-12-06 20:38:17 -0800 | [diff] [blame] | 391 | #define profile_cpu_callback NULL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | |
Rakib Mullick | 6f7bd76 | 2011-05-26 16:26:00 -0700 | [diff] [blame] | 393 | static void do_profile_hits(int type, void *__pc, unsigned int nr_hits) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | { |
| 395 | unsigned long pc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | pc = ((unsigned long)__pc - (unsigned long)_stext) >> prof_shift; |
Ingo Molnar | ece8a68 | 2006-12-06 20:37:24 -0800 | [diff] [blame] | 397 | atomic_add(nr_hits, &prof_buffer[min(pc, prof_len - 1)]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | } |
| 399 | #endif /* !CONFIG_SMP */ |
Rakib Mullick | 6f7bd76 | 2011-05-26 16:26:00 -0700 | [diff] [blame] | 400 | |
| 401 | void profile_hits(int type, void *__pc, unsigned int nr_hits) |
| 402 | { |
| 403 | if (prof_on != type || !prof_buffer) |
| 404 | return; |
| 405 | do_profile_hits(type, __pc, nr_hits); |
| 406 | } |
Andrew Morton | bbe1a59b | 2007-01-22 20:40:33 -0800 | [diff] [blame] | 407 | EXPORT_SYMBOL_GPL(profile_hits); |
| 408 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 409 | void profile_tick(int type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | { |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 411 | struct pt_regs *regs = get_irq_regs(); |
| 412 | |
Rusty Russell | c309b91 | 2009-01-01 10:12:27 +1030 | [diff] [blame] | 413 | if (!user_mode(regs) && prof_cpu_mask != NULL && |
| 414 | cpumask_test_cpu(smp_processor_id(), prof_cpu_mask)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | profile_hit(type, (void *)profile_pc(regs)); |
| 416 | } |
| 417 | |
| 418 | #ifdef CONFIG_PROC_FS |
| 419 | #include <linux/proc_fs.h> |
Alexey Dobriyan | 583a22e | 2009-09-18 12:57:09 -0700 | [diff] [blame] | 420 | #include <linux/seq_file.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | #include <asm/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | |
Alexey Dobriyan | 583a22e | 2009-09-18 12:57:09 -0700 | [diff] [blame] | 423 | static int prof_cpu_mask_proc_show(struct seq_file *m, void *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | { |
Tejun Heo | ccbd59c | 2015-02-13 14:38:13 -0800 | [diff] [blame] | 425 | seq_printf(m, "%*pb\n", cpumask_pr_args(prof_cpu_mask)); |
Alexey Dobriyan | 583a22e | 2009-09-18 12:57:09 -0700 | [diff] [blame] | 426 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | } |
| 428 | |
Alexey Dobriyan | 583a22e | 2009-09-18 12:57:09 -0700 | [diff] [blame] | 429 | static int prof_cpu_mask_proc_open(struct inode *inode, struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | { |
Alexey Dobriyan | 583a22e | 2009-09-18 12:57:09 -0700 | [diff] [blame] | 431 | return single_open(file, prof_cpu_mask_proc_show, NULL); |
| 432 | } |
| 433 | |
| 434 | static ssize_t prof_cpu_mask_proc_write(struct file *file, |
| 435 | const char __user *buffer, size_t count, loff_t *pos) |
| 436 | { |
Rusty Russell | c309b91 | 2009-01-01 10:12:27 +1030 | [diff] [blame] | 437 | cpumask_var_t new_value; |
Alexey Dobriyan | 583a22e | 2009-09-18 12:57:09 -0700 | [diff] [blame] | 438 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | |
Rusty Russell | c309b91 | 2009-01-01 10:12:27 +1030 | [diff] [blame] | 440 | if (!alloc_cpumask_var(&new_value, GFP_KERNEL)) |
| 441 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | |
Rusty Russell | c309b91 | 2009-01-01 10:12:27 +1030 | [diff] [blame] | 443 | err = cpumask_parse_user(buffer, count, new_value); |
| 444 | if (!err) { |
Alexey Dobriyan | 583a22e | 2009-09-18 12:57:09 -0700 | [diff] [blame] | 445 | cpumask_copy(prof_cpu_mask, new_value); |
| 446 | err = count; |
Rusty Russell | c309b91 | 2009-01-01 10:12:27 +1030 | [diff] [blame] | 447 | } |
| 448 | free_cpumask_var(new_value); |
| 449 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | } |
| 451 | |
Alexey Dobriyan | 583a22e | 2009-09-18 12:57:09 -0700 | [diff] [blame] | 452 | static const struct file_operations prof_cpu_mask_proc_fops = { |
| 453 | .open = prof_cpu_mask_proc_open, |
| 454 | .read = seq_read, |
| 455 | .llseek = seq_lseek, |
| 456 | .release = single_release, |
| 457 | .write = prof_cpu_mask_proc_write, |
| 458 | }; |
| 459 | |
Al Viro | fbd387a | 2013-04-01 20:48:34 -0400 | [diff] [blame] | 460 | void create_prof_cpu_mask(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | /* create /proc/irq/prof_cpu_mask */ |
Al Viro | fbd387a | 2013-04-01 20:48:34 -0400 | [diff] [blame] | 463 | proc_create("irq/prof_cpu_mask", 0600, NULL, &prof_cpu_mask_proc_fops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | } |
| 465 | |
| 466 | /* |
| 467 | * This function accesses profiling information. The returned data is |
| 468 | * binary: the sampling step and the actual contents of the profile |
| 469 | * buffer. Use of the program readprofile is recommended in order to |
| 470 | * get meaningful info out of these data. |
| 471 | */ |
| 472 | static ssize_t |
| 473 | read_profile(struct file *file, char __user *buf, size_t count, loff_t *ppos) |
| 474 | { |
| 475 | unsigned long p = *ppos; |
| 476 | ssize_t read; |
Paolo Ciarrocchi | 1ad82fd | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 477 | char *pnt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | unsigned int sample_step = 1 << prof_shift; |
| 479 | |
| 480 | profile_flip_buffers(); |
| 481 | if (p >= (prof_len+1)*sizeof(unsigned int)) |
| 482 | return 0; |
| 483 | if (count > (prof_len+1)*sizeof(unsigned int) - p) |
| 484 | count = (prof_len+1)*sizeof(unsigned int) - p; |
| 485 | read = 0; |
| 486 | |
| 487 | while (p < sizeof(unsigned int) && count > 0) { |
Paolo Ciarrocchi | 1ad82fd | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 488 | if (put_user(*((char *)(&sample_step)+p), buf)) |
Heiko Carstens | 064b022 | 2006-12-06 20:36:37 -0800 | [diff] [blame] | 489 | return -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | buf++; p++; count--; read++; |
| 491 | } |
| 492 | pnt = (char *)prof_buffer + p - sizeof(atomic_t); |
Paolo Ciarrocchi | 1ad82fd | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 493 | if (copy_to_user(buf, (void *)pnt, count)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | return -EFAULT; |
| 495 | read += count; |
| 496 | *ppos += read; |
| 497 | return read; |
| 498 | } |
| 499 | |
| 500 | /* |
| 501 | * Writing to /proc/profile resets the counters |
| 502 | * |
| 503 | * Writing a 'profiling multiplier' value into it also re-sets the profiling |
| 504 | * interrupt frequency, on architectures that support this. |
| 505 | */ |
| 506 | static ssize_t write_profile(struct file *file, const char __user *buf, |
| 507 | size_t count, loff_t *ppos) |
| 508 | { |
| 509 | #ifdef CONFIG_SMP |
Paolo Ciarrocchi | 1ad82fd | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 510 | extern int setup_profiling_timer(unsigned int multiplier); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | |
| 512 | if (count == sizeof(int)) { |
| 513 | unsigned int multiplier; |
| 514 | |
| 515 | if (copy_from_user(&multiplier, buf, sizeof(int))) |
| 516 | return -EFAULT; |
| 517 | |
| 518 | if (setup_profiling_timer(multiplier)) |
| 519 | return -EINVAL; |
| 520 | } |
| 521 | #endif |
| 522 | profile_discard_flip_buffers(); |
| 523 | memset(prof_buffer, 0, prof_len * sizeof(atomic_t)); |
| 524 | return count; |
| 525 | } |
| 526 | |
Helge Deller | 15ad7cd | 2006-12-06 20:40:36 -0800 | [diff] [blame] | 527 | static const struct file_operations proc_profile_operations = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | .read = read_profile, |
| 529 | .write = write_profile, |
Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 530 | .llseek = default_llseek, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | }; |
| 532 | |
| 533 | #ifdef CONFIG_SMP |
Andrew Morton | 60a5151 | 2008-11-18 22:20:10 -0800 | [diff] [blame] | 534 | static void profile_nop(void *unused) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | { |
| 536 | } |
| 537 | |
Dave Hansen | 22b8ce9 | 2008-10-15 22:01:46 -0700 | [diff] [blame] | 538 | static int create_hash_tables(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | { |
| 540 | int cpu; |
| 541 | |
| 542 | for_each_online_cpu(cpu) { |
Lee Schermerhorn | 3dd6b5f | 2010-05-26 14:45:04 -0700 | [diff] [blame] | 543 | int node = cpu_to_mem(cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | struct page *page; |
| 545 | |
Vlastimil Babka | 96db800 | 2015-09-08 15:03:50 -0700 | [diff] [blame] | 546 | page = __alloc_pages_node(node, |
Johannes Weiner | e97ca8e | 2014-03-10 15:49:43 -0700 | [diff] [blame] | 547 | GFP_KERNEL | __GFP_ZERO | __GFP_THISNODE, |
Christoph Lameter | fbd9816 | 2006-09-25 23:31:45 -0700 | [diff] [blame] | 548 | 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | if (!page) |
| 550 | goto out_cleanup; |
| 551 | per_cpu(cpu_profile_hits, cpu)[1] |
| 552 | = (struct profile_hit *)page_address(page); |
Vlastimil Babka | 96db800 | 2015-09-08 15:03:50 -0700 | [diff] [blame] | 553 | page = __alloc_pages_node(node, |
Johannes Weiner | e97ca8e | 2014-03-10 15:49:43 -0700 | [diff] [blame] | 554 | GFP_KERNEL | __GFP_ZERO | __GFP_THISNODE, |
Christoph Lameter | fbd9816 | 2006-09-25 23:31:45 -0700 | [diff] [blame] | 555 | 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | if (!page) |
| 557 | goto out_cleanup; |
| 558 | per_cpu(cpu_profile_hits, cpu)[0] |
| 559 | = (struct profile_hit *)page_address(page); |
| 560 | } |
| 561 | return 0; |
| 562 | out_cleanup: |
| 563 | prof_on = 0; |
akpm@osdl.org | d59dd46 | 2005-05-01 08:58:47 -0700 | [diff] [blame] | 564 | smp_mb(); |
Jens Axboe | 15c8b6c | 2008-05-09 09:39:44 +0200 | [diff] [blame] | 565 | on_each_cpu(profile_nop, NULL, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | for_each_online_cpu(cpu) { |
| 567 | struct page *page; |
| 568 | |
| 569 | if (per_cpu(cpu_profile_hits, cpu)[0]) { |
| 570 | page = virt_to_page(per_cpu(cpu_profile_hits, cpu)[0]); |
| 571 | per_cpu(cpu_profile_hits, cpu)[0] = NULL; |
| 572 | __free_page(page); |
| 573 | } |
| 574 | if (per_cpu(cpu_profile_hits, cpu)[1]) { |
| 575 | page = virt_to_page(per_cpu(cpu_profile_hits, cpu)[1]); |
| 576 | per_cpu(cpu_profile_hits, cpu)[1] = NULL; |
| 577 | __free_page(page); |
| 578 | } |
| 579 | } |
| 580 | return -1; |
| 581 | } |
| 582 | #else |
| 583 | #define create_hash_tables() ({ 0; }) |
| 584 | #endif |
| 585 | |
Al Viro | 8419641 | 2008-11-22 17:36:44 +0000 | [diff] [blame] | 586 | int __ref create_proc_profile(void) /* false positive from hotcpu_notifier */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | { |
| 588 | struct proc_dir_entry *entry; |
Srivatsa S. Bhat | c270a81 | 2014-03-11 02:12:08 +0530 | [diff] [blame] | 589 | int err = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | |
| 591 | if (!prof_on) |
| 592 | return 0; |
Srivatsa S. Bhat | c270a81 | 2014-03-11 02:12:08 +0530 | [diff] [blame] | 593 | |
| 594 | cpu_notifier_register_begin(); |
| 595 | |
| 596 | if (create_hash_tables()) { |
| 597 | err = -ENOMEM; |
| 598 | goto out; |
| 599 | } |
| 600 | |
Denis V. Lunev | c33fff0 | 2008-04-29 01:02:31 -0700 | [diff] [blame] | 601 | entry = proc_create("profile", S_IWUSR | S_IRUGO, |
| 602 | NULL, &proc_profile_operations); |
Paolo Ciarrocchi | 1ad82fd | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 603 | if (!entry) |
Srivatsa S. Bhat | c270a81 | 2014-03-11 02:12:08 +0530 | [diff] [blame] | 604 | goto out; |
David Howells | 271a15e | 2013-04-12 00:38:51 +0100 | [diff] [blame] | 605 | proc_set_size(entry, (1 + prof_len) * sizeof(atomic_t)); |
Srivatsa S. Bhat | c270a81 | 2014-03-11 02:12:08 +0530 | [diff] [blame] | 606 | __hotcpu_notifier(profile_cpu_callback, 0); |
| 607 | |
| 608 | out: |
| 609 | cpu_notifier_register_done(); |
| 610 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | } |
Paul Gortmaker | c96d666 | 2014-04-03 14:48:35 -0700 | [diff] [blame] | 612 | subsys_initcall(create_proc_profile); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | #endif /* CONFIG_PROC_FS */ |