| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * File: mca_drv.c |
|---|
| 3 | 4 | * Purpose: Generic MCA handling layer |
|---|
| .. | .. |
|---|
| 14 | 15 | #include <linux/interrupt.h> |
|---|
| 15 | 16 | #include <linux/irq.h> |
|---|
| 16 | 17 | #include <linux/kallsyms.h> |
|---|
| 17 | | -#include <linux/bootmem.h> |
|---|
| 18 | +#include <linux/memblock.h> |
|---|
| 18 | 19 | #include <linux/acpi.h> |
|---|
| 19 | 20 | #include <linux/timer.h> |
|---|
| 20 | 21 | #include <linux/module.h> |
|---|
| .. | .. |
|---|
| 25 | 26 | #include <linux/slab.h> |
|---|
| 26 | 27 | |
|---|
| 27 | 28 | #include <asm/delay.h> |
|---|
| 28 | | -#include <asm/machvec.h> |
|---|
| 29 | 29 | #include <asm/page.h> |
|---|
| 30 | 30 | #include <asm/ptrace.h> |
|---|
| 31 | 31 | #include <asm/sal.h> |
|---|
| .. | .. |
|---|
| 176 | 176 | spin_unlock(&mca_bh_lock); |
|---|
| 177 | 177 | |
|---|
| 178 | 178 | /* This process is about to be killed itself */ |
|---|
| 179 | | - do_exit(SIGKILL); |
|---|
| 179 | + make_task_dead(SIGKILL); |
|---|
| 180 | 180 | } |
|---|
| 181 | 181 | |
|---|
| 182 | 182 | /** |
|---|