aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/asm-x86/ldt.h
blob: b6f7beb4ba39c99a5ce4a52b3dd24b663bf90900 (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
#ifndef __ARCH_LDT_H
#define __ARCH_LDT_H

#ifndef __ASSEMBLY__

static inline void load_LDT(struct vcpu *v)
{
    struct desc_struct *desc;
    unsigned long ents;

    if ( (ents = v->arch.pv_vcpu.ldt_ents) == 0 )
    {
        __asm__ __volatile__ ( "lldt %%ax" : : "a" (0) );
    }
    else
    {
        desc = (!is_pv_32on64_vcpu(v)
                ? this_cpu(gdt_table) : this_cpu(compat_gdt_table))
               + LDT_ENTRY - FIRST_RESERVED_GDT_ENTRY;
        _set_tssldt_desc(desc, LDT_VIRT_START(v), ents*8-1, 2);
        __asm__ __volatile__ ( "lldt %%ax" : : "a" (LDT_ENTRY << 3) );
    }
}

#endif /* !__ASSEMBLY__ */

#endif

/*
 * Local variables:
 * mode: C
 * c-file-style: "BSD"
 * c-basic-offset: 4
 * tab-width: 4
 * indent-tabs-mode: nil
 * End:
 */