Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 35939
b: refs/heads/master
c: baf5695
h: refs/heads/master
i:
  35937: 81e1d03
  35935: 40fe9b7
v: v3
  • Loading branch information
Andi Kleen authored and Andi Kleen committed Sep 26, 2006
1 parent f5eb251 commit 33f03b2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 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: 96e540492ab54423f3693958329e095878f1f12b
refs/heads/master: baf5695dd1a49bb48a3daf08726d7f243f42e97e
12 changes: 6 additions & 6 deletions trunk/include/asm-x86_64/pda.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ extern struct x8664_pda _proxy_pda;
typedef typeof(_proxy_pda.field) T__; \
switch (sizeof(_proxy_pda.field)) { \
case 2: \
asm(op "w %1,%%gs:%P2" : "+m" (_proxy_pda.field) : \
asm(op "w %1,%%gs:%c2" : "+m" (_proxy_pda.field) : \
"ri" ((T__)val),"i"(pda_offset(field))); break; \
case 4: \
asm(op "l %1,%%gs:%P2" : "+m" (_proxy_pda.field) : \
asm(op "l %1,%%gs:%c2" : "+m" (_proxy_pda.field) : \
"ri" ((T__)val),"i"(pda_offset(field))); break; \
case 8: \
asm(op "q %1,%%gs:%P2": "+m" (_proxy_pda.field) : \
asm(op "q %1,%%gs:%c2": "+m" (_proxy_pda.field) : \
"ri" ((T__)val),"i"(pda_offset(field))); break; \
default: __bad_pda_field(); \
} \
Expand All @@ -67,13 +67,13 @@ default: __bad_pda_field(); \
typeof(_proxy_pda.field) ret__; \
switch (sizeof(_proxy_pda.field)) { \
case 2: \
asm(op "w %%gs:%P1,%0":"=r" (ret__):\
asm(op "w %%gs:%c1,%0":"=r" (ret__):\
"i" (pda_offset(field)), "m" (_proxy_pda.field)); break;\
case 4: \
asm(op "l %%gs:%P1,%0":"=r" (ret__):\
asm(op "l %%gs:%c1,%0":"=r" (ret__):\
"i" (pda_offset(field)), "m" (_proxy_pda.field)); break;\
case 8: \
asm(op "q %%gs:%P1,%0":"=r" (ret__):\
asm(op "q %%gs:%c1,%0":"=r" (ret__):\
"i" (pda_offset(field)), "m" (_proxy_pda.field)); break;\
default: __bad_pda_field(); \
} \
Expand Down

0 comments on commit 33f03b2

Please sign in to comment.