diff options
author | Pavel Emelyanov <xemul@openvz.org> | 2008-07-25 04:48:35 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-25 13:53:45 -0400 |
commit | 19b0cfcca41dd772065671ad0584e1cea0f3fd13 (patch) | |
tree | 6a8a627e2e2f3f26b02fc4228517c421e66a8043 /kernel | |
parent | 33166b1ffca5e1945246bcaa77d72a22b0d3e531 (diff) |
pidns: remove now unused kill_proc function
This function operated on a pid_t to kill a task, which is no longer valid
in a containerized system.
It has finally lost all its users and we can safely remove it from the
tree.
Signed-off-by: Pavel Emelyanov <xemul@openvz.org>
Cc: Oleg Nesterov <oleg@tv-sign.ru>
Cc: "Eric W. Biederman" <ebiederm@xmission.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/signal.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/kernel/signal.c b/kernel/signal.c index 5c7b7eaa0dc6..82c3545596c5 100644 --- a/kernel/signal.c +++ b/kernel/signal.c | |||
@@ -1228,17 +1228,6 @@ int kill_pid(struct pid *pid, int sig, int priv) | |||
1228 | } | 1228 | } |
1229 | EXPORT_SYMBOL(kill_pid); | 1229 | EXPORT_SYMBOL(kill_pid); |
1230 | 1230 | ||
1231 | int | ||
1232 | kill_proc(pid_t pid, int sig, int priv) | ||
1233 | { | ||
1234 | int ret; | ||
1235 | |||
1236 | rcu_read_lock(); | ||
1237 | ret = kill_pid_info(sig, __si_special(priv), find_pid(pid)); | ||
1238 | rcu_read_unlock(); | ||
1239 | return ret; | ||
1240 | } | ||
1241 | |||
1242 | /* | 1231 | /* |
1243 | * These functions support sending signals using preallocated sigqueue | 1232 | * These functions support sending signals using preallocated sigqueue |
1244 | * structures. This is needed "because realtime applications cannot | 1233 | * structures. This is needed "because realtime applications cannot |
@@ -1906,7 +1895,6 @@ EXPORT_SYMBOL(recalc_sigpending); | |||
1906 | EXPORT_SYMBOL_GPL(dequeue_signal); | 1895 | EXPORT_SYMBOL_GPL(dequeue_signal); |
1907 | EXPORT_SYMBOL(flush_signals); | 1896 | EXPORT_SYMBOL(flush_signals); |
1908 | EXPORT_SYMBOL(force_sig); | 1897 | EXPORT_SYMBOL(force_sig); |
1909 | EXPORT_SYMBOL(kill_proc); | ||
1910 | EXPORT_SYMBOL(ptrace_notify); | 1898 | EXPORT_SYMBOL(ptrace_notify); |
1911 | EXPORT_SYMBOL(send_sig); | 1899 | EXPORT_SYMBOL(send_sig); |
1912 | EXPORT_SYMBOL(send_sig_info); | 1900 | EXPORT_SYMBOL(send_sig_info); |