From: "李 ヨンジュン" <getfeus@gmail.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] Inject Interrupt, Using VMCS during qemu live migration.
Date: Sun, 09 Sep 2012 12:09:00 +0900 [thread overview]
Message-ID: <504C084C.4080900@gmail.com> (raw)
Hello, I am trying to inject interrupt, in final phase of Live migration.
I use vmcs_write32 function to inject interrupt. This function is called
by qemu, with ioctl.
This is Code.
(KVM)
void vmcs_write32_provider(unsigned long field, u32 value)
{
vmcs_write32(field, value);
}
long kvm_arch_vcpu_ioctl(struct file *filp,
unsigned int ioctl, unsigned long arg)
{
~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
case KVM_TEST_IOCTL: {
r=0;
//printk("Test IOCTL!!!\n");
int type = 0;
int trap=58;
u32 intr_fields= (0x80000000 | (type<<8) | trap);
vmcs_write32_provider(0x00004016,intr_fields);
printk("vmcs_write Success!!!\n");
goto out;
}
This code works perfectly when called by hypercall.(When call this
function in kvm_emulate_hypercall function by guest VM.)
But, when I trying to call this function by qemu(ioctl), This error
message is occurred.
http://pds23.egloos.com/pds/201209/09/86/f0062286_504c07a4bc3c7.png
I need help. Thank you.
next reply other threads:[~2012-09-09 3:09 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-09-09 3:09 李 ヨンジュン [this message]
2012-09-09 7:45 ` [Qemu-devel] Inject Interrupt, Using VMCS during qemu live migration Gleb Natapov
-- strict thread matches above, loose matches on Subject: below --
2012-09-09 3:27 李 ヨンジュン
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=504C084C.4080900@gmail.com \
--to=getfeus@gmail.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.