Backout my last commit.
Requested by: bde
This commit is contained in:
parent
43652a6ba6
commit
d1fc2022c3
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=113728
@ -444,16 +444,16 @@ invlpg(u_int addr)
|
||||
static __inline u_int
|
||||
rfs(void)
|
||||
{
|
||||
u_short sel;
|
||||
__asm __volatile("movw %%fs,%0" : "=rm" (sel));
|
||||
u_int sel;
|
||||
__asm __volatile("movl %%fs,%0" : "=rm" (sel));
|
||||
return (sel);
|
||||
}
|
||||
|
||||
static __inline u_int
|
||||
rgs(void)
|
||||
{
|
||||
u_short sel;
|
||||
__asm __volatile("movw %%gs,%0" : "=rm" (sel));
|
||||
u_int sel;
|
||||
__asm __volatile("movl %%gs,%0" : "=rm" (sel));
|
||||
return (sel);
|
||||
}
|
||||
|
||||
|
@ -444,16 +444,16 @@ invlpg(u_int addr)
|
||||
static __inline u_int
|
||||
rfs(void)
|
||||
{
|
||||
u_short sel;
|
||||
__asm __volatile("movw %%fs,%0" : "=rm" (sel));
|
||||
u_int sel;
|
||||
__asm __volatile("movl %%fs,%0" : "=rm" (sel));
|
||||
return (sel);
|
||||
}
|
||||
|
||||
static __inline u_int
|
||||
rgs(void)
|
||||
{
|
||||
u_short sel;
|
||||
__asm __volatile("movw %%gs,%0" : "=rm" (sel));
|
||||
u_int sel;
|
||||
__asm __volatile("movl %%gs,%0" : "=rm" (sel));
|
||||
return (sel);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user