diff options
author | Christoph Lameter <clameter@sgi.com> | 2006-12-06 23:32:47 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-07 11:39:22 -0500 |
commit | 298ec1e2ac85cecce3eddd167286359358c44d5d (patch) | |
tree | 36472ce09abe8bcb0dbdb56270abaf572594cb30 | |
parent | 54cc211ce3fc73a9d21c6316886db0676beaca95 (diff) |
[PATCH] Move sighand_cachep to include/signal.h
Move sighand_cachep definitioni to linux/signal.h
The sighand cache is only used in fs/exec.c and kernel/fork.c. It is defined
in kernel/fork.c but only used in fs/exec.c.
The sighand_cachep is related to signal processing. So add the definition to
signal.h.
Signed-off-by: Christoph Lameter <clameter@sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | include/linux/signal.h | 2 | ||||
-rw-r--r-- | include/linux/slab.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/signal.h b/include/linux/signal.h index 117135e33d67..14749056dd63 100644 --- a/include/linux/signal.h +++ b/include/linux/signal.h | |||
@@ -241,6 +241,8 @@ extern int sigprocmask(int, sigset_t *, sigset_t *); | |||
241 | struct pt_regs; | 241 | struct pt_regs; |
242 | extern int get_signal_to_deliver(siginfo_t *info, struct k_sigaction *return_ka, struct pt_regs *regs, void *cookie); | 242 | extern int get_signal_to_deliver(siginfo_t *info, struct k_sigaction *return_ka, struct pt_regs *regs, void *cookie); |
243 | 243 | ||
244 | extern struct kmem_cache *sighand_cachep; | ||
245 | |||
244 | #endif /* __KERNEL__ */ | 246 | #endif /* __KERNEL__ */ |
245 | 247 | ||
246 | #endif /* _LINUX_SIGNAL_H */ | 248 | #endif /* _LINUX_SIGNAL_H */ |
diff --git a/include/linux/slab.h b/include/linux/slab.h index 6b7d096f056b..467b297d2c6f 100644 --- a/include/linux/slab.h +++ b/include/linux/slab.h | |||
@@ -314,7 +314,6 @@ extern kmem_cache_t *names_cachep; | |||
314 | extern kmem_cache_t *files_cachep; | 314 | extern kmem_cache_t *files_cachep; |
315 | extern kmem_cache_t *filp_cachep; | 315 | extern kmem_cache_t *filp_cachep; |
316 | extern kmem_cache_t *fs_cachep; | 316 | extern kmem_cache_t *fs_cachep; |
317 | extern kmem_cache_t *sighand_cachep; | ||
318 | 317 | ||
319 | #endif /* __KERNEL__ */ | 318 | #endif /* __KERNEL__ */ |
320 | 319 | ||