2 * This header is for functions & variables that will ONLY be
3 * used inside libkvm for x86.
4 * THESE ARE NOT EXPOSED TO THE USER AND ARE ONLY FOR USE
7 * derived from libkvm.c
9 * Copyright (C) 2006 Qumranet, Inc.
12 * Avi Kivity <avi@qumranet.com>
13 * Yaniv Kamay <yaniv@qumranet.com>
15 * This work is licensed under the GNU LGPL license, version 2.
21 #define PAGE_SIZE 4096ul
22 #define PAGE_MASK (~(PAGE_SIZE - 1))
24 int kvm_set_tss_addr(kvm_context_t kvm
, unsigned long addr
);
26 #define smp_wmb() asm volatile("" ::: "memory")