similar to: Tasks

Displaying 20 results from an estimated 700 matches similar to: "Tasks"

2013 Jun 27
0
Bug report on xen-utils-4.1: qemu-dm crashes with exit status 1
On Wed, Jun 26, 2013 at 01:48:03PM -0400, Alexandre Rebert wrote: > We found a crash in qemu-dm contained in the xen-utils-4.1 package. You are being > contacted because your are listed as one of the maintainer of xen-utils-4.1. xen-utils-4.1 is not in unstable, so this is not really helpful. > The bug report that will be submitted to the bug tracker is available at the > following
2013 Jun 26
2
Bug report on xen-utils-4.1: qemu-dm crashes with exit status 1
Hi, We found a crash in qemu-dm contained in the xen-utils-4.1 package. You are being contacted because your are listed as one of the maintainer of xen-utils-4.1. We are planning to submit the bug to the Debian bug tracking system in two weeks. We wanted to give you a heads-up, so that you some time to assess the seriousness of the bug before it is publicly disclosed. The bug report that will
2008 Aug 11
1
Bug#494727: xen-utils-3.2-1: Fail to define a new domain.
Package: xen-utils-3.2-1 Version: 3.2.1-2 Severity: important The xm command has an option to define a domain in Xen: xm new vm_config_file.cfg Using default dependences it isn't working: :~# xm new oromigration-oromail.cfg Unexpected error: <type 'exceptions.ImportError'> Please report to xen-devel at lists.xensource.com Traceback (most recent call last): File
2012 Apr 13
2
Bug#668641: Please add a symlink /usr/lib/xen -> /usr/lib/xen-default
Package: xen Version: 4.1.2-3 Severity: wishlist Hi, we're patching libvirt (incompletely atm) and also virtinst to cope with Debian's derivation from upstream to put things into /usr/lib/xen-<version> managed via alternatives to /usr/lib/xen-default. While the basic idea is great to be able to switch between different xen versions it would us get closer to upstream if we had a
2008 Jul 18
0
[PATCH] stubdom: fix build dependency
stubdom: fix build dependency newlib now depends on mini-os header links diff -r 4c2d9a4d11f2 stubdom/Makefile --- a/stubdom/Makefile Fri Jul 18 13:58:29 2008 +0100 +++ b/stubdom/Makefile Fri Jul 18 14:19:52 2008 +0100 @@ -86,7 +86,7 @@ NEWLIB_STAMPFILE=$(CROSS_ROOT)/$(GNU_TARGET_ARCH)-xen-elf/lib/libc.a .PHONY: cross-newlib cross-newlib: $(NEWLIB_STAMPFILE) -$(NEWLIB_STAMPFILE):
2008 Aug 01
0
[PATCH] ioemu-remote&ioemu: fix libpci error handling.
This patch fixes libpci error handling. It can be applied to both ioemu-remote and ioemu. libpci returns ALL F when error occurs. Currently, if libpci returns ALL F, emulation stops. But it is possible that the field of real register which is read by guest software is ALL F. After applying this patch, if libpci returns ALL F, ioemu will log warning message and continue the emulation.
2020 Feb 05
0
Kernel downgrade on Centos 8
On 2/4/20 11:33 PM, Dimitri Zelenkin via CentOS wrote: > Johnny Hughes wrote: >> No, CentOS-8 uses different shared libraries and a different version >> of the compiler than CentOS-7, so you can not run items compiled for >> CentOS-7 on CentOS-8. > > The kernel does not rely on userspace libraries. [hughesjr at inspiron11 kernel]$ rpm -q --requires kernel
2012 Oct 01
7
[PATCH] Matthew Fioravante now maintains VTPM
See MAINTAINERS file Signed-off-by: Matthew Fioravante <matthew.fioravante@jhuapl.edu> diff --git a/MAINTAINERS b/MAINTAINERS index 094fe9e..f562efa 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -261,6 +261,21 @@ S: Supported F: tools/xentrace/ F: xen/common/trace.c +VTPM +M: Matthew Fioravante <matthew.fioravante@jhuapl.edu> +S: Supported +F: tools/vtpm +F:
2013 Jun 19
3
minios, use of namespace
For a while I''ve been intending to provide a better environment for PV baremetal guests. The current arrangements, based on newlib, take quite a bit of porting for many programs. My plan is to take the FreeBSD libc, and write a set of functions implementing the "system calls" in terms of facilities provided by the Xen PV environment, frontend drivers, etc. As part of this I
2006 May 02
0
Mini-OS and Xend issue
I am seeing a strange issue while running Mini-OS on the changeset 9906:a95e677073c1. This is on both i386 and x86_64. The only difference being on i386 if I stop printing to the console, this issue is not manifested. But with x86_64 it happens all the time. Bringing up Mini-OS for the first time causes xm to hang on certain commands like "list, destroy". Other commands like
2011 Nov 22
3
[PATCH] qemu-xen: Don't redefine libpci (3.1.7) defines.
These values are already defined by the libpci heders in the version 3.1.7. PCI_STATUS_66MHZ PCI_STATUS_RESERVED2 PCI_STATUS_FAST_BACK PCI_MSIX_TABSIZE Signed-off-by: Jean Guyader <jean.guyader@eu.citrix.com> --- hw/pci.h | 6 ++++++ hw/pt-msi.h | 2 ++ 2 files changed, 8 insertions(+), 0 deletions(-) _______________________________________________ Xen-devel mailing list
2006 Jun 07
9
Rearchitecting IO Emulation for HVM Guests
Hi Ian, Natasha and I are interested in helping with the io emulation work for fully virtualized HVM guests you mentioned in your March 12th email: http://lists.xensource.com/archives/html/xen-devel/2006-03/msg00394.html In the post, you mentioned the following tasks: - get minios running on x86_64 - port xenbus/netfront/blkfront to minios - compile qemu-dm into minios - redirect IO to qemu-dm
2006 Jul 13
0
Re: Xen Roadmap proposal and Mini-OS C library
Ian, Thank you for your detailed report. > As a user space application, Qemu can''t run in the stub domain > directly, but requires an operating system kernel. The neatest way of > doing this would be to link qemu against `minios'', which is > effectively a library operating system for just this purpose. Since > minios makes use of a broad range of libc calls, it
2007 May 31
0
[RFC][PATCH 6/6] HVM PCI Passthrough (non-IOMMU)
libpci.patch: - A library to access the PCI config space, probe the bus for devices, etc. It is basically a copy & paste from the libpci app. - Uses the 0xcf8/0xcfc method to read the config. - PIO/MMIO low-level access functions. Signed-off-by: Alex Novik <alex@neocleus.com> _______________________________________________ Xen-devel mailing list
2008 Feb 19
6
stubdom questions
samuel, I have a try with HVM stubdomain on r17062, but failed to make on 32b platform. Attached patch can fix it, but don''t know if okay. After installation, I failed to start stubdom. So I created it manually and got following debug mesg(both HVMdomain and stubdom are created) Can you give some lights on following questions: 1. I use default vnclisten. Does it matter? 2. Seems qemu
2008 Aug 02
3
Bug for Xen-3.3.0-rc2: libpci read error. No emulation.
On 32e, we create one guest, then hotplug attach one NIC to guest, guest can not get IP address via dhcp, guest qemu log shows "libpci read error. No emulation ". Here is the bug entry: One 32e, hotplug attaching VT-d NIC to guest failed. http://bugzilla.xensource.com/bugzilla/show_bug.cgi?id=1316. -- haicheng _______________________________________________ Xen-devel mailing list
2008 Jul 06
2
Shirewall and ppp interface
I well, my ISP just worked with me to switch in my new gateway. After the switch and bringing up the ppp interface, the new gateway was access the Internet just fine, but none of systems behind it were. Scratched my head, and after some fumbling, I discovered that it seems like I have to restart shorewall after ppp interface is brought up. So. How do I ensure that shorewall is restarted
2006 Jul 05
0
[PATCH] Final MiniOS patch for today: Grant tables implementation
Keir, could you apply the attached implementation of grant tables for MiniOs (by Steven Smith). Cheers Gregor _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2009 May 22
0
miniOS page table allocation
Hi Folks, I''m sorry to come with a so technical question, but I''m working out a port of XEN on ARM in the context of EmbeddedXEN project. I digged into miniOS and found something which seems strange to me: the build_pagetable() function in mm.c. This function aims at building up the additional page tables which were not allocated by the hypervisor during the domain construction
2010 Jan 18
0
[PATCH] [RESEND] implement xc_map_foreign_bulk for minios
Hi all, this patch provides an implementation of xc_map_foreign_bulk for minios. In order to do so it modifies map_frames_ex and do_map_frames to take an int *err as parameter and return any error that way. Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com> _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com