crash_dump.c (96916090f488986a4ebb8e9ffa6a3b50881d5ccd) crash_dump.c (aaddd3eacaeaef3503035750b3f21ac2bfe97cbf)
1/*
2 * Routines for doing kexec-based kdump.
3 *
4 * Copyright (C) 2005, IBM Corp.
5 *
6 * Created by: Michael Ellerman
7 *
8 * This source code is licensed under the GNU General Public License,
9 * Version 2. See the file COPYING for more details.
10 */
11
12#undef DEBUG
13
14#include <linux/crash_dump.h>
15#include <linux/bootmem.h>
16#include <linux/lmb.h>
1/*
2 * Routines for doing kexec-based kdump.
3 *
4 * Copyright (C) 2005, IBM Corp.
5 *
6 * Created by: Michael Ellerman
7 *
8 * This source code is licensed under the GNU General Public License,
9 * Version 2. See the file COPYING for more details.
10 */
11
12#undef DEBUG
13
14#include <linux/crash_dump.h>
15#include <linux/bootmem.h>
16#include <linux/lmb.h>
17#include <asm/code-patching.h>
17#include <asm/kdump.h>
18#include <asm/prom.h>
19#include <asm/firmware.h>
20#include <asm/uaccess.h>
21
22#ifdef DEBUG
23#include <asm/udbg.h>
24#define DBG(fmt...) udbg_printf(fmt)

--- 95 unchanged lines hidden ---
18#include <asm/kdump.h>
19#include <asm/prom.h>
20#include <asm/firmware.h>
21#include <asm/uaccess.h>
22
23#ifdef DEBUG
24#include <asm/udbg.h>
25#define DBG(fmt...) udbg_printf(fmt)

--- 95 unchanged lines hidden ---