[kvm-devel] Enlarging the quemu window

2007-05-05 Thread Ian Brown
Hello, I had installed kvm and windows on a Linux machine. I start kvm by : /usr/local/kvm/bin/qemu-system-x86_64 . -hda vdisk.img -boot c -m 384 -no-kvm The qemu window where windows run is about a quarter of a screen. Is there a way to enlarge it so it will be bigger ? is there a way

Re: [kvm-devel] faster boot with -no-kvm?

2007-05-05 Thread David Abrahams
on Thu Apr 12 2007, Avi Kivity avi-atKUWr5tajBWk0Htik3J/w-AT-public.gmane.org wrote: David Abrahams wrote: on Thu Apr 12 2007, Avi Kivity avi-atKUWr5tajBWk0Htik3J/w-AT-public.gmane.org wrote: There is a workaround: My Computer - Properties - Hardware - Device Manager - [Whatever's

[kvm-devel] [PATCH 1/3] kshmem documentation

2007-05-05 Thread Wink Saville
This series of patches allows memory to be allocated by the kernel at addresses that can be used both by the kernel and user space. A following series of patches, ACE (Atomic Code Execution), uses kshmem to implement spin_lock_irqsave and spin_lock_irqresotre semantics in user space. With these

[kvm-devel] [PATCH 2/3] kshmem implementation, configuration and makefile

2007-05-05 Thread Wink Saville
Signed-off-by: Wink Saville [EMAIL PROTECTED] --- include/asm-x86_64/kshmem.h | 17 +++ include/linux/kshmem.h | 47 +++ include/linux/mm.h |1 + include/linux/vmalloc.h |3 + mm/Kconfig |8 + mm/Makefile |1 +

[kvm-devel] [PATCH 3/3] kshmem modifications to actually use kshmem

2007-05-05 Thread Wink Saville
Signed-off-by: Wink Saville [EMAIL PROTECTED] --- fs/exec.c | 10 ++ init/main.c |3 +++ kernel/fork.c | 10 ++ 3 files changed, 23 insertions(+), 0 deletions(-) Index: linux-2.6/fs/exec.c === ---

[kvm-devel] [PATCH 1/4] ACE documentation

2007-05-05 Thread Wink Saville
ACE, is an acronym for Atomic Code Execution and provides spin_lock_irqsave and spin_lock_irqrestore semantics in user space. Signed-off-by: Wink Saville [EMAIL PROTECTED] --- Documentation/ace.txt | 100 + 1 files changed, 100 insertions(+), 0

[kvm-devel] [PATCH 2/4] ACE implementation, conifguration and makefile

2007-05-05 Thread Wink Saville
Signed-off-by: Wink Saville [EMAIL PROTECTED] --- arch/x86_64/kernel/Makefile |2 arch/x86_64/kernel/ace.S| 204 arch/x86_64/kernel/entry.S | 45 drivers/Makefile|1 drivers/ace/Kconfig | 15 ++

[kvm-devel] [PATCH 4/4] ACE simple test program

2007-05-05 Thread Wink Saville
Signed-off-by: Wink Saville [EMAIL PROTECTED] --- test/ace_test/Makefile | 19 test/ace_test/ace_test.c | 224 ++ 2 files changed, 243 insertions(+), 0 deletions(-) create mode 100644 test/ace_test/Makefile create mode 100644