All of lore.kernel.org
 help / color / mirror / Atom feed
From: Adrian Bunk <bunk@kernel.org>
To: Pavel Emelyanov <xemul@openvz.org>
Cc: linux-kernel@vger.kernel.org
Subject: [2.6 patch] unexport kernel/pid.c:task_*
Date: Wed, 24 Oct 2007 18:24:19 +0200	[thread overview]
Message-ID: <20071024162419.GG30533@stusta.de> (raw)

This patch removes the following unused EXPORT_SYMBOL's:
- task_pid_nr_ns
- task_tgid_nr_ns
- task_pgrp_nr_ns
- task_session_nr_ns

Signed-off-by: Adrian Bunk <bunk@kernel.org>

---

 kernel/pid.c |    4 ----
 1 file changed, 4 deletions(-)

8fd7ba197fac407ae18c69798098be65096efdaf 
diff --git a/kernel/pid.c b/kernel/pid.c
index b09d7c9..a805a26 100644
--- a/kernel/pid.c
+++ b/kernel/pid.c
@@ -443,25 +443,21 @@ pid_t task_pid_nr_ns(struct task_struct *tsk, struct pid_namespace *ns)
 {
 	return pid_nr_ns(task_pid(tsk), ns);
 }
-EXPORT_SYMBOL(task_pid_nr_ns);
 
 pid_t task_tgid_nr_ns(struct task_struct *tsk, struct pid_namespace *ns)
 {
 	return pid_nr_ns(task_tgid(tsk), ns);
 }
-EXPORT_SYMBOL(task_tgid_nr_ns);
 
 pid_t task_pgrp_nr_ns(struct task_struct *tsk, struct pid_namespace *ns)
 {
 	return pid_nr_ns(task_pgrp(tsk), ns);
 }
-EXPORT_SYMBOL(task_pgrp_nr_ns);
 
 pid_t task_session_nr_ns(struct task_struct *tsk, struct pid_namespace *ns)
 {
 	return pid_nr_ns(task_session(tsk), ns);
 }
-EXPORT_SYMBOL(task_session_nr_ns);
 
 /*
  * Used by proc to find the first pid that is greater then or equal to nr.


                 reply	other threads:[~2007-10-24 16:33 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20071024162419.GG30533@stusta.de \
    --to=bunk@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=xemul@openvz.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.