diff options
| author | Haavard Skinnemoen <haavard.skinnemoen@atmel.com> | 2009-10-06 11:36:55 -0400 |
|---|---|---|
| committer | Haavard Skinnemoen <haavard.skinnemoen@atmel.com> | 2009-10-06 11:36:55 -0400 |
| commit | d94e5fcbf1420366dcb4102bafe04dbcfc0d0d4b (patch) | |
| tree | a9b7de7df6da5c3132cc68169b9c47ba288ccd42 /kernel/trace/trace_workqueue.c | |
| parent | d55651168a20078a94597a297d5cdfd807bf07b6 (diff) | |
| parent | 374576a8b6f865022c0fd1ca62396889b23d66dd (diff) | |
Merge commit 'v2.6.32-rc3'
Diffstat (limited to 'kernel/trace/trace_workqueue.c')
| -rw-r--r-- | kernel/trace/trace_workqueue.c | 32 |
1 files changed, 26 insertions, 6 deletions
diff --git a/kernel/trace/trace_workqueue.c b/kernel/trace/trace_workqueue.c index 97fcea4acce1..40cafb07dffd 100644 --- a/kernel/trace/trace_workqueue.c +++ b/kernel/trace/trace_workqueue.c | |||
| @@ -9,6 +9,7 @@ | |||
| 9 | #include <trace/events/workqueue.h> | 9 | #include <trace/events/workqueue.h> |
| 10 | #include <linux/list.h> | 10 | #include <linux/list.h> |
| 11 | #include <linux/percpu.h> | 11 | #include <linux/percpu.h> |
| 12 | #include <linux/kref.h> | ||
| 12 | #include "trace_stat.h" | 13 | #include "trace_stat.h" |
| 13 | #include "trace.h" | 14 | #include "trace.h" |
| 14 | 15 | ||
| @@ -16,6 +17,7 @@ | |||
| 16 | /* A cpu workqueue thread */ | 17 | /* A cpu workqueue thread */ |
| 17 | struct cpu_workqueue_stats { | 18 | struct cpu_workqueue_stats { |
| 18 | struct list_head list; | 19 | struct list_head list; |
| 20 | struct kref kref; | ||
| 19 | int cpu; | 21 | int cpu; |
| 20 | pid_t pid; | 22 | pid_t pid; |
| 21 | /* Can be inserted from interrupt or user context, need to be atomic */ | 23 | /* Can be inserted from interrupt or user context, need to be atomic */ |
| @@ -39,6 +41,11 @@ struct workqueue_global_stats { | |||
| 39 | static DEFINE_PER_CPU(struct workqueue_global_stats, all_workqueue_stat); | 41 | static DEFINE_PER_CPU(struct workqueue_global_stats, all_workqueue_stat); |
| 40 | #define workqueue_cpu_stat(cpu) (&per_cpu(all_workqueue_stat, cpu)) | 42 | #define workqueue_cpu_stat(cpu) (&per_cpu(all_workqueue_stat, cpu)) |
| 41 | 43 | ||
| 44 | static void cpu_workqueue_stat_free(struct kref *kref) | ||
| 45 | { | ||
| 46 | kfree(container_of(kref, struct cpu_workqueue_stats, kref)); | ||
| 47 | } | ||
| 48 | |||
| 42 | /* Insertion of a work */ | 49 | /* Insertion of a work */ |
| 43 | static void | 50 | static void |
| 44 | probe_workqueue_insertion(struct task_struct *wq_thread, | 51 | probe_workqueue_insertion(struct task_struct *wq_thread, |
| @@ -96,8 +103,8 @@ static void probe_workqueue_creation(struct task_struct *wq_thread, int cpu) | |||
| 96 | return; | 103 | return; |
| 97 | } | 104 | } |
| 98 | INIT_LIST_HEAD(&cws->list); | 105 | INIT_LIST_HEAD(&cws->list); |
| 106 | kref_init(&cws->kref); | ||
| 99 | cws->cpu = cpu; | 107 | cws->cpu = cpu; |
| 100 | |||
| 101 | cws->pid = wq_thread->pid; | 108 | cws->pid = wq_thread->pid; |
| 102 | 109 | ||
| 103 | spin_lock_irqsave(&workqueue_cpu_stat(cpu)->lock, flags); | 110 | spin_lock_irqsave(&workqueue_cpu_stat(cpu)->lock, flags); |
| @@ -118,7 +125,7 @@ static void probe_workqueue_destruction(struct task_struct *wq_thread) | |||
| 118 | list) { | 125 | list) { |
| 119 | if (node->pid == wq_thread->pid) { | 126 | if (node->pid == wq_thread->pid) { |
| 120 | list_del(&node->list); | 127 | list_del(&node->list); |
| 121 | kfree(node); | 128 | kref_put(&node->kref, cpu_workqueue_stat_free); |
| 122 | goto found; | 129 | goto found; |
| 123 | } | 130 | } |
| 124 | } | 131 | } |
| @@ -137,9 +144,11 @@ static struct cpu_workqueue_stats *workqueue_stat_start_cpu(int cpu) | |||
| 137 | 144 | ||
| 138 | spin_lock_irqsave(&workqueue_cpu_stat(cpu)->lock, flags); | 145 | spin_lock_irqsave(&workqueue_cpu_stat(cpu)->lock, flags); |
| 139 | 146 | ||
| 140 | if (!list_empty(&workqueue_cpu_stat(cpu)->list)) | 147 | if (!list_empty(&workqueue_cpu_stat(cpu)->list)) { |
| 141 | ret = list_entry(workqueue_cpu_stat(cpu)->list.next, | 148 | ret = list_entry(workqueue_cpu_stat(cpu)->list.next, |
| 142 | struct cpu_workqueue_stats, list); | 149 | struct cpu_workqueue_stats, list); |
| 150 | kref_get(&ret->kref); | ||
| 151 | } | ||
| 143 | 152 | ||
| 144 | spin_unlock_irqrestore(&workqueue_cpu_stat(cpu)->lock, flags); | 153 | spin_unlock_irqrestore(&workqueue_cpu_stat(cpu)->lock, flags); |
| 145 | 154 | ||
| @@ -162,9 +171,9 @@ static void *workqueue_stat_start(struct tracer_stat *trace) | |||
| 162 | static void *workqueue_stat_next(void *prev, int idx) | 171 | static void *workqueue_stat_next(void *prev, int idx) |
| 163 | { | 172 | { |
| 164 | struct cpu_workqueue_stats *prev_cws = prev; | 173 | struct cpu_workqueue_stats *prev_cws = prev; |
| 174 | struct cpu_workqueue_stats *ret; | ||
| 165 | int cpu = prev_cws->cpu; | 175 | int cpu = prev_cws->cpu; |
| 166 | unsigned long flags; | 176 | unsigned long flags; |
| 167 | void *ret = NULL; | ||
| 168 | 177 | ||
| 169 | spin_lock_irqsave(&workqueue_cpu_stat(cpu)->lock, flags); | 178 | spin_lock_irqsave(&workqueue_cpu_stat(cpu)->lock, flags); |
| 170 | if (list_is_last(&prev_cws->list, &workqueue_cpu_stat(cpu)->list)) { | 179 | if (list_is_last(&prev_cws->list, &workqueue_cpu_stat(cpu)->list)) { |
| @@ -175,11 +184,14 @@ static void *workqueue_stat_next(void *prev, int idx) | |||
| 175 | return NULL; | 184 | return NULL; |
| 176 | } while (!(ret = workqueue_stat_start_cpu(cpu))); | 185 | } while (!(ret = workqueue_stat_start_cpu(cpu))); |
| 177 | return ret; | 186 | return ret; |
| 187 | } else { | ||
| 188 | ret = list_entry(prev_cws->list.next, | ||
| 189 | struct cpu_workqueue_stats, list); | ||
| 190 | kref_get(&ret->kref); | ||
| 178 | } | 191 | } |
| 179 | spin_unlock_irqrestore(&workqueue_cpu_stat(cpu)->lock, flags); | 192 | spin_unlock_irqrestore(&workqueue_cpu_stat(cpu)->lock, flags); |
| 180 | 193 | ||
| 181 | return list_entry(prev_cws->list.next, struct cpu_workqueue_stats, | 194 | return ret; |
| 182 | list); | ||
| 183 | } | 195 | } |
| 184 | 196 | ||
| 185 | static int workqueue_stat_show(struct seq_file *s, void *p) | 197 | static int workqueue_stat_show(struct seq_file *s, void *p) |
| @@ -203,6 +215,13 @@ static int workqueue_stat_show(struct seq_file *s, void *p) | |||
| 203 | return 0; | 215 | return 0; |
| 204 | } | 216 | } |
| 205 | 217 | ||
| 218 | static void workqueue_stat_release(void *stat) | ||
| 219 | { | ||
| 220 | struct cpu_workqueue_stats *node = stat; | ||
| 221 | |||
| 222 | kref_put(&node->kref, cpu_workqueue_stat_free); | ||
| 223 | } | ||
| 224 | |||
| 206 | static int workqueue_stat_headers(struct seq_file *s) | 225 | static int workqueue_stat_headers(struct seq_file *s) |
| 207 | { | 226 | { |
| 208 | seq_printf(s, "# CPU INSERTED EXECUTED NAME\n"); | 227 | seq_printf(s, "# CPU INSERTED EXECUTED NAME\n"); |
| @@ -215,6 +234,7 @@ struct tracer_stat workqueue_stats __read_mostly = { | |||
| 215 | .stat_start = workqueue_stat_start, | 234 | .stat_start = workqueue_stat_start, |
| 216 | .stat_next = workqueue_stat_next, | 235 | .stat_next = workqueue_stat_next, |
| 217 | .stat_show = workqueue_stat_show, | 236 | .stat_show = workqueue_stat_show, |
| 237 | .stat_release = workqueue_stat_release, | ||
| 218 | .stat_headers = workqueue_stat_headers | 238 | .stat_headers = workqueue_stat_headers |
| 219 | }; | 239 | }; |
| 220 | 240 | ||
