Skip to content

Commit

Permalink
[PATCH] pid: export the symbols needed to use struct pid *
Browse files Browse the repository at this point in the history
pids aren't something that drivers should care about.  However there are a lot
of helper layers in the kernel that do care, and are built as modules.  Before
I can convert them to using struct pid instead of pid_t I need to export the
appropriate symbols so they can continue to be built.

Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
ebiederm authored and Linus Torvalds committed Oct 2, 2006
1 parent c4b92fc commit bbf7314
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions kernel/pid.c
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,7 @@ fastcall void put_pid(struct pid *pid)
atomic_dec_and_test(&pid->count))
kmem_cache_free(pid_cachep, pid);
}
EXPORT_SYMBOL_GPL(put_pid);

static void delayed_put_pid(struct rcu_head *rhp)
{
Expand Down Expand Up @@ -234,6 +235,7 @@ struct pid * fastcall find_pid(int nr)
}
return NULL;
}
EXPORT_SYMBOL_GPL(find_pid);

int fastcall attach_pid(struct task_struct *task, enum pid_type type, int nr)
{
Expand Down Expand Up @@ -337,6 +339,7 @@ struct pid *find_ge_pid(int nr)

return pid;
}
EXPORT_SYMBOL_GPL(find_get_pid);

/*
* The pid hash table is scaled according to the amount of memory in the
Expand Down

0 comments on commit bbf7314

Please sign in to comment.