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

Commit 7645e432 authored by H. Peter Anvin's avatar H. Peter Anvin Committed by Linus Torvalds
Browse files

x86, kvm: Remove cast obsoleted by set_64bit() prototype cleanup



KVM ended up having to put a pretty ugly wrapper around set_64bit()
in order to get the type right.  Now set_64bit() takes the expected
u64 type, and this wrapper can be cleaned up.

Signed-off-by: default avatarH. Peter Anvin <hpa@zytor.com>
Cc: Avi Kivity <avi@redhat.com>
LKML-Reference: <4C5C4E7A.8040603@kernel.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 1685e633
Loading
Loading
Loading
Loading
+1 −5
Original line number Diff line number Diff line
@@ -281,11 +281,7 @@ static gfn_t pse36_gfn_delta(u32 gpte)

static void __set_spte(u64 *sptep, u64 spte)
{
#ifdef CONFIG_X86_64
	set_64bit((unsigned long *)sptep, spte);
#else
	set_64bit((unsigned long long *)sptep, spte);
#endif
	set_64bit(sptep, spte);
}

static u64 __xchg_spte(u64 *sptep, u64 new_spte)