Re: [kvm-devel] patch for review: kvm: implement guest rebooting

2007-01-22 Thread Avi Kivity
Leonard Norrgard wrote: I've been looking at the guest reboot problem, which currently reboots the host on svm when a Linux guest issues # shutdown -r now. Obviously a major issue, which we've neglected. Thanks for addressing it. The patch below stops the rebooting of the host and

Re: [kvm-devel] KVM Wiki

2007-01-22 Thread Arnd Bergmann
On Monday 22 January 2007 11:21, Klaas van Gend wrote: Maybe this can be done without much setup costs, by asking the maintainer of kernel.org. At least rt.wiki.kernel.org exists and is being used by the community. As KVM has rather similar usage patterns, I can easily imagine that we could

Re: [kvm-devel] KVM Wiki

2007-01-22 Thread Avi Kivity
Klaas van Gend wrote: Hi all, I noticed at least two promises by Avi on this list to start a wiki for KVM. Maybe this can be done without much setup costs, by asking the maintainer of kernel.org. At least rt.wiki.kernel.org exists and is being used by the community. As KVM has rather

Re: [kvm-devel] [PATCH 4/5] KVM: Fix asm constraints with CONFIG_FRAME_POINTER=n

2007-01-22 Thread Herbert Xu
Avi Kivity [EMAIL PROTECTED] wrote: A g constraint may place a local variable in an %rsp-relative memory operand. but if your assembly changes %rsp, the operand points to the wrong location. An r constraint fixes that. Thanks to Ingo Molnar for neatly bisecting the problem.