Skip to content

Commit

Permalink
KVM: add kvm_para_available to asm-generic/kvm_para.h
Browse files Browse the repository at this point in the history
According to include/uapi/linux/kvm_para.h architectures should define
kvm_para_available, so add an implementation to asm-generic/kvm_para.h
which just returns false.

This fixes intel8x0.c build failure on mips with KVM enabled.

Signed-off-by: James Hogan <james.hogan@imgtec.com>
Cc: Marcelo Tosatti <mtosatti@redhat.com>
Cc: Gleb Natapov <gleb@redhat.com>
Cc: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Gleb Natapov <gleb@redhat.com>
  • Loading branch information
James Hogan authored and Gleb Natapov committed Jun 5, 2013
1 parent 844ce9f commit 066a1a5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions include/asm-generic/kvm_para.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,9 @@ static inline unsigned int kvm_arch_para_features(void)
return 0;
}

static inline bool kvm_para_available(void)
{
return false;
}

#endif

0 comments on commit 066a1a5

Please sign in to comment.