18 lines
433 B
C
18 lines
433 B
C
|
// SPDX-License-Identifier: GPL-2.0-only
|
||
|
/*
|
||
|
* Fault injection for both 32 and 64bit guests.
|
||
|
*
|
||
|
* Copyright (C) 2012,2013 - ARM Ltd
|
||
|
* Author: Marc Zyngier <marc.zyngier@arm.com>
|
||
|
*
|
||
|
* Based on arch/arm/kvm/emulate.c
|
||
|
* Copyright (C) 2012 - Virtual Open Systems and Columbia University
|
||
|
* Author: Christoffer Dall <c.dall@virtualopensystems.com>
|
||
|
*/
|
||
|
|
||
|
#include <hyp/adjust_pc.h>
|
||
|
|
||
|
void kvm_inject_exception(struct kvm_vcpu *vcpu)
|
||
|
{
|
||
|
}
|