blob: 182764542c1f32e3c374bf0af018ed029d7b7ef1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
/* SPDX-License-Identifier: GPL-2.0-only */
/*
* asm-x86/pv/mm.h
*
* Memory management interfaces for PV guests
*
* Copyright (C) 2017 Wei Liu <wei.liu2@citrix.com>
*/
#ifndef __X86_PV_MM_H__
#define __X86_PV_MM_H__
#ifdef CONFIG_PV
int pv_ro_page_fault(unsigned long addr, struct cpu_user_regs *regs);
int pv_set_gdt(struct vcpu *v, const unsigned long frames[],
unsigned int entries);
void pv_destroy_gdt(struct vcpu *v);
bool pv_map_ldt_shadow_page(unsigned int off);
bool pv_destroy_ldt(struct vcpu *v);
int validate_segdesc_page(struct page_info *page);
#else
#include <xen/errno.h>
#include <xen/lib.h>
static inline int pv_ro_page_fault(unsigned long addr,
struct cpu_user_regs *regs)
{
ASSERT_UNREACHABLE();
return 0;
}
static inline int pv_set_gdt(struct vcpu *v, const unsigned long frames[],
unsigned int entries)
{ ASSERT_UNREACHABLE(); return -EINVAL; }
static inline void pv_destroy_gdt(struct vcpu *v) { ASSERT_UNREACHABLE(); }
static inline bool pv_map_ldt_shadow_page(unsigned int off) { return false; }
static inline bool pv_destroy_ldt(struct vcpu *v)
{ ASSERT_UNREACHABLE(); return false; }
#endif
#endif /* __X86_PV_MM_H__ */
|