~ubuntu-branches/ubuntu/hardy/kvm/hardy-backports

« back to all changes in this revision

Viewing changes to kernel/irq.c

  • Committer: Bazaar Package Importer
  • Author(s): Soren Hansen
  • Date: 2007-11-15 02:21:55 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20071115022155-pxoxb8kfcrkn72mi
Tags: 1:52+dfsg-0ubuntu1
* New upstream release.
* 08_default_tdf.patch
  - Make -tdf the default and add a -no-tdf option.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#include <linux/module.h>
23
23
 
24
24
#include "kvm.h"
 
25
#include "x86.h"
25
26
#include "irq.h"
26
27
 
27
28
/*
83
84
                smp_call_function_single(ipi_pcpu, vcpu_kick_intr, vcpu, 0, 0);
84
85
}
85
86
 
86
 
void kvm_vcpu_kick_request(struct kvm_vcpu *vcpu, int request)
87
 
{
88
 
        set_bit(request, &vcpu->requests);
89
 
        kvm_vcpu_kick(vcpu);
90
 
}
91
 
 
92
87
void kvm_inject_pending_timer_irqs(struct kvm_vcpu *vcpu)
93
88
{
94
89
        kvm_inject_apic_timer_irqs(vcpu);