Commit 7de6883f authored by Tejun Heo's avatar Tejun Heo Committed by Ingo Molnar

x86: fix pda_to_op()

There's no instruction to move a 64bit immediate into memory location.
Drop "i".
Signed-off-by: default avatarTejun Heo <tj@kernel.org>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 7f268f43
......@@ -78,7 +78,7 @@ do { \
case 8: \
asm(op "q %1,%%gs:%c2": \
"+m" (_proxy_pda.field) : \
"ri" ((T__)val), \
"r" ((T__)val), \
"i"(pda_offset(field))); \
break; \
default: \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment