File: kexec-iomem.c

package info (click to toggle)
kexec-tools 1%3A2.0.3-1%2Bdeb7u1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 2,780 kB
  • sloc: ansic: 24,550; sh: 2,912; asm: 2,496; cpp: 1,747; makefile: 731
file content (23 lines) | stat: -rw-r--r-- 768 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <stdint.h>
#include <stdio.h>
#include "../../kexec.h"
#include "../../crashdump.h"

static const char proc_iomem_str[]= "/proc/iomem";
static const char proc_iomem_machine_str[]= "/proc/iomem_machine";

/*
 * On IA64 XEN the EFI tables are virtualised.
 * For this reason on such systems /proc/iomem_machine is provided,
 * which is based on the hypervisor's (machine's) EFI tables.
 * If Xen is in use, then /proc/iomem is used for memory regions relating
 * to the currently running dom0 kernel, and /proc/iomem_machine is used
 * for regions relating to the machine itself or the hypervisor.
 * If Xen is not in used, then /proc/iomem used.
 */
const char *proc_iomem(void)
{
	if (xen_present())
		return proc_iomem_machine_str;
	return proc_iomem_str;
}