[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <11660080802807-git-send-email-ebiederm@xmission.com>
Date: Wed, 13 Dec 2006 04:07:55 -0700
From: "Eric W. Biederman" <ebiederm@...ssion.com>
To: "<Andrew Morton" <akpm@...l.org>
Cc: <containers@...ts.osdl.org>, Oleg Nesterov <oleg@...sign.ru>,
Alan Cox <alan@...rguk.ukuu.org.uk>,
<linux-kernel@...r.kernel.org>,
"Eric W. Biederman" <ebiederm@...ssion.com>
Subject: [PATCH 11/12] pid: Remove now unused do_each_task_pid and while_each_task_pid
Now that I have changed all of the users remove the old version of these
functions. This should be a clear hint to any out of tree users
that they should use do_each_pid_task and while_each_pid_task for
new code.
Signed-off-by: Eric W. Biederman <ebiederm@...ssion.com>
---
include/linux/pid.h | 14 --------------
1 files changed, 0 insertions(+), 14 deletions(-)
diff --git a/include/linux/pid.h b/include/linux/pid.h
index 4dec047..2ac27f9 100644
--- a/include/linux/pid.h
+++ b/include/linux/pid.h
@@ -105,20 +105,6 @@ static inline pid_t pid_nr(struct pid *pid)
return nr;
}
-
-#define do_each_task_pid(who, type, task) \
- do { \
- struct hlist_node *pos___; \
- struct pid *pid___ = find_pid(who); \
- if (pid___ != NULL) \
- hlist_for_each_entry_rcu((task), pos___, \
- &pid___->tasks[type], pids[type].node) {
-
-#define while_each_task_pid(who, type, task) \
- } \
- } while (0)
-
-
#define do_each_pid_task(pid, type, task) \
do { \
struct hlist_node *pos___; \
--
1.4.4.1.g278f
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists