|
@@ -196,6 +196,11 @@ static int workqueue_stat_show(struct seq_file *s, void *p)
|
|
|
struct pid *pid;
|
|
|
struct task_struct *tsk;
|
|
|
|
|
|
+ spin_lock_irqsave(&workqueue_cpu_stat(cpu)->lock, flags);
|
|
|
+ if (&cws->list == workqueue_cpu_stat(cpu)->list.next)
|
|
|
+ seq_printf(s, "\n");
|
|
|
+ spin_unlock_irqrestore(&workqueue_cpu_stat(cpu)->lock, flags);
|
|
|
+
|
|
|
pid = find_get_pid(cws->pid);
|
|
|
if (pid) {
|
|
|
tsk = get_pid_task(pid, PIDTYPE_PID);
|
|
@@ -208,18 +213,13 @@ static int workqueue_stat_show(struct seq_file *s, void *p)
|
|
|
put_pid(pid);
|
|
|
}
|
|
|
|
|
|
- spin_lock_irqsave(&workqueue_cpu_stat(cpu)->lock, flags);
|
|
|
- if (&cws->list == workqueue_cpu_stat(cpu)->list.next)
|
|
|
- seq_printf(s, "\n");
|
|
|
- spin_unlock_irqrestore(&workqueue_cpu_stat(cpu)->lock, flags);
|
|
|
-
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
static int workqueue_stat_headers(struct seq_file *s)
|
|
|
{
|
|
|
seq_printf(s, "# CPU INSERTED EXECUTED NAME\n");
|
|
|
- seq_printf(s, "# | | | |\n\n");
|
|
|
+ seq_printf(s, "# | | | |\n");
|
|
|
return 0;
|
|
|
}
|
|
|
|