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

Commit 5f3f7cc6 authored by Andi Kleen's avatar Andi Kleen Committed by Linus Torvalds
Browse files

x86_64: Fix paravirt compilation

parent 41089644
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -154,13 +154,14 @@ unsigned paravirt_patch_jmp(void *target, void *site, unsigned len)
{
	unsigned char *jmp = site;
	unsigned long delta = (unsigned long)target - (unsigned long)(jmp+5);
	struct branch b;

	if (len < 5)
		return len;	/* call too long for patch site */

	b.opcode = 0xe9;	/* jmp */
	b.delta = delta;
	text_poke(call, (unsigned char *)&b, 5);
	text_poke(jmp, (unsigned char *)&b, 5);

	return 5;
}