summaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm
diff options
context:
space:
mode:
authorAvi Kivity <avi@redhat.com>2010-12-13 17:24:53 +0200
committerAvi Kivity <avi@redhat.com>2011-01-12 11:30:52 +0200
commit61cfab2e83263ea294a034b12079476a917299f4 (patch)
treebf0f6124cb79fbd65a4614cf17d4465fd734f0c8 /arch/x86/kvm
parentd3c422bd33388e6fe6777bde0e9bd20152133083 (diff)
downloadop-kernel-dev-61cfab2e83263ea294a034b12079476a917299f4.zip
op-kernel-dev-61cfab2e83263ea294a034b12079476a917299f4.tar.gz
KVM: Correct kvm_pio tracepoint count field
Currently, we record '1' for count regardless of the real count. Fix. Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/x86/kvm')
-rw-r--r--arch/x86/kvm/x86.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
index cd71d21..386cab9 100644
--- a/arch/x86/kvm/x86.c
+++ b/arch/x86/kvm/x86.c
@@ -3948,7 +3948,7 @@ static int emulator_pio_in_emulated(int size, unsigned short port, void *val,
if (vcpu->arch.pio.count)
goto data_avail;
- trace_kvm_pio(0, port, size, 1);
+ trace_kvm_pio(0, port, size, count);
vcpu->arch.pio.port = port;
vcpu->arch.pio.in = 1;
@@ -3976,7 +3976,7 @@ static int emulator_pio_out_emulated(int size, unsigned short port,
const void *val, unsigned int count,
struct kvm_vcpu *vcpu)
{
- trace_kvm_pio(1, port, size, 1);
+ trace_kvm_pio(1, port, size, count);
vcpu->arch.pio.port = port;
vcpu->arch.pio.in = 0;
OpenPOWER on IntegriCloud