search for: helper2

Displaying 11 results from an estimated 11 matches for "helper2".

Did you mean: helper
2009 Mar 02
0
ioemu: make various functions in i386-dm/helper2.c static
These functions don''t seem to be used outside of i386-dm/helper2.c Signed-off-by: Simon Horman <horms@verge.net.au> --- i386-dm/helper2.c | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) Index: ioemu-remote/i386-dm/helper2.c =================================================================== --- ioemu-remote.orig/i386...
2004 Mar 27
3
a question about scoping functions
...'ve written some helper functions which are used by another function (called func()). When func() is sourced I dont want the helper function to be seen in the global namespace (as shown by ls()). Currently what I have done is: func <- function() { helper1 <- function() { ... } helper2 <- function() { ... } # some code } Is there anyway to take the functions helper1 and helper2 outside func (but in the same file) yet keep them from showing up in the global namespace when the source file for func() is loaded? A related question is: say I move helper1 and helper2 to a...
2005 May 24
0
[PATCH] qemu-unregister-c0000.patch
.../ cpu_register_physical_memory(0xc0000, 0x10000, vga_bios_offset | IO_MEM_ROM); -#ifndef NOBIOS /* map the last 128KB of the BIOS in ISA space */ isa_bios_size = bios_size; if (isa_bios_size > (128 * 1024)) ===== tools/ioemu/target-i386-dm/helper2.c 1.2 vs edited ===== --- 1.2/tools/ioemu/target-i386-dm/helper2.c 2005-05-20 10:01:22 -07:00 +++ edited/tools/ioemu/target-i386-dm/helper2.c 2005-05-23 16:35:40 -07:00 @@ -313,7 +313,8 @@ intr = &(((vcpu_iodata_t *) shared_page)->vp_intr[0]); atomic_set_bit(vector, intr); - fpr...
2008 Jan 18
0
[PATCH] nicely terminate the device model script
...return if self.pid: try: - os.kill(self.pid, signal.SIGKILL) + os.kill(self.pid, signal.SIGTERM) except OSError, exn: log.exception(exn) try: only in patch2: unchanged: --- a/tools/ioemu/target-i386-dm/helper2.c Thu Jan 17 16:22:30 2008 +0000 +++ b/tools/ioemu/target-i386-dm/helper2.c Fri Jan 18 12:42:10 2008 +0000 @@ -637,6 +637,7 @@ int main_loop(void) int evtchn_fd = xce_handle == -1 ? -1 : xc_evtchn_fd(xce_handle); char qemu_file[PATH_MAX]; fd_set fds; + int ret = 0; buffered...
2010 Oct 01
2
trouble building 4.0.1
...n-4.0.1/stubdom/ioemu/hw/xen_backend.c:594:5: warning: format ‘%llx’ expects type ‘long long unsigned int *’, but argument 3 has type ‘intptr_t *’ CC i386-stubdom/xenfb.o CC i386-stubdom/xen_console.o CC i386-stubdom/exec-dm.o CC i386-stubdom/pci_emulation.o CC i386-stubdom/helper2.o CC i386-stubdom/battery_mgmt.o CC i386-stubdom/xenfbfront.o /usr/src/xen-4.0.1/stubdom/ioemu/xenfbfront.c: In function ‘xenfb_pv_display_vram’: /usr/src/xen-4.0.1/stubdom/ioemu/xenfbfront.c:361:1: warning: control reaches end of non-void function CC i386-stubdom/pass-through.o /usr...
2010 Mar 24
0
[PATCH] Simple emulation of host keyboard and mouse for gfx_passthru.
...to use the host keyboard and touchpad of my laptop while running a HVM guest with passthroughed primary gfx-card I wrote a simple emulation. To activate it change gfx_passthru=1 -> gfx_passthru=1001 in the domU config file. This was done this way to have a small footprint. Also the embedding in helper2.c is a little bit awkward. Another problem using this way is that the VT in dom0 is not reset when the domU gets destroyed. I wrote this as a workaround until the announced comfortable solution from Jean Guyader is accessible. http://lists.xensource.com/archives/html/xen-devel/2010-03/msg00979.html...
2007 Jul 27
4
Prototype to use QEMU for PV guest framebuffer
As many of us are all too painfully aware we have completely different VNC server implementations for paravirt vs fullyvirt Xen guests. The former based on libvncserver, the latter integrated into QEMU. There are many new and interesting ideas being tried out in the VNC server space in particular wrt to virtualization and having to implement them all twice is not very desirable. Also
2006 May 17
20
X86_emulate to be moved into qemu...
> Hmmm... wouldn''t it be nice if we didn''t have a bespoke, > buggy & incomplete emulator for hvm mmio. ;-) In the process of solving this one, I''ve got to (another) of the blocking points... At the moment, we translate the virtual address from the guest in the page-fault-handler to guest physical address via the gva_to_gpa() function in svm.c/vmx.c:
2006 Jul 25
6
[PATCH][QEMU] Add IA64-specific code for new qemu.
This patch adds the ia64-specific code for new Qemu . In addition, some ia64 patches aren''t checked into xen-unstable.hg, so I reversed the related logic temporarily. Once sync with xen-ia64-unstable.hg, the logic will regain automatically. Thanks & Best Regards -Xiantao OTC,Intel Corporation _______________________________________________ Xen-devel mailing list
2013 May 09
1
Bug#707434: xen: FTBFS: vl.c:1575: undefined reference to `timer_create'
...m.o > CC i386-dm/xen_machine_fv.o > CC i386-dm/xen_machine_pv.o > CC i386-dm/xen_backend.o > CC i386-dm/xenfb.o > CC i386-dm/xen_console.o > CC i386-dm/xen_disk.o > CC i386-dm/exec-dm.o > CC i386-dm/pci_emulation.o > CC i386-dm/helper2.o > CC i386-dm/battery_mgmt.o > CC i386-dm/tpm_tis.o > CC i386-dm/pass-through.o > CC i386-dm/pt-msi.o > CC i386-dm/pt-graphics.o > CC i386-dm/kqemu.o > CC i386-dm/i386-dis.o > AR i386-dm/libqemu.a > LINK i386-dm/qemu-dm > vl....
2007 Oct 24
16
PATCH 0/10: Merge PV framebuffer & console into QEMU
...++++++++++++++++++++++++++ b/tools/ioemu/hw/xenfb.h | 13 tools/Makefile | 1 tools/check/Makefile | 4 tools/console/daemon/io.c | 9 tools/ioemu/Makefile.target | 4 tools/ioemu/target-i386-dm/helper2.c | 5 tools/ioemu/vl.c | 249 ------- tools/ioemu/vl.h | 4 tools/ioemu/xenstore.c | 2 tools/python/xen/xend/XendCheckpoint.py | 5 tools/python/xen/xend/XendConfig.py | 35 - tools/python/xen/xend/XendDomain...