[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: Adrian Bunk <bunk@stusta.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
76a8ad2939
commit
83cc5ed3c4
|
@ -20,11 +20,10 @@
|
|||
#include <linux/module.h>
|
||||
#include <linux/reboot.h>
|
||||
#include <linux/interrupt.h>
|
||||
#include <linux/reboot.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)
|
||||
{
|
||||
/* Signal init to do the ctrlaltdel action, this will bypass init if
|
||||
|
|
|
@ -20,11 +20,10 @@
|
|||
#include <linux/module.h>
|
||||
#include <linux/reboot.h>
|
||||
#include <linux/interrupt.h>
|
||||
#include <linux/reboot.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)
|
||||
{
|
||||
/* Signal init to do the ctrlaltdel action, this will bypass init if
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
#include <linux/smp_lock.h>
|
||||
#include <linux/time.h>
|
||||
#include <linux/ptrace.h>
|
||||
#include <linux/resource.h>
|
||||
|
||||
#include <asm/ptrace.h>
|
||||
#include <asm/uaccess.h>
|
||||
|
@ -540,8 +541,6 @@ out:
|
|||
#define IRIX_P_PGID 2
|
||||
#define IRIX_P_ALL 7
|
||||
|
||||
extern int getrusage(struct task_struct *, int, struct rusage __user *);
|
||||
|
||||
#define W_EXITED 1
|
||||
#define W_TRAPPED 2
|
||||
#define W_STOPPED 4
|
||||
|
|
|
@ -31,6 +31,7 @@
|
|||
#include <linux/socket.h>
|
||||
#include <linux/security.h>
|
||||
#include <linux/syscalls.h>
|
||||
#include <linux/resource.h>
|
||||
|
||||
#include <asm/ptrace.h>
|
||||
#include <asm/page.h>
|
||||
|
@ -235,7 +236,6 @@ asmlinkage int irix_prctl(unsigned option, ...)
|
|||
#undef DEBUG_PROCGRPS
|
||||
|
||||
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 long prom_setenv(char *name, char *value);
|
||||
|
||||
|
|
|
@ -300,8 +300,6 @@ void mconsole_reboot(struct mc_request *req)
|
|||
machine_restart(NULL);
|
||||
}
|
||||
|
||||
extern void ctrl_alt_del(void);
|
||||
|
||||
void mconsole_cad(struct mc_request *req)
|
||||
{
|
||||
mconsole_reply(req, "", 0, 0);
|
||||
|
|
|
@ -39,6 +39,7 @@
|
|||
#include <linux/vt_kern.h>
|
||||
#include <linux/sysrq.h>
|
||||
#include <linux/input.h>
|
||||
#include <linux/reboot.h>
|
||||
|
||||
static void kbd_disconnect(struct input_handle *handle);
|
||||
extern void ctrl_alt_del(void);
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
#include <linux/cpumask.h>
|
||||
#include <linux/smp.h>
|
||||
#include <linux/init.h>
|
||||
#include <linux/reboot.h>
|
||||
#include <asm/atomic.h>
|
||||
#include <asm/ptrace.h>
|
||||
#include <asm/sigp.h>
|
||||
|
@ -66,8 +67,6 @@ do_machine_quiesce(void)
|
|||
}
|
||||
#endif
|
||||
|
||||
extern void ctrl_alt_del(void);
|
||||
|
||||
/* Handler for quiesce event. Start shutdown procedure. */
|
||||
static void
|
||||
sclp_quiesce_handler(struct evbuf_header *evbuf)
|
||||
|
|
|
@ -59,13 +59,13 @@ extern void machine_crash_shutdown(struct pt_regs *);
|
|||
* 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_restart(char *cmd);
|
||||
extern void kernel_halt(void);
|
||||
extern void kernel_power_off(void);
|
||||
extern void kernel_kexec(void);
|
||||
|
||||
void ctrl_alt_del(void);
|
||||
|
||||
/*
|
||||
* Emergency restart, callable from an interrupt handler.
|
||||
|
|
|
@ -3,6 +3,8 @@
|
|||
|
||||
#include <linux/time.h>
|
||||
|
||||
struct task_struct;
|
||||
|
||||
/*
|
||||
* Resource control/accounting header file for linux
|
||||
*/
|
||||
|
@ -67,4 +69,6 @@ struct rlimit {
|
|||
*/
|
||||
#include <asm/resource.h>
|
||||
|
||||
int getrusage(struct task_struct *p, int who, struct rusage __user *ru);
|
||||
|
||||
#endif
|
||||
|
|
|
@ -36,6 +36,7 @@
|
|||
#include <linux/compat.h>
|
||||
#include <linux/pipe_fs_i.h>
|
||||
#include <linux/audit.h> /* for audit_free() */
|
||||
#include <linux/resource.h>
|
||||
|
||||
#include <asm/uaccess.h>
|
||||
#include <asm/unistd.h>
|
||||
|
@ -45,8 +46,6 @@
|
|||
extern void sem_exit (void);
|
||||
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 __unhash_process(struct task_struct *p)
|
||||
|
|
|
@ -589,7 +589,7 @@ void emergency_restart(void)
|
|||
}
|
||||
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);
|
||||
system_state = SYSTEM_RESTART;
|
||||
|
@ -623,7 +623,7 @@ EXPORT_SYMBOL_GPL(kernel_restart);
|
|||
* Move into place and start executing a preloaded standalone
|
||||
* executable. If nothing was preloaded return an error.
|
||||
*/
|
||||
void kernel_kexec(void)
|
||||
static void kernel_kexec(void)
|
||||
{
|
||||
#ifdef CONFIG_KEXEC
|
||||
struct kimage *image;
|
||||
|
@ -637,7 +637,6 @@ void kernel_kexec(void)
|
|||
machine_kexec(image);
|
||||
#endif
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(kernel_kexec);
|
||||
|
||||
void kernel_shutdown_prepare(enum system_states state)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue