Re: [kvm-devel] [PATCH 1/6] KVM: In kernel pit model

2008-03-06 Thread Yang, Sheng
On Wednesday 05 March 2008 19:35:40 Yang, Sheng wrote: > On Wednesday 05 March 2008 17:15:29 Ingo Molnar wrote: > > * Yang, Sheng <[EMAIL PROTECTED]> wrote: > > > + val &= 0xff; > > > + addr &= 3; > > > > magic constants. > > I will update these constants. :) In fact, I have thought of these befor

Re: [kvm-devel] [PATCH 1/6] KVM: In kernel pit model

2008-03-06 Thread Avi Kivity
Yang, Sheng wrote: > Here is the updated patch. I kept 0xff because I think it's OK for understand > easily. :) > > Any news on the regression with older Linux guests? That's the only thing keeping my from applying the patchset. -- Do not meddle in the internals of kernels, for they are s

Re: [kvm-devel] [ANNOUNCE] kvm-62 release

2008-03-06 Thread Alexey Eremenko
> Very Nice. Must be KVM-63. > > >> - merge qemu-cvs >>- new curses display option >> >qemu -curses I'm Sorry, but it doesn't works. [EMAIL PROTECTED]:~> /usr/local/bin/qemu-system-x86_64 -curses /usr/local/bin/qemu-system-x86_64: invalid option -- '-curses'

Re: [kvm-devel] [ANNOUNCE] kvm-62 release

2008-03-06 Thread Avi Kivity
Alexey Eremenko wrote: > > > Very Nice. Must be KVM-63. > > > > > >> - merge qemu-cvs > >>- new curses display option > >> > >qemu -curses > > I'm Sorry, but it doesn't works. > > [EMAIL PROTECTED]:~> /usr/local/bin/qemu-system-x86_64 -curses > > /usr/local/bin/qemu-system-x86_64: invali

[kvm-devel] KVM-63 - ncurses

2008-03-06 Thread Alexey Eremenko
>It probably wasn't configured. Do you have the devel package installed? You are correct - it wasn't configured. The problem is - I have the package (ncurses-devel) installed, but it is not detected. KVM's "./configure" scripts skips it. But it works on my Fedora machine. I have a big problem

Re: [kvm-devel] [PATCH 1/6] KVM: In kernel pit model

2008-03-06 Thread Yang, Sheng
On Thursday 06 March 2008 16:06:51 Avi Kivity wrote: > Yang, Sheng wrote: > > Here is the updated patch. I kept 0xff because I think it's OK for > > understand easily. :) > > Any news on the regression with older Linux guests? That's the only > thing keeping my from applying the patchset. Not muc

Re: [kvm-devel] [PATCH 3/6] kvm: qemu: Add option f or enable/disable in kernel PIT

2008-03-06 Thread Yang, Sheng
Fix a bug when using "--no-kvm-irqchip". --- libkvm/libkvm-x86.c |9 + qemu/hw/i8254.c | 12 qemu/qemu-kvm.c |4 qemu/qemu-kvm.h |2 ++ qemu/vl.c | 11 ++- 5 files changed, 33 insertions(+), 5 deletions(-) diff --git a/libkv

[kvm-devel] automatic reboot winxp hanging on vnc...

2008-03-06 Thread Thomas Besser
Hi all, we are running an winxp client as kvm guest (with vnc option) all day long (license management software). So automatic windows updates are activated. On MS patch days steadily the guest hangs on automatic reboot, until one connect with vnc to it. Instantly and without any user action the

Re: [kvm-devel] KVM-63 - ncurses

2008-03-06 Thread Carlo Marcelo Arenas Belon
On Thu, Mar 06, 2008 at 12:32:58AM -0800, Alexey Eremenko wrote: > >I have a big problem with ncurses - once the VM enters Graphics Mode, it >cannot be killed >with start Linux command: "ctrl+C" - tried from KDE Konsole. It can be >killed only using "kill". using xterm over pekwm

Re: [kvm-devel] KVM-63 - ncurses

2008-03-06 Thread Alexey Eremenko
>using xterm over pekwm (which traps "alt+2") I can use for that "esc+2" > qemu> quit >konsole probably works with the default key bindings for the qemu console under curses which is "alt+2". Yes, Thanks Carlo, that worked. Another problem, is that most standard OSes (including most Linux dist

Re: [kvm-devel] [PATCH 1/6] KVM: In kernel pit model

2008-03-06 Thread Ingo Molnar
* Yang, Sheng <[EMAIL PROTECTED]> wrote: > + /* Though spec said the state of 8254 is undefined after power-up, > + * seems some tricky OS like Windows XP depends on IRQ0 interrupt > + * when booting up. > + * So here setting initialize rate for it, and not a specific number */

Re: [kvm-devel] [PATCH 8/8] x86: KVM guest: VMX cr3 cache support

2008-03-06 Thread Zhao Forrest
> * We only need to hook operations that are MMU writes. We hook these so > that > * we can use lazy MMU mode to batch these operations. We could probably > * improve the performance of the host code if we used some of the > information > @@ -219,6 +359,9 @@ static void paravirt_ops_setup(void) > p

Re: [kvm-devel] [PATCH 1/6] KVM: In kernel pit model

2008-03-06 Thread Yang, Sheng
On Thursday 06 March 2008 17:14:34 Ingo Molnar wrote: > * Yang, Sheng <[EMAIL PROTECTED]> wrote: > > + /* Though spec said the state of 8254 is undefined after power-up, > > +* seems some tricky OS like Windows XP depends on IRQ0 interrupt > > +* when booting up. > > +* So here settin

[kvm-devel] [ANNOUNCE] kvm-guest-drivers-linux-1

2008-03-06 Thread Avi Kivity
This is the first release of block and network drivers for Linux guests running on a kvm host. The drivers are intended for guest kernels 2.6.18-2.6.24. Newer kernels include the drivers; older kernels may not work. kvm-61 or later is needed in the host. Network throughput is around 1 Gbit/s

Re: [kvm-devel] [PATCH 8/8] x86: KVM guest: VMX cr3 cache support

2008-03-06 Thread Avi Kivity
Zhao Forrest wrote: >> * We only need to hook operations that are MMU writes. We hook these so >> that >> * we can use lazy MMU mode to batch these operations. We could probably >> * improve the performance of the host code if we used some of the >> information >> @@ -219,6 +359,9 @@ static void pa

Re: [kvm-devel] automatic reboot winxp hanging on vnc...

2008-03-06 Thread Avi Kivity
Thomas Besser wrote: > Hi all, > > we are running an winxp client as kvm guest (with vnc option) all day long > (license management software). So automatic windows updates are activated. > > On MS patch days steadily the guest hangs on automatic reboot, until one > connect with vnc to it. Instantly

Re: [kvm-devel] I/O bandwidth control on KVM

2008-03-06 Thread Ryo Tsuruta
Hi Anthony. > The attached patch implements AIO support for the virtio backend so if this > is the case, you should see the proper proportions. First, thank you very much for making the patch. I ran the same test program on KVM with the patch but I wasn't able to get good results. I checked the

Re: [kvm-devel] [PATCH 1/6] KVM: In kernel pit model

2008-03-06 Thread Ingo Molnar
* Yang, Sheng <[EMAIL PROTECTED]> wrote: > > another silly style nit, the canonical comment style is: > > > + /* > > > + * Though spec said the state of 8254 is undefined after power-up, > > > + * seems some tricky OS like Windows XP depends on IRQ0 interrupt > > > + * when booting up. > > > +

Re: [kvm-devel] [PATCH 3/4] [PATCH] kvmclock: allow it to be turned off

2008-03-06 Thread Glauber Costa
Avi Kivity wrote: > Glauber Costa wrote: >> Use the lower 3 lower bits of the system time msr to turn off the clock. >> This means that all clock registration has to be aligned in a 4-byte >> boundary >> >> > > 3 bits -> 8 bytes. dohh!! true /me ashamed. > How about just using just bit 0 as a

Re: [kvm-devel] KVM and OS/2: #UD in real mode

2008-03-06 Thread Bjørn Mork
"H. Peter Anvin" <[EMAIL PROTECTED]> writes: > Avi Kivity wrote: >> H. Peter Anvin wrote: >>> Just for fun, I tried to boot OS/2 Warp 4.0 under KVM (KVM-59 with the >>> latest git kernel from Linus as of yesterday, slightly post >>> 2.6.24-rc8.)I found that it crashes very early, apparently b

Re: [kvm-devel] [PATCH 3/4] [PATCH] kvmclock: allow it to be turned off

2008-03-06 Thread Glauber Costa
Avi Kivity wrote: > Glauber Costa wrote: >> Apart from the fact that it will break every single guest out there, >> that's ok. As I said: these things are so early, that maybe we can pay >> this price. Your call. >> > > Which guests? kvmclock is only in kvm.git, and I don't think any distro

Re: [kvm-devel] automatic reboot winxp hanging on vnc...

2008-03-06 Thread Avi Kivity
Thomas Besser wrote: > Avi Kivity wrote: > >> Thomas Besser wrote: >> >>> Is that a feature or a bug? Any hints to solve this problem? >>> >> Strange. >> >> What kvm version are you using? >> > > Ups, sorry for forgetting this: I am using kvm-52 in a productive > environment. Ho

Re: [kvm-devel] [ANNOUNCE] kvm-guest-drivers-linux-1

2008-03-06 Thread Jun Koi
On 3/6/08, Avi Kivity <[EMAIL PROTECTED]> wrote: > This is the first release of block and network drivers for Linux guests > running on a kvm host. The drivers are intended for guest kernels > 2.6.18-2.6.24. Newer kernels include the drivers; older kernels may not > work. kvm-61 or later is n

Re: [kvm-devel] [Lguest] networking in lguest: strange error: lguest: Guest moved used index from 6 to 256

2008-03-06 Thread Avi Kivity
Dor Laor wrote: > On Wed, 2008-03-05 at 17:10 -0600, Anthony Liguori wrote: > >> Dor Laor wrote: >> >>> Seems to work reliably with kvm, should do the same trick for lguest. >>> You can download it from >>> git://kvm.qumranet.com/home/dor/src/kvm-guest-drivers-linux >>> >>> Anthony, you can

Re: [kvm-devel] [ANNOUNCE] kvm-guest-drivers-linux-1

2008-03-06 Thread Alexey Eremenko
Very nice ! 1. How about releasing those in ISO format instead (or in addition to...) tarballs? 2. I have a problem compiling it. "make sync LINUX=." fails. I have read the README: "Where /path/to/kernel is the path to a recent kernel tree containing virtio drivers. At the moment, this must be

Re: [kvm-devel] [PATCH 1/6] KVM: In kernel pit model

2008-03-06 Thread Yang, Sheng
On Thursday 06 March 2008 16:43:18 Yang, Sheng wrote: > On Thursday 06 March 2008 16:06:51 Avi Kivity wrote: > > Yang, Sheng wrote: > > > Here is the updated patch. I kept 0xff because I think it's OK for > > > understand easily. :) > > > > Any news on the regression with older Linux guests? That'

[kvm-devel] World's greatest loser.

2008-03-06 Thread mosquera timothee
Be a dream lover simply by clicking here- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___

Re: [kvm-devel] [ANNOUNCE] kvm-guest-drivers-linux-1

2008-03-06 Thread Thomas Mueller
> On 3/6/08, Avi Kivity <[EMAIL PROTECTED]> wrote: > >> This is the first release of block and network drivers for Linux guests >> running on a kvm host. The drivers are intended for guest kernels >> 2.6.18-2.6.24. Newer kernels include the drivers; older kernels may not >> work. kvm-61 o

Re: [kvm-devel] automatic reboot winxp hanging on vnc...

2008-03-06 Thread Thomas Besser
Avi Kivity wrote: > Thomas Besser wrote: >> Is that a feature or a bug? Any hints to solve this problem? > > Strange. > > What kvm version are you using? Ups, sorry for forgetting this: I am using kvm-52 in a productive environment. Host ist Debian etch, debs are self backported from unstable. K

Re: [kvm-devel] [PATCH 3/4] [PATCH] kvmclock: allow it to be turned off

2008-03-06 Thread Avi Kivity
Glauber Costa wrote: > Apart from the fact that it will break every single guest out there, > that's ok. As I said: these things are so early, that maybe we can pay > this price. Your call. > Which guests? kvmclock is only in kvm.git, and I don't think any distro is based on that. -- Do n

Re: [kvm-devel] [PATCH 7/8] KVM: MMU: VMX cr3 cache support

2008-03-06 Thread Zhao Forrest
> @@ -1219,53 +1229,75 @@ static void nonpaging_prefetch_page(struct kvm_vcpu > *vcpu, > > static void mmu_free_roots(struct kvm_vcpu *vcpu) > { > - int i; > + int i, j; >struct kvm_mmu_page *sp; > > - if (!VALID_PAGE(vcpu->arch.mmu.root_hpa)) > - return;

Re: [kvm-devel] [PATCH 7/8] KVM: MMU: VMX cr3 cache support

2008-03-06 Thread Marcelo Tosatti
Hi Zhao, On Thu, Mar 06, 2008 at 09:15:59PM +0800, Zhao Forrest wrote: > > @@ -1219,53 +1229,75 @@ static void nonpaging_prefetch_page(struct kvm_vcpu > > *vcpu, > > > > static void mmu_free_roots(struct kvm_vcpu *vcpu) > > { > > - int i; > > + int i, j; > >struct kvm_mmu_pa

Re: [kvm-devel] [ANNOUNCE] kvm-guest-drivers-linux-1

2008-03-06 Thread Balaji Rao
On Thursday 06 March 2008 04:01:53 pm Jun Koi wrote: > On 3/6/08, Avi Kivity <[EMAIL PROTECTED]> wrote: > > This is the first release of block and network drivers for Linux guests > > running on a kvm host. The drivers are intended for guest kernels > > 2.6.18-2.6.24. Newer kernels include the

Re: [kvm-devel] [PATCH 7/8] KVM: MMU: VMX cr3 cache support

2008-03-06 Thread Avi Kivity
Marcelo Tosatti wrote: >> >> Here CR3_TARGET_VALUEx is written. >> My question is: >> 1 why is vmcs_writel(CR3_TARGET_VALUE0 + idx*2, cr3); called by >> vmx_set_cr3(), but not called by mmu_free_roots()? >> > > By clearing guest_cr3 entry of the shared area we avoid the guest from > using it.

[kvm-devel] [PATCH 2/2] [PATCH] disable kvm clock unless addr's LSB is set.

2008-03-06 Thread Glauber Costa
Use LSB of the address passed through the msr to enable/disable the clock. Setting it to 1 enables it, setting it to 0 disables it. As the guest data structures are aligned anyway, this won't be a problem, as this bit is free. Guest is changed accordingly Signed-off-by: Glauber Costa <[EMAIL PRO

[kvm-devel] [PATCH 0/2] provide disable clock functionality.

2008-03-06 Thread Glauber Costa
Avi, Hope this is better - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/ _

[kvm-devel] [PATCH 1/2] [PATCH] use per cpu variables instead of a vector

2008-03-06 Thread Glauber Costa
replace hv_clock vector in kvmclock with a percpu variable that is cacheline aligned. Signed-off-by: Glauber Costa <[EMAIL PROTECTED]> --- arch/x86/kernel/kvmclock.c |9 + 1 files changed, 5 insertions(+), 4 deletions(-) diff --git a/arch/x86/kernel/kvmclock.c b/arch/x86/kernel/kvmcl

Re: [kvm-devel] [PATCH/RFC 1/2] anon-inodes: Remove fd_install() from anon_inode_getfd()

2008-03-06 Thread Christoph Hellwig
On Wed, Feb 27, 2008 at 03:42:42PM -0800, Roland Dreier wrote: > > > http://git.kernel.org/?p=linux/kernel/git/viro/vfs-2.6.git;a=commit;h=49be4f8114e6ff0efdab10ebba2493fb67bc3034 > > Actually, looking closer at the kvm changes here, I think that > create_vcpu_fd() needs the same treatment as kv

Re: [kvm-devel] [PATCH/RFC 1/2] anon-inodes: Remove fd_install() from anon_inode_getfd()

2008-03-06 Thread Al Viro
On Wed, Feb 27, 2008 at 11:16:02AM -0800, Roland Dreier wrote: > The anonymous inodes interface anon_inode_getfd() calls fd_install() > for the newly created fd, which does not work for some use cases where > the caller must do futher initialization before exposing the file to > userspace. This is

Re: [kvm-devel] [ANNOUNCE] kvm-guest-drivers-linux-1

2008-03-06 Thread Anthony Liguori
Alexey Eremenko wrote: > Very nice ! > > 1. How about releasing those in ISO format instead (or in addition > to...) tarballs? > It's not a bad idea. What we really need is for people to submit spec/deb files for older distros. Then it's a matter of compiling those RPMs/debs and putting the

Re: [kvm-devel] [ANNOUNCE] kvm-guest-drivers-linux-1

2008-03-06 Thread Anthony Liguori
Balaji Rao wrote: >> Excellent, thanks! >> >> Just 1 question: Above is the instruction for guest. How about the >> host? Dont we need to install anything?? >> >> I suppose that qemu in the latest kvm package already supported >> virtio, but I think we need some support from host kernel as well? >>

Re: [kvm-devel] I/O bandwidth control on KVM

2008-03-06 Thread Anthony Liguori
Ryo Tsuruta wrote: > Hi Anthony. > > >> The attached patch implements AIO support for the virtio backend so if this >> is the case, you should see the proper proportions. >> > > First, thank you very much for making the patch. > I ran the same test program on KVM with the patch but I wasn

Re: [kvm-devel] Sharing a page of memory between the guest and host

2008-03-06 Thread Cam Macdonell
Anthony Liguori wrote: > Cam Macdonell wrote: >> Hello, >> >> Is it possible to share a memory (a page perhaps) between the host and >> guest? > > Yes, the host always has access to all of the guests memory. All of the > virtio drivers depend on this fact. With KVM, the userspace (in this > c

[kvm-devel] [PATCH] disable clock before rebooting.

2008-03-06 Thread Glauber Costa
This patch writes 0 (actually, what really matters is that the LSB is cleared) to the system time msr before rebooting/shutting down the machine. Without it, we can have a random memory location being written when the guest comes back Signed-off-by: Glauber Costa <[EMAIL PROTECTED]> --- arch/x86

[kvm-devel] [PATCH] Mark kobjects as unitialized

2008-03-06 Thread Balaji Rao
Hi greg, When I remove only the kvm-intel module without removing the kvm module itself, I get an error saying that a kobject is trying to be reinitialized. Its because of the fact that kvm reuses a kobject in kvm_init when calling sysdev_register. This patch fixes kobject_cleanup by marking t

Re: [kvm-devel] [PATCH] Mark kobjects as unitialized

2008-03-06 Thread Greg KH
On Thu, Mar 06, 2008 at 10:23:18PM +0530, Balaji Rao wrote: > Hi greg, > > When I remove only the kvm-intel module without removing the kvm > module itself, I get an error saying that a kobject is trying to be > reinitialized. Its because of the fact that kvm reuses a kobject in > kvm_init when ca

Re: [kvm-devel] [PATCH] Mark kobjects as unitialized

2008-03-06 Thread Balaji Rao
On Thursday 06 March 2008 10:35:14 pm Greg KH wrote: > Where exactly in the code does that happen? kobjects should not be > "reused" as that implies that they are static, and not dynamically > allocated, right? > > Which kobject is this? Yes, its static. Here's the code from virt/kvm_main.c:1269

Re: [kvm-devel] [PATCH] Mark kobjects as unitialized

2008-03-06 Thread Greg KH
On Thu, Mar 06, 2008 at 11:20:50PM +0530, Balaji Rao wrote: > On Thursday 06 March 2008 10:35:14 pm Greg KH wrote: > > > Where exactly in the code does that happen? kobjects should not be > > "reused" as that implies that they are static, and not dynamically > > allocated, right? > > > > Which ko

[kvm-devel] Offline for a week

2008-03-06 Thread Avi Kivity
I will be off-line (and sometimes off-piste) from March 8 through March 15. I may have sporadic Internet access. Andrew, should kvm.git not play nicely with the rest of the children, have it stand in the corner. -- error compiling committee.c: too many arguments to function

[kvm-devel] patch kobjects-mark-cleaned-up-kobjects-as-unitialized.patch added to gregkh-2.6 tree

2008-03-06 Thread gregkh
This is a note to let you know that I've just added the patch titled Subject: kobjects: mark cleaned up kobjects as unitialized to my gregkh-2.6 tree. Its filename is kobjects-mark-cleaned-up-kobjects-as-unitialized.patch This tree can be found at http://www.kernel.org/pub/linu

[kvm-devel] KVM and WinPE failure

2008-03-06 Thread jieryn
Greetings, I'm running vanilla-sources-2.6.24.3 with KVM-63 on a Thinkpad T61p running Gentoo Linux. I'm having some trouble with a corporate rollout of WinXP into a KVM image. My company uses WinPE in order to do the rollout, after firing up KVM (via command: kvm -hda $HOME/winxp.img -boot c -std

Re: [kvm-devel] [PATCH 0/6] In kernel PIT patch

2008-03-06 Thread Anthony Liguori
Avi Kivity wrote: > >> The thing I'm trying to get at is a quantitative statement about why >> moving the pit into the kernel is the right thing. I'll try to give >> the patches a try myself in the next couple of days. I don't think >> it's obvious that it's the right thing to do without some

Re: [kvm-devel] [PATCH 0/6] In kernel PIT patch

2008-03-06 Thread Dor Laor
On Thu, 2008-03-06 at 14:56 -0600, Anthony Liguori wrote: > Avi Kivity wrote: > > > >> The thing I'm trying to get at is a quantitative statement about why > >> moving the pit into the kernel is the right thing. I'll try to give > >> the patches a try myself in the next couple of days. I don't

Re: [kvm-devel] KVM and WinPE failure

2008-03-06 Thread Dor Laor
On Thu, 2008-03-06 at 14:17 -0500, [EMAIL PROTECTED] wrote: > Greetings, > > I'm running vanilla-sources-2.6.24.3 with KVM-63 on a Thinkpad T61p > running Gentoo Linux. I'm having some trouble with a corporate rollout > of WinXP into a KVM image. My company uses WinPE in order to do the > rollout

Re: [kvm-devel] KVM and WinPE failure

2008-03-06 Thread jieryn
On Thu, Mar 6, 2008 at 4:43 PM, Dor Laor <[EMAIL PROTECTED]> wrote: > > How did you got the winxp.img? Is it by installing cd over kvm or > v2v /p2v? > My company has a Linux livecd which they use to prime the laptop with, as the company offers the choice of a Linux installation. I chose WinXP an

Re: [kvm-devel] [ANNOUNCE] kvm-guest-drivers-linux-1

2008-03-06 Thread Iain Paton
Avi Kivity wrote: > > This is the first release of block and network drivers for Linux guests > > running on a kvm host. The drivers are intended for guest kernels > > 2.6.18-2.6.24. Newer kernels include the drivers; older kernels may not > > work. kvm-61 or later is needed in the host. Tr

Re: [kvm-devel] KVM and WinPE failure

2008-03-06 Thread jieryn
> > Can you try -no-kvm just to see if qemu succeeds? > > > > Ok, I've recompiled with gcc-3 and I used the -no-kvm option. I got the same result, but in 5x the amount of time. No joy. How do I get at that kvm_stat? Thanks! -jesse ---

Re: [kvm-devel] KVM and WinPE failure

2008-03-06 Thread Ryan Harper
* [EMAIL PROTECTED] <[EMAIL PROTECTED]> [2008-03-06 16:53]: > > > > Can you try -no-kvm just to see if qemu succeeds? > > > > > > > > Ok, I've recompiled with gcc-3 and I used the -no-kvm option. I got the same > result, but in 5x the amount of time. No joy. How do I get at that kvm_stat? > Thanks!

Re: [kvm-devel] [PATCH 7/8] KVM: MMU: VMX cr3 cache support

2008-03-06 Thread Marcelo Tosatti
On Thu, Mar 06, 2008 at 04:44:26PM +0200, Avi Kivity wrote: > Marcelo Tosatti wrote: > >> > >>Here CR3_TARGET_VALUEx is written. > >>My question is: > >>1 why is vmcs_writel(CR3_TARGET_VALUE0 + idx*2, cr3); called by > >>vmx_set_cr3(), but not called by mmu_free_roots()? > >> > > > >By clearing

Re: [kvm-devel] KVM and WinPE failure

2008-03-06 Thread jieryn
On Thu, Mar 6, 2008 at 6:19 PM, Ryan Harper <[EMAIL PROTECTED]> wrote: > > (dethklok) kvm-63 % ./kvm_stat > Please mount debugfs ('mount -t debugfs debugfs /sys/kernel/debug') > and ensure the kvm modules are loaded > (dethklok) kvm-61 % sudo mount -t debugfs debugfs /sys/kernel/debug > > then run

Re: [kvm-devel] [ANNOUNCE] kvm-guest-drivers-linux-1

2008-03-06 Thread Paul Collins
Iain Paton <[EMAIL PROTECTED]> writes: > Trying to build against 2.6.24 gives the following: > > CC [M] /root/kvm/kvm-guest-drivers-linux-1/virtio_net.o > /root/kvm/kvm-guest-drivers-linux-1/virtio_net.c: In function 'receive_skb': > /root/kvm/kvm-guest-drivers-linux-1/virtio_net.c:101: error