diff options
Diffstat (limited to 'kernel/pid.c')
| -rw-r--r-- | kernel/pid.c | 11 | 
1 files changed, 3 insertions, 8 deletions
| diff --git a/kernel/pid.c b/kernel/pid.c index 20d59fa2d493..064e76afa507 100644 --- a/kernel/pid.c +++ b/kernel/pid.c @@ -30,6 +30,7 @@  #include <linux/module.h>  #include <linux/slab.h>  #include <linux/init.h> +#include <linux/rculist.h>  #include <linux/bootmem.h>  #include <linux/hash.h>  #include <linux/pid_namespace.h> @@ -308,12 +309,6 @@ struct pid *find_vpid(int nr)  }  EXPORT_SYMBOL_GPL(find_vpid); -struct pid *find_pid(int nr) -{ -	return find_pid_ns(nr, &init_pid_ns); -} -EXPORT_SYMBOL_GPL(find_pid); -  /*   * attach_pid() must be called with the tasklist_lock write-held.   */ @@ -434,6 +429,7 @@ struct pid *find_get_pid(pid_t nr)  	return pid;  } +EXPORT_SYMBOL_GPL(find_get_pid);  pid_t pid_nr_ns(struct pid *pid, struct pid_namespace *ns)  { @@ -481,7 +477,7 @@ EXPORT_SYMBOL(task_session_nr_ns);  /*   * Used by proc to find the first pid that is greater then or equal to nr.   * - * If there is a pid at nr this function is exactly the same as find_pid. + * If there is a pid at nr this function is exactly the same as find_pid_ns.   */  struct pid *find_ge_pid(int nr, struct pid_namespace *ns)  { @@ -496,7 +492,6 @@ struct pid *find_ge_pid(int nr, struct pid_namespace *ns)  	return pid;  } -EXPORT_SYMBOL_GPL(find_get_pid);  /*   * The pid hash table is scaled according to the amount of memory in the | 
