x86_64: Fix paravirt compilation
Signed-off-by: Andi Kleen <ak@suse.de> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
41089644c1
commit
5f3f7cc6ad
1 changed files with 2 additions and 1 deletions
|
@ -154,13 +154,14 @@ unsigned paravirt_patch_jmp(void *target, void *site, unsigned len)
|
||||||
{
|
{
|
||||||
unsigned char *jmp = site;
|
unsigned char *jmp = site;
|
||||||
unsigned long delta = (unsigned long)target - (unsigned long)(jmp+5);
|
unsigned long delta = (unsigned long)target - (unsigned long)(jmp+5);
|
||||||
|
struct branch b;
|
||||||
|
|
||||||
if (len < 5)
|
if (len < 5)
|
||||||
return len; /* call too long for patch site */
|
return len; /* call too long for patch site */
|
||||||
|
|
||||||
b.opcode = 0xe9; /* jmp */
|
b.opcode = 0xe9; /* jmp */
|
||||||
b.delta = delta;
|
b.delta = delta;
|
||||||
text_poke(call, (unsigned char *)&b, 5);
|
text_poke(jmp, (unsigned char *)&b, 5);
|
||||||
|
|
||||||
return 5;
|
return 5;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue