diff options
author | Adrian Bunk <bunk@stusta.de> | 2005-05-01 11:59:29 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-01 11:59:29 -0400 |
commit | 408b664a7d394a5e4315fbd14aca49b042cb2b08 (patch) | |
tree | bd3ebe72229227962d157e46e61ed65b78d6e28b /kernel/exit.c | |
parent | c31403a1f5a761599df38bcc2d6ba94f24320c33 (diff) |
[PATCH] make lots of things static
Another large rollup of various patches from Adrian which make things static
where they were needlessly exported.
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'kernel/exit.c')
-rw-r--r-- | kernel/exit.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/kernel/exit.c b/kernel/exit.c index 419d9d3c4c48..7be283d98983 100644 --- a/kernel/exit.c +++ b/kernel/exit.c | |||
@@ -39,6 +39,8 @@ extern struct task_struct *child_reaper; | |||
39 | 39 | ||
40 | int getrusage(struct task_struct *, int, struct rusage __user *); | 40 | int getrusage(struct task_struct *, int, struct rusage __user *); |
41 | 41 | ||
42 | static void exit_mm(struct task_struct * tsk); | ||
43 | |||
42 | static void __unhash_process(struct task_struct *p) | 44 | static void __unhash_process(struct task_struct *p) |
43 | { | 45 | { |
44 | nr_threads--; | 46 | nr_threads--; |
@@ -474,7 +476,7 @@ EXPORT_SYMBOL_GPL(exit_fs); | |||
474 | * Turn us into a lazy TLB process if we | 476 | * Turn us into a lazy TLB process if we |
475 | * aren't already.. | 477 | * aren't already.. |
476 | */ | 478 | */ |
477 | void exit_mm(struct task_struct * tsk) | 479 | static void exit_mm(struct task_struct * tsk) |
478 | { | 480 | { |
479 | struct mm_struct *mm = tsk->mm; | 481 | struct mm_struct *mm = tsk->mm; |
480 | 482 | ||