Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2008 Mathieu Desnoyers |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify |
| 5 | * it under the terms of the GNU General Public License as published by |
| 6 | * the Free Software Foundation; either version 2 of the License, or |
| 7 | * (at your option) any later version. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write to the Free Software |
| 16 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 17 | */ |
| 18 | #include <linux/module.h> |
| 19 | #include <linux/mutex.h> |
| 20 | #include <linux/types.h> |
| 21 | #include <linux/jhash.h> |
| 22 | #include <linux/list.h> |
| 23 | #include <linux/rcupdate.h> |
| 24 | #include <linux/tracepoint.h> |
| 25 | #include <linux/err.h> |
| 26 | #include <linux/slab.h> |
Jason Baron | a871bd3 | 2009-08-10 16:52:31 -0400 | [diff] [blame] | 27 | #include <linux/sched.h> |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 28 | #include <linux/static_key.h> |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 29 | |
Mathieu Desnoyers | 6549864 | 2011-01-26 17:26:22 -0500 | [diff] [blame] | 30 | extern struct tracepoint * const __start___tracepoints_ptrs[]; |
| 31 | extern struct tracepoint * const __stop___tracepoints_ptrs[]; |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 32 | |
| 33 | /* Set to 1 to enable tracepoint debug output */ |
| 34 | static const int tracepoint_debug; |
| 35 | |
| 36 | /* |
Mathieu Desnoyers | b75ef8b | 2011-08-10 15:18:39 -0400 | [diff] [blame] | 37 | * Tracepoints mutex protects the builtin and module tracepoints and the hash |
| 38 | * table, as well as the local module list. |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 39 | */ |
| 40 | static DEFINE_MUTEX(tracepoints_mutex); |
| 41 | |
Mathieu Desnoyers | b75ef8b | 2011-08-10 15:18:39 -0400 | [diff] [blame] | 42 | #ifdef CONFIG_MODULES |
| 43 | /* Local list of struct module */ |
| 44 | static LIST_HEAD(tracepoint_module_list); |
| 45 | #endif /* CONFIG_MODULES */ |
| 46 | |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 47 | /* |
| 48 | * Tracepoint hash table, containing the active tracepoints. |
| 49 | * Protected by tracepoints_mutex. |
| 50 | */ |
| 51 | #define TRACEPOINT_HASH_BITS 6 |
| 52 | #define TRACEPOINT_TABLE_SIZE (1 << TRACEPOINT_HASH_BITS) |
Lai Jiangshan | 19dba33 | 2008-10-28 10:51:49 +0800 | [diff] [blame] | 53 | static struct hlist_head tracepoint_table[TRACEPOINT_TABLE_SIZE]; |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 54 | |
| 55 | /* |
| 56 | * Note about RCU : |
Anand Gadiyar | fd589a8 | 2009-07-16 17:13:03 +0200 | [diff] [blame] | 57 | * It is used to delay the free of multiple probes array until a quiescent |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 58 | * state is reached. |
| 59 | * Tracepoint entries modifications are protected by the tracepoints_mutex. |
| 60 | */ |
| 61 | struct tracepoint_entry { |
| 62 | struct hlist_node hlist; |
Steven Rostedt | 38516ab | 2010-04-20 17:04:50 -0400 | [diff] [blame] | 63 | struct tracepoint_func *funcs; |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 64 | int refcount; /* Number of times armed. 0 if disarmed. */ |
Steven Rostedt | b196e2b | 2014-02-13 15:45:07 -0500 | [diff] [blame] | 65 | int enabled; /* Tracepoint enabled */ |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 66 | char name[0]; |
| 67 | }; |
| 68 | |
Lai Jiangshan | 19dba33 | 2008-10-28 10:51:49 +0800 | [diff] [blame] | 69 | struct tp_probes { |
Mathieu Desnoyers | 0dea6d52 | 2014-03-21 01:19:01 -0400 | [diff] [blame] | 70 | struct rcu_head rcu; |
Steven Rostedt | 38516ab | 2010-04-20 17:04:50 -0400 | [diff] [blame] | 71 | struct tracepoint_func probes[0]; |
Lai Jiangshan | 19dba33 | 2008-10-28 10:51:49 +0800 | [diff] [blame] | 72 | }; |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 73 | |
Lai Jiangshan | 19dba33 | 2008-10-28 10:51:49 +0800 | [diff] [blame] | 74 | static inline void *allocate_probes(int count) |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 75 | { |
Steven Rostedt | 38516ab | 2010-04-20 17:04:50 -0400 | [diff] [blame] | 76 | struct tp_probes *p = kmalloc(count * sizeof(struct tracepoint_func) |
Lai Jiangshan | 19dba33 | 2008-10-28 10:51:49 +0800 | [diff] [blame] | 77 | + sizeof(struct tp_probes), GFP_KERNEL); |
| 78 | return p == NULL ? NULL : p->probes; |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 79 | } |
| 80 | |
Lai Jiangshan | 19dba33 | 2008-10-28 10:51:49 +0800 | [diff] [blame] | 81 | static void rcu_free_old_probes(struct rcu_head *head) |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 82 | { |
Mathieu Desnoyers | 0dea6d52 | 2014-03-21 01:19:01 -0400 | [diff] [blame] | 83 | kfree(container_of(head, struct tp_probes, rcu)); |
Lai Jiangshan | 19dba33 | 2008-10-28 10:51:49 +0800 | [diff] [blame] | 84 | } |
| 85 | |
Steven Rostedt | 38516ab | 2010-04-20 17:04:50 -0400 | [diff] [blame] | 86 | static inline void release_probes(struct tracepoint_func *old) |
Lai Jiangshan | 19dba33 | 2008-10-28 10:51:49 +0800 | [diff] [blame] | 87 | { |
| 88 | if (old) { |
| 89 | struct tp_probes *tp_probes = container_of(old, |
| 90 | struct tp_probes, probes[0]); |
Mathieu Desnoyers | 0dea6d52 | 2014-03-21 01:19:01 -0400 | [diff] [blame] | 91 | call_rcu_sched(&tp_probes->rcu, rcu_free_old_probes); |
Lai Jiangshan | 19dba33 | 2008-10-28 10:51:49 +0800 | [diff] [blame] | 92 | } |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 93 | } |
| 94 | |
| 95 | static void debug_print_probes(struct tracepoint_entry *entry) |
| 96 | { |
| 97 | int i; |
| 98 | |
Lai Jiangshan | 19dba33 | 2008-10-28 10:51:49 +0800 | [diff] [blame] | 99 | if (!tracepoint_debug || !entry->funcs) |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 100 | return; |
| 101 | |
Steven Rostedt | 38516ab | 2010-04-20 17:04:50 -0400 | [diff] [blame] | 102 | for (i = 0; entry->funcs[i].func; i++) |
| 103 | printk(KERN_DEBUG "Probe %d : %p\n", i, entry->funcs[i].func); |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 104 | } |
| 105 | |
Steven Rostedt | 38516ab | 2010-04-20 17:04:50 -0400 | [diff] [blame] | 106 | static struct tracepoint_func * |
| 107 | tracepoint_entry_add_probe(struct tracepoint_entry *entry, |
| 108 | void *probe, void *data) |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 109 | { |
| 110 | int nr_probes = 0; |
Steven Rostedt | 38516ab | 2010-04-20 17:04:50 -0400 | [diff] [blame] | 111 | struct tracepoint_func *old, *new; |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 112 | |
Sahara | 4c69e6e | 2013-04-15 11:13:15 +0900 | [diff] [blame] | 113 | if (WARN_ON(!probe)) |
| 114 | return ERR_PTR(-EINVAL); |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 115 | |
| 116 | debug_print_probes(entry); |
| 117 | old = entry->funcs; |
| 118 | if (old) { |
| 119 | /* (N -> N+1), (N != 0, 1) probes */ |
Steven Rostedt | 38516ab | 2010-04-20 17:04:50 -0400 | [diff] [blame] | 120 | for (nr_probes = 0; old[nr_probes].func; nr_probes++) |
| 121 | if (old[nr_probes].func == probe && |
| 122 | old[nr_probes].data == data) |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 123 | return ERR_PTR(-EEXIST); |
| 124 | } |
| 125 | /* + 2 : one for new probe, one for NULL func */ |
Lai Jiangshan | 19dba33 | 2008-10-28 10:51:49 +0800 | [diff] [blame] | 126 | new = allocate_probes(nr_probes + 2); |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 127 | if (new == NULL) |
| 128 | return ERR_PTR(-ENOMEM); |
| 129 | if (old) |
Steven Rostedt | 38516ab | 2010-04-20 17:04:50 -0400 | [diff] [blame] | 130 | memcpy(new, old, nr_probes * sizeof(struct tracepoint_func)); |
| 131 | new[nr_probes].func = probe; |
| 132 | new[nr_probes].data = data; |
| 133 | new[nr_probes + 1].func = NULL; |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 134 | entry->refcount = nr_probes + 1; |
| 135 | entry->funcs = new; |
| 136 | debug_print_probes(entry); |
| 137 | return old; |
| 138 | } |
| 139 | |
| 140 | static void * |
Steven Rostedt | 38516ab | 2010-04-20 17:04:50 -0400 | [diff] [blame] | 141 | tracepoint_entry_remove_probe(struct tracepoint_entry *entry, |
| 142 | void *probe, void *data) |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 143 | { |
| 144 | int nr_probes = 0, nr_del = 0, i; |
Steven Rostedt | 38516ab | 2010-04-20 17:04:50 -0400 | [diff] [blame] | 145 | struct tracepoint_func *old, *new; |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 146 | |
| 147 | old = entry->funcs; |
| 148 | |
Frederic Weisbecker | f66af45 | 2008-10-22 19:14:55 +0200 | [diff] [blame] | 149 | if (!old) |
Lai Jiangshan | 19dba33 | 2008-10-28 10:51:49 +0800 | [diff] [blame] | 150 | return ERR_PTR(-ENOENT); |
Frederic Weisbecker | f66af45 | 2008-10-22 19:14:55 +0200 | [diff] [blame] | 151 | |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 152 | debug_print_probes(entry); |
| 153 | /* (N -> M), (N > 1, M >= 0) probes */ |
Sahara | 4c69e6e | 2013-04-15 11:13:15 +0900 | [diff] [blame] | 154 | if (probe) { |
| 155 | for (nr_probes = 0; old[nr_probes].func; nr_probes++) { |
| 156 | if (old[nr_probes].func == probe && |
| 157 | old[nr_probes].data == data) |
| 158 | nr_del++; |
| 159 | } |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 160 | } |
| 161 | |
Sahara | 4c69e6e | 2013-04-15 11:13:15 +0900 | [diff] [blame] | 162 | /* |
| 163 | * If probe is NULL, then nr_probes = nr_del = 0, and then the |
| 164 | * entire entry will be removed. |
| 165 | */ |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 166 | if (nr_probes - nr_del == 0) { |
| 167 | /* N -> 0, (N > 1) */ |
| 168 | entry->funcs = NULL; |
| 169 | entry->refcount = 0; |
| 170 | debug_print_probes(entry); |
| 171 | return old; |
| 172 | } else { |
| 173 | int j = 0; |
| 174 | /* N -> M, (N > 1, M > 0) */ |
| 175 | /* + 1 for NULL */ |
Lai Jiangshan | 19dba33 | 2008-10-28 10:51:49 +0800 | [diff] [blame] | 176 | new = allocate_probes(nr_probes - nr_del + 1); |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 177 | if (new == NULL) |
| 178 | return ERR_PTR(-ENOMEM); |
Steven Rostedt | 38516ab | 2010-04-20 17:04:50 -0400 | [diff] [blame] | 179 | for (i = 0; old[i].func; i++) |
Sahara | 4c69e6e | 2013-04-15 11:13:15 +0900 | [diff] [blame] | 180 | if (old[i].func != probe || old[i].data != data) |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 181 | new[j++] = old[i]; |
Steven Rostedt | 38516ab | 2010-04-20 17:04:50 -0400 | [diff] [blame] | 182 | new[nr_probes - nr_del].func = NULL; |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 183 | entry->refcount = nr_probes - nr_del; |
| 184 | entry->funcs = new; |
| 185 | } |
| 186 | debug_print_probes(entry); |
| 187 | return old; |
| 188 | } |
| 189 | |
| 190 | /* |
| 191 | * Get tracepoint if the tracepoint is present in the tracepoint hash table. |
| 192 | * Must be called with tracepoints_mutex held. |
| 193 | * Returns NULL if not present. |
| 194 | */ |
| 195 | static struct tracepoint_entry *get_tracepoint(const char *name) |
| 196 | { |
| 197 | struct hlist_head *head; |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 198 | struct tracepoint_entry *e; |
| 199 | u32 hash = jhash(name, strlen(name), 0); |
| 200 | |
Mathieu Desnoyers | 9795302 | 2008-07-24 16:37:23 -0400 | [diff] [blame] | 201 | head = &tracepoint_table[hash & (TRACEPOINT_TABLE_SIZE - 1)]; |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 202 | hlist_for_each_entry(e, head, hlist) { |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 203 | if (!strcmp(name, e->name)) |
| 204 | return e; |
| 205 | } |
| 206 | return NULL; |
| 207 | } |
| 208 | |
| 209 | /* |
| 210 | * Add the tracepoint to the tracepoint hash table. Must be called with |
| 211 | * tracepoints_mutex held. |
| 212 | */ |
| 213 | static struct tracepoint_entry *add_tracepoint(const char *name) |
| 214 | { |
| 215 | struct hlist_head *head; |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 216 | struct tracepoint_entry *e; |
| 217 | size_t name_len = strlen(name) + 1; |
| 218 | u32 hash = jhash(name, name_len-1, 0); |
| 219 | |
Mathieu Desnoyers | 9795302 | 2008-07-24 16:37:23 -0400 | [diff] [blame] | 220 | head = &tracepoint_table[hash & (TRACEPOINT_TABLE_SIZE - 1)]; |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 221 | hlist_for_each_entry(e, head, hlist) { |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 222 | if (!strcmp(name, e->name)) { |
| 223 | printk(KERN_NOTICE |
| 224 | "tracepoint %s busy\n", name); |
| 225 | return ERR_PTR(-EEXIST); /* Already there */ |
| 226 | } |
| 227 | } |
| 228 | /* |
| 229 | * Using kmalloc here to allocate a variable length element. Could |
| 230 | * cause some memory fragmentation if overused. |
| 231 | */ |
| 232 | e = kmalloc(sizeof(struct tracepoint_entry) + name_len, GFP_KERNEL); |
| 233 | if (!e) |
| 234 | return ERR_PTR(-ENOMEM); |
| 235 | memcpy(&e->name[0], name, name_len); |
| 236 | e->funcs = NULL; |
| 237 | e->refcount = 0; |
Steven Rostedt | b196e2b | 2014-02-13 15:45:07 -0500 | [diff] [blame] | 238 | e->enabled = 0; |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 239 | hlist_add_head(&e->hlist, head); |
| 240 | return e; |
| 241 | } |
| 242 | |
| 243 | /* |
| 244 | * Remove the tracepoint from the tracepoint hash table. Must be called with |
| 245 | * mutex_lock held. |
| 246 | */ |
Lai Jiangshan | 19dba33 | 2008-10-28 10:51:49 +0800 | [diff] [blame] | 247 | static inline void remove_tracepoint(struct tracepoint_entry *e) |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 248 | { |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 249 | hlist_del(&e->hlist); |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 250 | kfree(e); |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 251 | } |
| 252 | |
| 253 | /* |
| 254 | * Sets the probe callback corresponding to one tracepoint. |
| 255 | */ |
| 256 | static void set_tracepoint(struct tracepoint_entry **entry, |
| 257 | struct tracepoint *elem, int active) |
| 258 | { |
| 259 | WARN_ON(strcmp((*entry)->name, elem->name) != 0); |
| 260 | |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 261 | if (elem->regfunc && !static_key_enabled(&elem->key) && active) |
Josh Stone | 9741987 | 2009-08-24 14:43:13 -0700 | [diff] [blame] | 262 | elem->regfunc(); |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 263 | else if (elem->unregfunc && static_key_enabled(&elem->key) && !active) |
Josh Stone | 9741987 | 2009-08-24 14:43:13 -0700 | [diff] [blame] | 264 | elem->unregfunc(); |
| 265 | |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 266 | /* |
| 267 | * rcu_assign_pointer has a smp_wmb() which makes sure that the new |
| 268 | * probe callbacks array is consistent before setting a pointer to it. |
| 269 | * This array is referenced by __DO_TRACE from |
| 270 | * include/linux/tracepoints.h. A matching smp_read_barrier_depends() |
| 271 | * is used. |
| 272 | */ |
| 273 | rcu_assign_pointer(elem->funcs, (*entry)->funcs); |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 274 | if (active && !static_key_enabled(&elem->key)) |
| 275 | static_key_slow_inc(&elem->key); |
| 276 | else if (!active && static_key_enabled(&elem->key)) |
| 277 | static_key_slow_dec(&elem->key); |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 278 | } |
| 279 | |
| 280 | /* |
| 281 | * Disable a tracepoint and its probe callback. |
| 282 | * Note: only waiting an RCU period after setting elem->call to the empty |
| 283 | * function insures that the original callback is not used anymore. This insured |
| 284 | * by preempt_disable around the call site. |
| 285 | */ |
| 286 | static void disable_tracepoint(struct tracepoint *elem) |
| 287 | { |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 288 | if (elem->unregfunc && static_key_enabled(&elem->key)) |
Josh Stone | 9741987 | 2009-08-24 14:43:13 -0700 | [diff] [blame] | 289 | elem->unregfunc(); |
| 290 | |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 291 | if (static_key_enabled(&elem->key)) |
| 292 | static_key_slow_dec(&elem->key); |
Mathieu Desnoyers | de0baf9 | 2008-11-14 17:47:42 -0500 | [diff] [blame] | 293 | rcu_assign_pointer(elem->funcs, NULL); |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 294 | } |
| 295 | |
| 296 | /** |
| 297 | * tracepoint_update_probe_range - Update a probe range |
| 298 | * @begin: beginning of the range |
| 299 | * @end: end of the range |
| 300 | * |
| 301 | * Updates the probe callback corresponding to a range of tracepoints. |
Mathieu Desnoyers | b75ef8b | 2011-08-10 15:18:39 -0400 | [diff] [blame] | 302 | * Called with tracepoints_mutex held. |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 303 | */ |
Mathieu Desnoyers | b75ef8b | 2011-08-10 15:18:39 -0400 | [diff] [blame] | 304 | static void tracepoint_update_probe_range(struct tracepoint * const *begin, |
| 305 | struct tracepoint * const *end) |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 306 | { |
Mathieu Desnoyers | 6549864 | 2011-01-26 17:26:22 -0500 | [diff] [blame] | 307 | struct tracepoint * const *iter; |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 308 | struct tracepoint_entry *mark_entry; |
| 309 | |
Ingo Molnar | ec625cb | 2009-03-18 19:54:04 +0100 | [diff] [blame] | 310 | if (!begin) |
Jaswinder Singh Rajput | 09933a1 | 2009-03-18 22:18:56 +0530 | [diff] [blame] | 311 | return; |
Jaswinder Singh Rajput | 09933a1 | 2009-03-18 22:18:56 +0530 | [diff] [blame] | 312 | |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 313 | for (iter = begin; iter < end; iter++) { |
Mathieu Desnoyers | 6549864 | 2011-01-26 17:26:22 -0500 | [diff] [blame] | 314 | mark_entry = get_tracepoint((*iter)->name); |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 315 | if (mark_entry) { |
Mathieu Desnoyers | 6549864 | 2011-01-26 17:26:22 -0500 | [diff] [blame] | 316 | set_tracepoint(&mark_entry, *iter, |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 317 | !!mark_entry->refcount); |
Steven Rostedt | b196e2b | 2014-02-13 15:45:07 -0500 | [diff] [blame] | 318 | mark_entry->enabled = !!mark_entry->refcount; |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 319 | } else { |
Mathieu Desnoyers | 6549864 | 2011-01-26 17:26:22 -0500 | [diff] [blame] | 320 | disable_tracepoint(*iter); |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 321 | } |
| 322 | } |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 323 | } |
| 324 | |
Mathieu Desnoyers | b75ef8b | 2011-08-10 15:18:39 -0400 | [diff] [blame] | 325 | #ifdef CONFIG_MODULES |
| 326 | void module_update_tracepoints(void) |
| 327 | { |
| 328 | struct tp_module *tp_mod; |
| 329 | |
| 330 | list_for_each_entry(tp_mod, &tracepoint_module_list, list) |
| 331 | tracepoint_update_probe_range(tp_mod->tracepoints_ptrs, |
| 332 | tp_mod->tracepoints_ptrs + tp_mod->num_tracepoints); |
| 333 | } |
| 334 | #else /* CONFIG_MODULES */ |
| 335 | void module_update_tracepoints(void) |
| 336 | { |
| 337 | } |
| 338 | #endif /* CONFIG_MODULES */ |
| 339 | |
| 340 | |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 341 | /* |
| 342 | * Update probes, removing the faulty probes. |
Mathieu Desnoyers | b75ef8b | 2011-08-10 15:18:39 -0400 | [diff] [blame] | 343 | * Called with tracepoints_mutex held. |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 344 | */ |
| 345 | static void tracepoint_update_probes(void) |
| 346 | { |
| 347 | /* Core kernel tracepoints */ |
Mathieu Desnoyers | 6549864 | 2011-01-26 17:26:22 -0500 | [diff] [blame] | 348 | tracepoint_update_probe_range(__start___tracepoints_ptrs, |
| 349 | __stop___tracepoints_ptrs); |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 350 | /* tracepoints in modules. */ |
| 351 | module_update_tracepoints(); |
| 352 | } |
| 353 | |
Steven Rostedt | 38516ab | 2010-04-20 17:04:50 -0400 | [diff] [blame] | 354 | static struct tracepoint_func * |
| 355 | tracepoint_add_probe(const char *name, void *probe, void *data) |
Lai Jiangshan | 127cafb | 2008-10-28 10:51:53 +0800 | [diff] [blame] | 356 | { |
| 357 | struct tracepoint_entry *entry; |
Steven Rostedt | 38516ab | 2010-04-20 17:04:50 -0400 | [diff] [blame] | 358 | struct tracepoint_func *old; |
Lai Jiangshan | 127cafb | 2008-10-28 10:51:53 +0800 | [diff] [blame] | 359 | |
| 360 | entry = get_tracepoint(name); |
| 361 | if (!entry) { |
| 362 | entry = add_tracepoint(name); |
| 363 | if (IS_ERR(entry)) |
Steven Rostedt | 38516ab | 2010-04-20 17:04:50 -0400 | [diff] [blame] | 364 | return (struct tracepoint_func *)entry; |
Lai Jiangshan | 127cafb | 2008-10-28 10:51:53 +0800 | [diff] [blame] | 365 | } |
Steven Rostedt | 38516ab | 2010-04-20 17:04:50 -0400 | [diff] [blame] | 366 | old = tracepoint_entry_add_probe(entry, probe, data); |
Lai Jiangshan | 127cafb | 2008-10-28 10:51:53 +0800 | [diff] [blame] | 367 | if (IS_ERR(old) && !entry->refcount) |
| 368 | remove_tracepoint(entry); |
| 369 | return old; |
| 370 | } |
| 371 | |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 372 | /** |
| 373 | * tracepoint_probe_register - Connect a probe to a tracepoint |
| 374 | * @name: tracepoint name |
| 375 | * @probe: probe handler |
Mathieu Desnoyers | 4c11628 | 2014-03-11 21:32:28 -0400 | [diff] [blame] | 376 | * @data: probe private data |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 377 | * |
Mathieu Desnoyers | 3bbc8db | 2014-03-10 21:04:58 -0400 | [diff] [blame] | 378 | * Returns: |
| 379 | * - 0 if the probe was successfully registered, and tracepoint |
| 380 | * callsites are currently loaded for that probe, |
| 381 | * - -ENODEV if the probe was successfully registered, but no tracepoint |
| 382 | * callsite is currently loaded for that probe, |
| 383 | * - other negative error value on error. |
| 384 | * |
| 385 | * When tracepoint_probe_register() returns either 0 or -ENODEV, |
| 386 | * parameters @name, @probe, and @data may be used by the tracepoint |
| 387 | * infrastructure until the probe is unregistered. |
| 388 | * |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 389 | * The probe address must at least be aligned on the architecture pointer size. |
| 390 | */ |
Steven Rostedt | 38516ab | 2010-04-20 17:04:50 -0400 | [diff] [blame] | 391 | int tracepoint_probe_register(const char *name, void *probe, void *data) |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 392 | { |
Steven Rostedt | 38516ab | 2010-04-20 17:04:50 -0400 | [diff] [blame] | 393 | struct tracepoint_func *old; |
Steven Rostedt | b196e2b | 2014-02-13 15:45:07 -0500 | [diff] [blame] | 394 | struct tracepoint_entry *entry; |
| 395 | int ret = 0; |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 396 | |
| 397 | mutex_lock(&tracepoints_mutex); |
Steven Rostedt | 38516ab | 2010-04-20 17:04:50 -0400 | [diff] [blame] | 398 | old = tracepoint_add_probe(name, probe, data); |
Mathieu Desnoyers | b75ef8b | 2011-08-10 15:18:39 -0400 | [diff] [blame] | 399 | if (IS_ERR(old)) { |
| 400 | mutex_unlock(&tracepoints_mutex); |
Lai Jiangshan | 127cafb | 2008-10-28 10:51:53 +0800 | [diff] [blame] | 401 | return PTR_ERR(old); |
Mathieu Desnoyers | b75ef8b | 2011-08-10 15:18:39 -0400 | [diff] [blame] | 402 | } |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 403 | tracepoint_update_probes(); /* may update entry */ |
Steven Rostedt | b196e2b | 2014-02-13 15:45:07 -0500 | [diff] [blame] | 404 | entry = get_tracepoint(name); |
| 405 | /* Make sure the entry was enabled */ |
| 406 | if (!entry || !entry->enabled) |
| 407 | ret = -ENODEV; |
Mathieu Desnoyers | b75ef8b | 2011-08-10 15:18:39 -0400 | [diff] [blame] | 408 | mutex_unlock(&tracepoints_mutex); |
Lai Jiangshan | 19dba33 | 2008-10-28 10:51:49 +0800 | [diff] [blame] | 409 | release_probes(old); |
Steven Rostedt | b196e2b | 2014-02-13 15:45:07 -0500 | [diff] [blame] | 410 | return ret; |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 411 | } |
| 412 | EXPORT_SYMBOL_GPL(tracepoint_probe_register); |
| 413 | |
Steven Rostedt | 38516ab | 2010-04-20 17:04:50 -0400 | [diff] [blame] | 414 | static struct tracepoint_func * |
| 415 | tracepoint_remove_probe(const char *name, void *probe, void *data) |
Lai Jiangshan | 127cafb | 2008-10-28 10:51:53 +0800 | [diff] [blame] | 416 | { |
| 417 | struct tracepoint_entry *entry; |
Steven Rostedt | 38516ab | 2010-04-20 17:04:50 -0400 | [diff] [blame] | 418 | struct tracepoint_func *old; |
Lai Jiangshan | 127cafb | 2008-10-28 10:51:53 +0800 | [diff] [blame] | 419 | |
| 420 | entry = get_tracepoint(name); |
| 421 | if (!entry) |
| 422 | return ERR_PTR(-ENOENT); |
Steven Rostedt | 38516ab | 2010-04-20 17:04:50 -0400 | [diff] [blame] | 423 | old = tracepoint_entry_remove_probe(entry, probe, data); |
Lai Jiangshan | 127cafb | 2008-10-28 10:51:53 +0800 | [diff] [blame] | 424 | if (IS_ERR(old)) |
| 425 | return old; |
| 426 | if (!entry->refcount) |
| 427 | remove_tracepoint(entry); |
| 428 | return old; |
| 429 | } |
| 430 | |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 431 | /** |
| 432 | * tracepoint_probe_unregister - Disconnect a probe from a tracepoint |
| 433 | * @name: tracepoint name |
| 434 | * @probe: probe function pointer |
Mathieu Desnoyers | 4c11628 | 2014-03-11 21:32:28 -0400 | [diff] [blame] | 435 | * @data: probe private data |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 436 | * |
| 437 | * We do not need to call a synchronize_sched to make sure the probes have |
| 438 | * finished running before doing a module unload, because the module unload |
| 439 | * itself uses stop_machine(), which insures that every preempt disabled section |
| 440 | * have finished. |
| 441 | */ |
Steven Rostedt | 38516ab | 2010-04-20 17:04:50 -0400 | [diff] [blame] | 442 | int tracepoint_probe_unregister(const char *name, void *probe, void *data) |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 443 | { |
Steven Rostedt | 38516ab | 2010-04-20 17:04:50 -0400 | [diff] [blame] | 444 | struct tracepoint_func *old; |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 445 | |
| 446 | mutex_lock(&tracepoints_mutex); |
Steven Rostedt | 38516ab | 2010-04-20 17:04:50 -0400 | [diff] [blame] | 447 | old = tracepoint_remove_probe(name, probe, data); |
Mathieu Desnoyers | b75ef8b | 2011-08-10 15:18:39 -0400 | [diff] [blame] | 448 | if (IS_ERR(old)) { |
| 449 | mutex_unlock(&tracepoints_mutex); |
Lai Jiangshan | 127cafb | 2008-10-28 10:51:53 +0800 | [diff] [blame] | 450 | return PTR_ERR(old); |
Mathieu Desnoyers | b75ef8b | 2011-08-10 15:18:39 -0400 | [diff] [blame] | 451 | } |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 452 | tracepoint_update_probes(); /* may update entry */ |
Mathieu Desnoyers | b75ef8b | 2011-08-10 15:18:39 -0400 | [diff] [blame] | 453 | mutex_unlock(&tracepoints_mutex); |
Lai Jiangshan | 19dba33 | 2008-10-28 10:51:49 +0800 | [diff] [blame] | 454 | release_probes(old); |
| 455 | return 0; |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 456 | } |
| 457 | EXPORT_SYMBOL_GPL(tracepoint_probe_unregister); |
| 458 | |
Mathieu Desnoyers | 32f8574 | 2008-11-14 17:47:46 -0500 | [diff] [blame] | 459 | |
Ingo Molnar | 227a837 | 2008-11-16 09:50:34 +0100 | [diff] [blame] | 460 | #ifdef CONFIG_MODULES |
Steven Rostedt (Red Hat) | 45ab2813 | 2014-02-26 13:37:38 -0500 | [diff] [blame] | 461 | bool trace_module_has_bad_taint(struct module *mod) |
| 462 | { |
Mathieu Desnoyers | 66cc69e | 2014-03-13 12:11:30 +1030 | [diff] [blame] | 463 | return mod->taints & ~((1 << TAINT_OOT_MODULE) | (1 << TAINT_CRAP) | |
| 464 | (1 << TAINT_UNSIGNED_MODULE)); |
Steven Rostedt (Red Hat) | 45ab2813 | 2014-02-26 13:37:38 -0500 | [diff] [blame] | 465 | } |
| 466 | |
Mathieu Desnoyers | b75ef8b | 2011-08-10 15:18:39 -0400 | [diff] [blame] | 467 | static int tracepoint_module_coming(struct module *mod) |
| 468 | { |
Mathieu Desnoyers | 0dea6d52 | 2014-03-21 01:19:01 -0400 | [diff] [blame] | 469 | struct tp_module *tp_mod; |
Mathieu Desnoyers | b75ef8b | 2011-08-10 15:18:39 -0400 | [diff] [blame] | 470 | int ret = 0; |
| 471 | |
Steven Rostedt (Red Hat) | 7dec935 | 2014-02-26 10:54:36 -0500 | [diff] [blame] | 472 | if (!mod->num_tracepoints) |
| 473 | return 0; |
| 474 | |
Mathieu Desnoyers | b75ef8b | 2011-08-10 15:18:39 -0400 | [diff] [blame] | 475 | /* |
Steven Rostedt | c10076c | 2012-01-13 21:40:59 -0500 | [diff] [blame] | 476 | * We skip modules that taint the kernel, especially those with different |
| 477 | * module headers (for forced load), to make sure we don't cause a crash. |
Mathieu Desnoyers | 66cc69e | 2014-03-13 12:11:30 +1030 | [diff] [blame] | 478 | * Staging, out-of-tree, and unsigned GPL modules are fine. |
Mathieu Desnoyers | b75ef8b | 2011-08-10 15:18:39 -0400 | [diff] [blame] | 479 | */ |
Steven Rostedt (Red Hat) | 45ab2813 | 2014-02-26 13:37:38 -0500 | [diff] [blame] | 480 | if (trace_module_has_bad_taint(mod)) |
Mathieu Desnoyers | b75ef8b | 2011-08-10 15:18:39 -0400 | [diff] [blame] | 481 | return 0; |
| 482 | mutex_lock(&tracepoints_mutex); |
| 483 | tp_mod = kmalloc(sizeof(struct tp_module), GFP_KERNEL); |
| 484 | if (!tp_mod) { |
| 485 | ret = -ENOMEM; |
| 486 | goto end; |
| 487 | } |
| 488 | tp_mod->num_tracepoints = mod->num_tracepoints; |
| 489 | tp_mod->tracepoints_ptrs = mod->tracepoints_ptrs; |
Mathieu Desnoyers | 0dea6d52 | 2014-03-21 01:19:01 -0400 | [diff] [blame] | 490 | list_add_tail(&tp_mod->list, &tracepoint_module_list); |
Mathieu Desnoyers | b75ef8b | 2011-08-10 15:18:39 -0400 | [diff] [blame] | 491 | tracepoint_update_probe_range(mod->tracepoints_ptrs, |
| 492 | mod->tracepoints_ptrs + mod->num_tracepoints); |
| 493 | end: |
| 494 | mutex_unlock(&tracepoints_mutex); |
| 495 | return ret; |
| 496 | } |
| 497 | |
| 498 | static int tracepoint_module_going(struct module *mod) |
| 499 | { |
| 500 | struct tp_module *pos; |
| 501 | |
Steven Rostedt (Red Hat) | 7dec935 | 2014-02-26 10:54:36 -0500 | [diff] [blame] | 502 | if (!mod->num_tracepoints) |
| 503 | return 0; |
| 504 | |
Mathieu Desnoyers | b75ef8b | 2011-08-10 15:18:39 -0400 | [diff] [blame] | 505 | mutex_lock(&tracepoints_mutex); |
| 506 | tracepoint_update_probe_range(mod->tracepoints_ptrs, |
| 507 | mod->tracepoints_ptrs + mod->num_tracepoints); |
| 508 | list_for_each_entry(pos, &tracepoint_module_list, list) { |
| 509 | if (pos->tracepoints_ptrs == mod->tracepoints_ptrs) { |
| 510 | list_del(&pos->list); |
| 511 | kfree(pos); |
| 512 | break; |
| 513 | } |
| 514 | } |
| 515 | /* |
| 516 | * In the case of modules that were tainted at "coming", we'll simply |
| 517 | * walk through the list without finding it. We cannot use the "tainted" |
| 518 | * flag on "going", in case a module taints the kernel only after being |
| 519 | * loaded. |
| 520 | */ |
| 521 | mutex_unlock(&tracepoints_mutex); |
| 522 | return 0; |
| 523 | } |
Ingo Molnar | 227a837 | 2008-11-16 09:50:34 +0100 | [diff] [blame] | 524 | |
Mathieu Desnoyers | 32f8574 | 2008-11-14 17:47:46 -0500 | [diff] [blame] | 525 | int tracepoint_module_notify(struct notifier_block *self, |
| 526 | unsigned long val, void *data) |
| 527 | { |
| 528 | struct module *mod = data; |
Mathieu Desnoyers | b75ef8b | 2011-08-10 15:18:39 -0400 | [diff] [blame] | 529 | int ret = 0; |
Mathieu Desnoyers | 32f8574 | 2008-11-14 17:47:46 -0500 | [diff] [blame] | 530 | |
| 531 | switch (val) { |
| 532 | case MODULE_STATE_COMING: |
Mathieu Desnoyers | b75ef8b | 2011-08-10 15:18:39 -0400 | [diff] [blame] | 533 | ret = tracepoint_module_coming(mod); |
| 534 | break; |
| 535 | case MODULE_STATE_LIVE: |
| 536 | break; |
Mathieu Desnoyers | 32f8574 | 2008-11-14 17:47:46 -0500 | [diff] [blame] | 537 | case MODULE_STATE_GOING: |
Mathieu Desnoyers | b75ef8b | 2011-08-10 15:18:39 -0400 | [diff] [blame] | 538 | ret = tracepoint_module_going(mod); |
Mathieu Desnoyers | 32f8574 | 2008-11-14 17:47:46 -0500 | [diff] [blame] | 539 | break; |
| 540 | } |
Mathieu Desnoyers | b75ef8b | 2011-08-10 15:18:39 -0400 | [diff] [blame] | 541 | return ret; |
Mathieu Desnoyers | 32f8574 | 2008-11-14 17:47:46 -0500 | [diff] [blame] | 542 | } |
| 543 | |
| 544 | struct notifier_block tracepoint_module_nb = { |
| 545 | .notifier_call = tracepoint_module_notify, |
| 546 | .priority = 0, |
| 547 | }; |
| 548 | |
| 549 | static int init_tracepoints(void) |
| 550 | { |
| 551 | return register_module_notifier(&tracepoint_module_nb); |
| 552 | } |
| 553 | __initcall(init_tracepoints); |
Ingo Molnar | 227a837 | 2008-11-16 09:50:34 +0100 | [diff] [blame] | 554 | #endif /* CONFIG_MODULES */ |
Jason Baron | a871bd3 | 2009-08-10 16:52:31 -0400 | [diff] [blame] | 555 | |
Josh Stone | 3d27d8c | 2009-08-24 14:43:12 -0700 | [diff] [blame] | 556 | #ifdef CONFIG_HAVE_SYSCALL_TRACEPOINTS |
Ingo Molnar | 60d970c | 2009-08-13 23:37:26 +0200 | [diff] [blame] | 557 | |
Josh Stone | 9741987 | 2009-08-24 14:43:13 -0700 | [diff] [blame] | 558 | /* NB: reg/unreg are called while guarded with the tracepoints_mutex */ |
Jason Baron | a871bd3 | 2009-08-10 16:52:31 -0400 | [diff] [blame] | 559 | static int sys_tracepoint_refcount; |
| 560 | |
| 561 | void syscall_regfunc(void) |
| 562 | { |
| 563 | unsigned long flags; |
| 564 | struct task_struct *g, *t; |
| 565 | |
Jason Baron | a871bd3 | 2009-08-10 16:52:31 -0400 | [diff] [blame] | 566 | if (!sys_tracepoint_refcount) { |
| 567 | read_lock_irqsave(&tasklist_lock, flags); |
| 568 | do_each_thread(g, t) { |
Hendrik Brueckner | cc3b13c | 2009-08-25 18:02:37 +0200 | [diff] [blame] | 569 | /* Skip kernel threads. */ |
| 570 | if (t->mm) |
| 571 | set_tsk_thread_flag(t, TIF_SYSCALL_TRACEPOINT); |
Jason Baron | a871bd3 | 2009-08-10 16:52:31 -0400 | [diff] [blame] | 572 | } while_each_thread(g, t); |
| 573 | read_unlock_irqrestore(&tasklist_lock, flags); |
| 574 | } |
| 575 | sys_tracepoint_refcount++; |
Jason Baron | a871bd3 | 2009-08-10 16:52:31 -0400 | [diff] [blame] | 576 | } |
| 577 | |
| 578 | void syscall_unregfunc(void) |
| 579 | { |
| 580 | unsigned long flags; |
| 581 | struct task_struct *g, *t; |
| 582 | |
Jason Baron | a871bd3 | 2009-08-10 16:52:31 -0400 | [diff] [blame] | 583 | sys_tracepoint_refcount--; |
| 584 | if (!sys_tracepoint_refcount) { |
| 585 | read_lock_irqsave(&tasklist_lock, flags); |
| 586 | do_each_thread(g, t) { |
Josh Stone | 6670000 | 2009-08-24 14:43:11 -0700 | [diff] [blame] | 587 | clear_tsk_thread_flag(t, TIF_SYSCALL_TRACEPOINT); |
Jason Baron | a871bd3 | 2009-08-10 16:52:31 -0400 | [diff] [blame] | 588 | } while_each_thread(g, t); |
| 589 | read_unlock_irqrestore(&tasklist_lock, flags); |
| 590 | } |
Jason Baron | a871bd3 | 2009-08-10 16:52:31 -0400 | [diff] [blame] | 591 | } |
Ingo Molnar | 60d970c | 2009-08-13 23:37:26 +0200 | [diff] [blame] | 592 | #endif |