[kvm-devel] paravirtualization status

2007-05-08 Thread Omar Khan
tries." [http://thread.gmane.org/gmane.linux.kernel/481084] can someone please explain briefly what the "global page tlb entries" are? Thanks Omar Khan - This SF.net email is sponsored by DB2 Express Download

Re: [kvm-devel] learning VT concepts

2007-05-07 Thread Omar Khan
Slohm Gadaburi <[EMAIL PROTECTED]> writes: > > Hello, > > I'm interested to learn the technical details of KVM and > virtualizations in general. > I know I can just read the source but I just want to understand the > technical concepts, > so the sources are overkill. > To get an overview of kv

[kvm-devel] VM entry/exit time

2007-05-01 Thread Omar Khan
it takes almost 3 times longer on the Lenovo to make a vmcall. Anyone have any idea what might be causing this? Running kvm on suse10.2 on both the systems. Thanks Omar Khan - This SF.net email is sponsored by DB2 Express

[kvm-devel] unix lite

2007-04-23 Thread Omar Khan
hi, I am trying to run unix like operating system (mainly meant for educational purposes) on kvm called "Unix Lite" (http://www.unixlite.org/). It runs fine on qemu but on kvm it gives the unhandled vm exit 0x9. This is caused by the hardware task switch that is used in unix lite. The code

Re: [kvm-devel] kvm-18 compilation error

2007-03-31 Thread Omar Khan
Avi Kivity <[EMAIL PROTECTED]> writes: > > You might try with gcc 3.4.6, which most people are using for qemu. > Alternatively, ./configure --qemu-cc=gcc --disable-gcc-check, but then > you lose the ability to run with the -no-kvm switch. > yes builds with gcc 3.4.6, Thanks. Omar -

[kvm-devel] unhandled vm exit: 0x9

2007-03-30 Thread Omar Khan
hi, I am trying to run an experimental operating system 'Choices' on kvm and it is giving me the 'unhandled vm exit: 0x9' error. It runs fine with the -no-kvm switch though. In an earlier post (http://article.gmane.org/gmane.comp.emulators.kvm.devel/ 654/match=unhandled+vm+exit) Avi said that

[kvm-devel] kvm-18 compilation error

2007-03-29 Thread Omar Khan
hi, I am having trouble compiling kvm-18 on suse10.2. 'make' is giving the following error: /opt/gcc33/bin/gcc-3.3 -I /root/kvm-18/qemu/../user -Wall -O2 -g -fno-strict-aliasing -I /root/kvm-18/kernel/include -I. -I.. -I/root/kvm-18/qemu/target-i386 -I/root/kvm-18/qemu -D_GNU_SOURCE -D_FILE_O

Re: [kvm-devel] vmcall time

2007-03-11 Thread Omar Khan
Anthony Liguori <[EMAIL PROTECTED]> writes: > > I've got a patch that should appear in virtbench soon that actually > measures vmcall latency. > > http://ozlabs.org/~rusty/virtbench > Thanks Anthony. I have a newbie question though. In the vmcall function in the patch: +static int vmcall(uns

[kvm-devel] vmcall time

2007-03-10 Thread Omar Khan
hi, What is an easy way to approximately measure the time it takes to make a vmcall? If I make let us say 100,000 vmcalls from the guest os and print jiffies in kvm for the first and last call would that do the job? Thanks Omar --

Re: [kvm-devel] paravirtualization structure

2007-02-19 Thread Omar Khan
Dor Laor <[EMAIL PROTECTED]> writes: > > Theoretically speaking the answer is yes, vmcall is a special > instruction that it one and only purpose is the exit from the guest. > While mov cr3 instruction might be bound to other actions of the > processor and might have more effects on the pipeline

Re: [kvm-devel] kvm-13

2007-02-19 Thread Omar Khan
$(shell uname -r)/build and hence we get the INSTALLDIR for the /extra. I will try to send the log for ./configure , make , make install. Thanks Omar Khan - Take Surveys. Earn Cash. Influence the Future of IT Join Source

Re: [kvm-devel] paravirtualization structure

2007-02-19 Thread Omar Khan
different than the vmexit that is caused by writing to the cr3 register say. Thanks Omar Khan - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the

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

2007-02-19 Thread Omar Khan
ttp://en.opensuse.org/Qemu_with_kqemu_kernel_module_support you can then configure qemu with the appropriate options. Omar Khan - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chan

[kvm-devel] paravirtualization structure

2007-02-19 Thread Omar Khan
to? 2. Is the paravirtualization code included in the 2.6.20 kernel (if so where is it) or do we still need to apply the patch for it? I reply would be greatly appreciated. Thanks in advance. Omar Khan - Take

[kvm-devel] paravirtualization

2007-02-12 Thread Omar Khan
The paravirtualization announcement by Ingo Molnar said that: - it provides an ad-hoc paravirtualization hypercall API between a Linux guest and a Linux host. (this will be replaced with a proper hypercall later on.) Is it possible to modify a non-linux guest to take advantage of this hyperc

Re: [kvm-devel] paravirtualization & cr3-cache feature

2007-02-12 Thread Omar Khan
Thanks Dor. Omar - Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier. Download IBM WebSphere Application Server v.1.0.1

[kvm-devel] paravirtualization & cr3-cache feature

2007-02-09 Thread Omar Khan
hi, Can someone briefly explain what the cr3-cache feature on intel VT processors is and how it is used to improve performance in paravirtualization. Thanks Omar - Using Tomcat but need to do more? Need to support we

Re: [kvm-devel] kvm-13

2007-02-09 Thread Omar Khan
Muli Ben-Yehuda <[EMAIL PROTECTED]> writes: > > On Thu, Feb 08, 2007 at 03:46:25PM +0000, Omar Khan wrote: > > hi, > > > >"make install" does not install the modules in the right > >directory (actually it is not making the 'extra'

[kvm-devel] kvm-13

2007-02-08 Thread Omar Khan
hi, "make install" does not install the modules in the right directory (actually it is not making the 'extra' directory). I changed KERNELDIR ?= /lib/modules/$(shell uname -r)/build to KERNELDIR := /lib/modules/$(shell uname -r)/build in the kernel/Makefile and it is working now