mirror of
https://github.com/clearlinux/kvmtool.git
synced 2026-09-03 20:21:27 +00:00
20 lines
387 B
C
20 lines
387 B
C
#ifndef KVM_E820_H
|
|
#define KVM_E820_H
|
|
|
|
#include <kvm/bios.h>
|
|
#include <asm/e820.h>
|
|
|
|
#define SMAP 0x534d4150 /* ASCII "SMAP" */
|
|
|
|
#define E820MAX 128 /* number of entries in E820MAP */
|
|
#define E820_X_MAX E820MAX
|
|
|
|
#define E820_RAM 1
|
|
#define E820_RESERVED 2
|
|
|
|
struct biosregs;
|
|
|
|
extern bioscall void e820_query_map(struct biosregs *regs);
|
|
|
|
#endif /* KVM_E820_H */
|