Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cef18950 authored by Glauber de Oliveira Costa's avatar Glauber de Oliveira Costa Committed by Ingo Molnar
Browse files

x86: put get_kernel_rpl in a common location



This macro is useful for both i386 and x86_64, so put it in a common
location, where both arches can grab it.

Signed-off-by: default avatarGlauber de Oliveira Costa <gcosta@redhat.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent eee3af4a
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
#ifndef _ASM_X86_SEGMENT_H_
#define _ASM_X86_SEGMENT_H_

#ifdef CONFIG_X86_32
# include "segment_32.h"
#else
# include "segment_64.h"
#endif

#ifndef CONFIG_PARAVIRT
#define get_kernel_rpl()  0
#endif

#endif
+0 −3
Original line number Diff line number Diff line
@@ -129,9 +129,6 @@
#define SEGMENT_LDT		0x4
#define SEGMENT_GDT		0x0

#ifndef CONFIG_PARAVIRT
#define get_kernel_rpl()  0
#endif
/*
 * Matching rules for certain types of segments.
 */