提交 83cc5ed3 编写于 作者: A Adrian Bunk 提交者: Linus Torvalds

[PATCH] kernel/sys.c: cleanups

- proper prototypes for the following functions:
  - ctrl_alt_del()  (in include/linux/reboot.h)
  - getrusage()     (in include/linux/resource.h)
- make the following needlessly global functions static:
  - kernel_restart_prepare()
  - kernel_kexec()

[akpm@osdl.org: compile fix]
Signed-off-by: NAdrian Bunk <bunk@stusta.de>
Signed-off-by: NAndrew Morton <akpm@osdl.org>
Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
上级 76a8ad29
...@@ -20,11 +20,10 @@ ...@@ -20,11 +20,10 @@
#include <linux/module.h> #include <linux/module.h>
#include <linux/reboot.h> #include <linux/reboot.h>
#include <linux/interrupt.h> #include <linux/interrupt.h>
#include <linux/reboot.h>
#include <asm/mach-types.h> #include <asm/mach-types.h>
extern void ctrl_alt_del(void);
static irqreturn_t nas100d_reset_handler(int irq, void *dev_id, struct pt_regs *regs) static irqreturn_t nas100d_reset_handler(int irq, void *dev_id, struct pt_regs *regs)
{ {
/* Signal init to do the ctrlaltdel action, this will bypass init if /* Signal init to do the ctrlaltdel action, this will bypass init if
......
...@@ -20,11 +20,10 @@ ...@@ -20,11 +20,10 @@
#include <linux/module.h> #include <linux/module.h>
#include <linux/reboot.h> #include <linux/reboot.h>
#include <linux/interrupt.h> #include <linux/interrupt.h>
#include <linux/reboot.h>
#include <asm/mach-types.h> #include <asm/mach-types.h>
extern void ctrl_alt_del(void);
static irqreturn_t nslu2_power_handler(int irq, void *dev_id, struct pt_regs *regs) static irqreturn_t nslu2_power_handler(int irq, void *dev_id, struct pt_regs *regs)
{ {
/* Signal init to do the ctrlaltdel action, this will bypass init if /* Signal init to do the ctrlaltdel action, this will bypass init if
......
...@@ -13,6 +13,7 @@ ...@@ -13,6 +13,7 @@
#include <linux/smp_lock.h> #include <linux/smp_lock.h>
#include <linux/time.h> #include <linux/time.h>
#include <linux/ptrace.h> #include <linux/ptrace.h>
#include <linux/resource.h>
#include <asm/ptrace.h> #include <asm/ptrace.h>
#include <asm/uaccess.h> #include <asm/uaccess.h>
...@@ -540,8 +541,6 @@ asmlinkage int irix_sigpoll_sys(unsigned long __user *set, ...@@ -540,8 +541,6 @@ asmlinkage int irix_sigpoll_sys(unsigned long __user *set,
#define IRIX_P_PGID 2 #define IRIX_P_PGID 2
#define IRIX_P_ALL 7 #define IRIX_P_ALL 7
extern int getrusage(struct task_struct *, int, struct rusage __user *);
#define W_EXITED 1 #define W_EXITED 1
#define W_TRAPPED 2 #define W_TRAPPED 2
#define W_STOPPED 4 #define W_STOPPED 4
......
...@@ -31,6 +31,7 @@ ...@@ -31,6 +31,7 @@
#include <linux/socket.h> #include <linux/socket.h>
#include <linux/security.h> #include <linux/security.h>
#include <linux/syscalls.h> #include <linux/syscalls.h>
#include <linux/resource.h>
#include <asm/ptrace.h> #include <asm/ptrace.h>
#include <asm/page.h> #include <asm/page.h>
...@@ -235,7 +236,6 @@ asmlinkage int irix_prctl(unsigned option, ...) ...@@ -235,7 +236,6 @@ asmlinkage int irix_prctl(unsigned option, ...)
#undef DEBUG_PROCGRPS #undef DEBUG_PROCGRPS
extern unsigned long irix_mapelf(int fd, struct elf_phdr __user *user_phdrp, int cnt); extern unsigned long irix_mapelf(int fd, struct elf_phdr __user *user_phdrp, int cnt);
extern int getrusage(struct task_struct *p, int who, struct rusage __user *ru);
extern char *prom_getenv(char *name); extern char *prom_getenv(char *name);
extern long prom_setenv(char *name, char *value); extern long prom_setenv(char *name, char *value);
......
...@@ -300,8 +300,6 @@ void mconsole_reboot(struct mc_request *req) ...@@ -300,8 +300,6 @@ void mconsole_reboot(struct mc_request *req)
machine_restart(NULL); machine_restart(NULL);
} }
extern void ctrl_alt_del(void);
void mconsole_cad(struct mc_request *req) void mconsole_cad(struct mc_request *req)
{ {
mconsole_reply(req, "", 0, 0); mconsole_reply(req, "", 0, 0);
......
...@@ -39,6 +39,7 @@ ...@@ -39,6 +39,7 @@
#include <linux/vt_kern.h> #include <linux/vt_kern.h>
#include <linux/sysrq.h> #include <linux/sysrq.h>
#include <linux/input.h> #include <linux/input.h>
#include <linux/reboot.h>
static void kbd_disconnect(struct input_handle *handle); static void kbd_disconnect(struct input_handle *handle);
extern void ctrl_alt_del(void); extern void ctrl_alt_del(void);
......
...@@ -13,6 +13,7 @@ ...@@ -13,6 +13,7 @@
#include <linux/cpumask.h> #include <linux/cpumask.h>
#include <linux/smp.h> #include <linux/smp.h>
#include <linux/init.h> #include <linux/init.h>
#include <linux/reboot.h>
#include <asm/atomic.h> #include <asm/atomic.h>
#include <asm/ptrace.h> #include <asm/ptrace.h>
#include <asm/sigp.h> #include <asm/sigp.h>
...@@ -66,8 +67,6 @@ do_machine_quiesce(void) ...@@ -66,8 +67,6 @@ do_machine_quiesce(void)
} }
#endif #endif
extern void ctrl_alt_del(void);
/* Handler for quiesce event. Start shutdown procedure. */ /* Handler for quiesce event. Start shutdown procedure. */
static void static void
sclp_quiesce_handler(struct evbuf_header *evbuf) sclp_quiesce_handler(struct evbuf_header *evbuf)
......
...@@ -59,13 +59,13 @@ extern void machine_crash_shutdown(struct pt_regs *); ...@@ -59,13 +59,13 @@ extern void machine_crash_shutdown(struct pt_regs *);
* Architecture independent implemenations of sys_reboot commands. * Architecture independent implemenations of sys_reboot commands.
*/ */
extern void kernel_restart_prepare(char *cmd);
extern void kernel_shutdown_prepare(enum system_states state); extern void kernel_shutdown_prepare(enum system_states state);
extern void kernel_restart(char *cmd); extern void kernel_restart(char *cmd);
extern void kernel_halt(void); extern void kernel_halt(void);
extern void kernel_power_off(void); extern void kernel_power_off(void);
extern void kernel_kexec(void);
void ctrl_alt_del(void);
/* /*
* Emergency restart, callable from an interrupt handler. * Emergency restart, callable from an interrupt handler.
......
...@@ -3,6 +3,8 @@ ...@@ -3,6 +3,8 @@
#include <linux/time.h> #include <linux/time.h>
struct task_struct;
/* /*
* Resource control/accounting header file for linux * Resource control/accounting header file for linux
*/ */
...@@ -67,4 +69,6 @@ struct rlimit { ...@@ -67,4 +69,6 @@ struct rlimit {
*/ */
#include <asm/resource.h> #include <asm/resource.h>
int getrusage(struct task_struct *p, int who, struct rusage __user *ru);
#endif #endif
...@@ -36,6 +36,7 @@ ...@@ -36,6 +36,7 @@
#include <linux/compat.h> #include <linux/compat.h>
#include <linux/pipe_fs_i.h> #include <linux/pipe_fs_i.h>
#include <linux/audit.h> /* for audit_free() */ #include <linux/audit.h> /* for audit_free() */
#include <linux/resource.h>
#include <asm/uaccess.h> #include <asm/uaccess.h>
#include <asm/unistd.h> #include <asm/unistd.h>
...@@ -45,8 +46,6 @@ ...@@ -45,8 +46,6 @@
extern void sem_exit (void); extern void sem_exit (void);
extern struct task_struct *child_reaper; extern struct task_struct *child_reaper;
int getrusage(struct task_struct *, int, struct rusage __user *);
static void exit_mm(struct task_struct * tsk); static void exit_mm(struct task_struct * tsk);
static void __unhash_process(struct task_struct *p) static void __unhash_process(struct task_struct *p)
......
...@@ -589,7 +589,7 @@ void emergency_restart(void) ...@@ -589,7 +589,7 @@ void emergency_restart(void)
} }
EXPORT_SYMBOL_GPL(emergency_restart); EXPORT_SYMBOL_GPL(emergency_restart);
void kernel_restart_prepare(char *cmd) static void kernel_restart_prepare(char *cmd)
{ {
blocking_notifier_call_chain(&reboot_notifier_list, SYS_RESTART, cmd); blocking_notifier_call_chain(&reboot_notifier_list, SYS_RESTART, cmd);
system_state = SYSTEM_RESTART; system_state = SYSTEM_RESTART;
...@@ -623,7 +623,7 @@ EXPORT_SYMBOL_GPL(kernel_restart); ...@@ -623,7 +623,7 @@ EXPORT_SYMBOL_GPL(kernel_restart);
* Move into place and start executing a preloaded standalone * Move into place and start executing a preloaded standalone
* executable. If nothing was preloaded return an error. * executable. If nothing was preloaded return an error.
*/ */
void kernel_kexec(void) static void kernel_kexec(void)
{ {
#ifdef CONFIG_KEXEC #ifdef CONFIG_KEXEC
struct kimage *image; struct kimage *image;
...@@ -637,7 +637,6 @@ void kernel_kexec(void) ...@@ -637,7 +637,6 @@ void kernel_kexec(void)
machine_kexec(image); machine_kexec(image);
#endif #endif
} }
EXPORT_SYMBOL_GPL(kernel_kexec);
void kernel_shutdown_prepare(enum system_states state) void kernel_shutdown_prepare(enum system_states state)
{ {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册