From: Glauber de Oliveira Costa Date: Wed, 30 Jan 2008 12:31:13 +0000 (+0100) Subject: x86: provide tss_desc X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=18245d5b6e54ca76b60b687e43eb893f9e9dd611;p=deliverable%2Flinux.git x86: provide tss_desc Provide a new type, tss_desc, to represent the tss descriptor in a unified way accross x86_64 and i386 Signed-off-by: Glauber de Oliveira Costa Signed-off-by: Ingo Molnar Signed-off-by: Thomas Gleixner --- diff --git a/include/asm-x86/desc_defs.h b/include/asm-x86/desc_defs.h index 09ea05243497..c811f1e0829f 100644 --- a/include/asm-x86/desc_defs.h +++ b/include/asm-x86/desc_defs.h @@ -70,9 +70,11 @@ struct ldttss_desc64 { #ifdef CONFIG_X86_64 typedef struct gate_struct64 gate_desc; typedef struct ldttss_desc64 ldt_desc; +typedef struct ldttss_desc64 tss_desc; #else typedef struct desc_struct gate_desc; typedef struct desc_struct ldt_desc; +typedef struct desc_struct tss_desc; #endif struct desc_ptr {