lkml.org 
[lkml]   [2014]   [Apr]   [9]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH 2/5] tracepoint: Convert process iteration to use for_each_process_thread()
Date
do_each_thread/while_each_thread iterators are deprecated by
for_each_thread/for_each_process_thread() APIs.

Lets convert the callers in the tracepoint code. The ultimate
goal is to remove the struct task_struct::thread_group field and
the corresponding do_each_thread/while_each_thread iterators that are
RCU unsafe.

Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Cc: Oleg Nesterov <oleg@redhat.com>
Cc: Steven Rostedt <rostedt@goodmis.org>
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
---
kernel/tracepoint.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/kernel/tracepoint.c b/kernel/tracepoint.c
index fb0a38a..00a7e8b 100644
--- a/kernel/tracepoint.c
+++ b/kernel/tracepoint.c
@@ -561,15 +561,15 @@ static int sys_tracepoint_refcount;
void syscall_regfunc(void)
{
unsigned long flags;
- struct task_struct *g, *t;
+ struct task_struct *p, *t;

if (!sys_tracepoint_refcount) {
read_lock_irqsave(&tasklist_lock, flags);
- do_each_thread(g, t) {
+ for_each_process_thread(p, t) {
/* Skip kernel threads. */
if (t->mm)
set_tsk_thread_flag(t, TIF_SYSCALL_TRACEPOINT);
- } while_each_thread(g, t);
+ }
read_unlock_irqrestore(&tasklist_lock, flags);
}
sys_tracepoint_refcount++;
@@ -578,14 +578,14 @@ void syscall_regfunc(void)
void syscall_unregfunc(void)
{
unsigned long flags;
- struct task_struct *g, *t;
+ struct task_struct *p, *t;

sys_tracepoint_refcount--;
if (!sys_tracepoint_refcount) {
read_lock_irqsave(&tasklist_lock, flags);
- do_each_thread(g, t) {
+ for_each_process_thread(p, t) {
clear_tsk_thread_flag(t, TIF_SYSCALL_TRACEPOINT);
- } while_each_thread(g, t);
+ }
read_unlock_irqrestore(&tasklist_lock, flags);
}
}
--
1.8.3.1


\
 
 \ /
  Last update: 2014-04-09 23:21    [W:0.190 / U:0.124 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site