Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 79982
b: refs/heads/master
c: c81c6ca
h: refs/heads/master
v: v3
  • Loading branch information
Glauber de Oliveira Costa authored and Ingo Molnar committed Jan 30, 2008
1 parent f4162d5 commit d05b9c7
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 67 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 507f90c9f92592e7630b1c1e87bf92d2c9858cc6
refs/heads/master: c81c6ca45a69478c7877b729af1942d2b80ef582
39 changes: 33 additions & 6 deletions trunk/include/asm-x86/desc.h
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,39 @@ static inline void pack_ldt(ldt_desc *ldt, unsigned long addr,
#endif
}

static inline void pack_tss(tss_desc *tss, unsigned long addr,
unsigned size, unsigned entry)
{
#ifdef CONFIG_X86_64
set_tssldt_descriptor(tss,
addr, entry, size);
#else
pack_descriptor(tss, (unsigned long)addr,
size,
0x80 | entry, 0);
#endif
}

static inline void __set_tss_desc(unsigned cpu, unsigned int entry, void *addr)
{
struct desc_struct *d = get_cpu_gdt_table(cpu);
tss_desc tss;

/*
* sizeof(unsigned long) coming from an extra "long" at the end
* of the iobitmap. See tss_struct definition in processor.h
*
* -1? seg base+limit should be pointing to the address of the
* last valid byte
*/
pack_tss(&tss, (unsigned long)addr,
IO_BITMAP_OFFSET + IO_BITMAP_BYTES + sizeof(unsigned long) - 1,
DESC_TSS);
write_gdt_entry(d, entry, &tss, DESC_TSS);
}

#define set_tss_desc(cpu, addr) __set_tss_desc(cpu, GDT_ENTRY_TSS, addr)

static inline void native_set_ldt(const void *addr, unsigned int entries)
{
if (likely(entries == 0))
Expand Down Expand Up @@ -222,12 +255,6 @@ static inline void native_load_tls(struct thread_struct *t, unsigned int cpu)
gdt[GDT_ENTRY_TLS_MIN + i] = t->tls_array[i];
}

#ifdef CONFIG_X86_32
# include "desc_32.h"
#else
# include "desc_64.h"
#endif

#define _LDT_empty(info) (\
(info)->base_addr == 0 && \
(info)->limit == 0 && \
Expand Down
27 changes: 0 additions & 27 deletions trunk/include/asm-x86/desc_32.h

This file was deleted.

33 changes: 0 additions & 33 deletions trunk/include/asm-x86/desc_64.h
Original file line number Diff line number Diff line change
@@ -1,34 +1 @@
/* Written 2000 by Andi Kleen */
#ifndef __ARCH_DESC_H
#define __ARCH_DESC_H

#include <linux/threads.h>
#include <asm/ldt.h>

#ifndef __ASSEMBLY__

#include <linux/string.h>

#include <asm/segment.h>

static inline void set_tss_desc(unsigned cpu, void *addr)
{
struct desc_struct *d = get_cpu_gdt_table(cpu);
tss_desc tss;

/*
* sizeof(unsigned long) coming from an extra "long" at the end
* of the iobitmap. See tss_struct definition in processor.h
*
* -1? seg base+limit should be pointing to the address of the
* last valid byte
*/
set_tssldt_descriptor(&tss,
(unsigned long)addr, DESC_TSS,
IO_BITMAP_OFFSET + IO_BITMAP_BYTES + sizeof(unsigned long) - 1);
write_gdt_entry(d, GDT_ENTRY_TSS, &tss, DESC_TSS);
}

#endif /* !__ASSEMBLY__ */

#endif

0 comments on commit d05b9c7

Please sign in to comment.