Displaying 20 results from an estimated 700 matches similar to: "[RFC/PATCH LGUEST X86_64 02/13] hvvm export page utils"
2007 May 09
0
[patch 1/9] lguest: export symbols for lguest as a module
From: Rusty Russell <rusty@rustcorp.com.au>
lguest does some fairly lowlevel things to support a host, which
normal modules don't need:
math_state_restore:
When the guest triggers a Device Not Available fault, we need
to be able to restore the FPU
__put_task_struct:
We need to hold a reference to another task for inter-guest
I/O, and put_task_struct() is an inline function which
2007 May 09
0
[patch 1/9] lguest: export symbols for lguest as a module
From: Rusty Russell <rusty@rustcorp.com.au>
lguest does some fairly lowlevel things to support a host, which
normal modules don't need:
math_state_restore:
When the guest triggers a Device Not Available fault, we need
to be able to restore the FPU
__put_task_struct:
We need to hold a reference to another task for inter-guest
I/O, and put_task_struct() is an inline function which
2007 Apr 18
1
[RFC/PATCH LGUEST X86_64 01/13] HV VM Fix map area for HV.
plain text document attachment (hvvm.patch)
OK, some explaination is needed here. The goal of lguest with paravirt
ops, is to have one kernel that can be loaded both as a host and a guest.
To do this, we need to map an area in virtual memory that both the host
and guest share. But I don't want any conflicts with the guest.
One solution is just to do a single area for boot up, and then
use the
2007 Apr 18
1
[RFC/PATCH LGUEST X86_64 01/13] HV VM Fix map area for HV.
plain text document attachment (hvvm.patch)
OK, some explaination is needed here. The goal of lguest with paravirt
ops, is to have one kernel that can be loaded both as a host and a guest.
To do this, we need to map an area in virtual memory that both the host
and guest share. But I don't want any conflicts with the guest.
One solution is just to do a single area for boot up, and then
use the
2007 Sep 10
1
[PATCH] Add macros for acessing lguest fields
The assumption that we have an overall irqs_pending flags,
and a one-to-one lguest <-> task mapping fails to hold on x86_64,
where we can have multiple puppies, aka vcpus.
Although ifdefs could be used, it makes the code much more
unreadable, and other ports are on the way, anyway. So some sort
of acessor is preferred anyway.
Signed-off-by: Glauber de Oliveira Costa
2007 Sep 10
1
[PATCH] Add macros for acessing lguest fields
The assumption that we have an overall irqs_pending flags,
and a one-to-one lguest <-> task mapping fails to hold on x86_64,
where we can have multiple puppies, aka vcpus.
Although ifdefs could be used, it makes the code much more
unreadable, and other ports are on the way, anyway. So some sort
of acessor is preferred anyway.
Signed-off-by: Glauber de Oliveira Costa
2007 Apr 18
0
[RFC/PATCH LGUEST X86_64 09/13] lguest64 devices
plain text document attachment (lguest64-device.patch)
We started working a little bit on the devices for lguest64.
This is still very much a work-in-progress and needs much more work.
Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Signed-off-by: Glauber de Oliveira Costa <glommer@gmail.com>
Cc: Chris Wright <chrisw@sous-sol.org>
Index:
2007 Apr 18
0
[RFC/PATCH LGUEST X86_64 09/13] lguest64 devices
plain text document attachment (lguest64-device.patch)
We started working a little bit on the devices for lguest64.
This is still very much a work-in-progress and needs much more work.
Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Signed-off-by: Glauber de Oliveira Costa <glommer@gmail.com>
Cc: Chris Wright <chrisw@sous-sol.org>
Index:
2007 Apr 26
1
[PATCH] Fix lguest oops when guest dies while receiving I/O
lguest needs to hold a reference to its task in case it exits while
another Guest is sending it I/O. Otherwise we can oops in
access_process_vm->get_task_mm->task_lock().
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
---
drivers/lguest/lguest_user.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
===================================================================
2007 Jul 29
0
Asterisk 1.4.X support for Solaris 10?
I've been trying to get Asterisk 1.4.X running under Solaris 10 x86 with
limited success.
I can build Asterisk and get it started but have run in to a problem
with a segmentation fault with the "help" command in the CLI.
When I start Asterisk:
# ./asterisk -vvvgc
Asterisk 1.4.9, Copyright (C) 1999 - 2007 Digium, Inc. and others.
Created by Mark Spencer <markster at
2006 Mar 14
12
[RFC] VMI for Xen?
I''m sure everyone has seen the drop of VMI patches for Linux at this
point, but just in case, the link is included below.
I''ve read this version of the VMI spec and have made my way through most
of the patches. While I wasn''t really that impressed with the first
spec wrt Xen, the second version seems to be much more palatable.
Specifically, the code inlining and
2007 Apr 18
0
[RFC/PATCH LGUEST X86_64 05/13] asm-offsets update
plain text document attachment (lguest64-asm-offset.patch)
This patch puts in the offsets used by Lguest64 in assembly.
Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Signed-off-by: Glauber de Oliveira Costa <glommer@gmail.com>
Cc: Chris Wright <chrisw@sous-sol.org>
Index: work-pv/arch/x86_64/kernel/asm-offsets.c
2007 Apr 18
0
[RFC/PATCH LGUEST X86_64 08/13] lguest64 user header.
plain text document attachment (lguest64-user.patch)
This patch adds the header used by the lguest64 loader.
Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Signed-off-by: Glauber de Oliveira Costa <glommer@gmail.com>
Cc: Chris Wright <chrisw@sous-sol.org>
Index: work-pv/include/asm-x86_64/lguest_user.h
===================================================================
2007 Apr 18
1
[RFC/PATCH LGUEST X86_64 06/13] lguest64 Kconfig
plain text document attachment (lguest64-kconfig.patch)
Put the kconfig options for lguest64 in.
Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Signed-off-by: Glauber de Oliveira Costa <glommer@gmail.com>
Cc: Chris Wright <chrisw@sous-sol.org>
Index: work-pv/arch/x86_64/Kconfig
===================================================================
---
2007 Apr 18
0
[RFC/PATCH LGUEST X86_64 11/13] x86_64 HVC attempt.
plain text document attachment (lguest64-hvc.patch)
This is a start to try to get HVC working for x86_64.
Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Signed-off-by: Glauber de Oliveira Costa <glommer@gmail.com>
Cc: Chris Wright <chrisw@sous-sol.org>
Index: work-pv/drivers/char/Kconfig
===================================================================
---
2007 Apr 18
0
[RFC/PATCH LGUEST X86_64 12/13] dump stack on crash
plain text document attachment (lguest64-dump-panic.patch)
it's nice to see a back trace dump when we do a panic.
Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Cc: Glauber de Oliveira Costa <glommer@gmail.com>
Cc: Chris Wright <chrisw@sous-sol.org>
Index: work-pv/kernel/panic.c
===================================================================
---
2007 Apr 18
0
[RFC/PATCH LGUEST X86_64 13/13] Hack to get output
plain text document attachment (lguest64-debug.patch)
This is just a hack patch to get output from the guest.
It calls lguest_vprint from printk which is a hypercall
to the host to do the printk for the guest.
Chris Wright recommended that I put this into early_printk,
but until I can get that to work, I'm posting this.
Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Cc: Glauber de
2007 Apr 18
0
[RFC/PATCH LGUEST X86_64 10/13] dont compile in the lguest_net
plain text document attachment (lguest64-not-net.patch)
Right now we don't have lguest_net compiling for x86_64. So turn it
off for us.
Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Cc: Glauber de Oliveira Costa <glommer@gmail.com>
Cc: Chris Wright <chrisw@sous-sol.org>
Index: work-pv/drivers/net/Makefile
2007 Apr 18
0
[RFC/PATCH LGUEST X86_64 05/13] asm-offsets update
plain text document attachment (lguest64-asm-offset.patch)
This patch puts in the offsets used by Lguest64 in assembly.
Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Signed-off-by: Glauber de Oliveira Costa <glommer@gmail.com>
Cc: Chris Wright <chrisw@sous-sol.org>
Index: work-pv/arch/x86_64/kernel/asm-offsets.c
2007 Apr 18
0
[RFC/PATCH LGUEST X86_64 08/13] lguest64 user header.
plain text document attachment (lguest64-user.patch)
This patch adds the header used by the lguest64 loader.
Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Signed-off-by: Glauber de Oliveira Costa <glommer@gmail.com>
Cc: Chris Wright <chrisw@sous-sol.org>
Index: work-pv/include/asm-x86_64/lguest_user.h
===================================================================