mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
0d1fb0a47c
Convert files to use SPDX header. All files are licensed under the GPLv2. Signed-off-by: Alex Dewar <alex.dewar@gmx.co.uk> Signed-off-by: Richard Weinberger <richard@nod.at>
60 lines
1,001 B
C
60 lines
1,001 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
|
|
*/
|
|
|
|
#include <linux/sched/signal.h>
|
|
#include <linux/sched/task.h>
|
|
#include <linux/sched/mm.h>
|
|
#include <linux/spinlock.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/oom.h>
|
|
#include <kern_util.h>
|
|
#include <os.h>
|
|
#include <skas.h>
|
|
|
|
void (*pm_power_off)(void);
|
|
EXPORT_SYMBOL(pm_power_off);
|
|
|
|
static void kill_off_processes(void)
|
|
{
|
|
struct task_struct *p;
|
|
int pid;
|
|
|
|
read_lock(&tasklist_lock);
|
|
for_each_process(p) {
|
|
struct task_struct *t;
|
|
|
|
t = find_lock_task_mm(p);
|
|
if (!t)
|
|
continue;
|
|
pid = t->mm->context.id.u.pid;
|
|
task_unlock(t);
|
|
os_kill_ptraced_process(pid, 1);
|
|
}
|
|
read_unlock(&tasklist_lock);
|
|
}
|
|
|
|
void uml_cleanup(void)
|
|
{
|
|
kmalloc_ok = 0;
|
|
do_uml_exitcalls();
|
|
kill_off_processes();
|
|
}
|
|
|
|
void machine_restart(char * __unused)
|
|
{
|
|
uml_cleanup();
|
|
reboot_skas();
|
|
}
|
|
|
|
void machine_power_off(void)
|
|
{
|
|
uml_cleanup();
|
|
halt_skas();
|
|
}
|
|
|
|
void machine_halt(void)
|
|
{
|
|
machine_power_off();
|
|
}
|