search for: buse

Displaying 20 results from an estimated 344 matches for "buse".

Did you mean: bus
2012 Mar 06
1
[LLVMdev] problem with llvm pass for call graph & CFG
Hi all, I wrote a pass (attached). But I get a runtime error: buse at buse-VB:~/Desktop/llvm-2.7/lib/Transforms/CG_CFG$ opt-2.7 -load ../../../Release/lib/_CG_CFGGen.so -CG_CFGGen < ../../../buse/simpleCode.bc > /dev/null 0xa7bae0: 0 libLLVM-2.7.so.1 0x00007f4a8b6add1f 1 libLLVM-2.7.so.1 0x00007f4a8b6ae36d 2 libpthread.so.0 0x00007f4a8aa98b40 3 _CG_CFGG...
2015 Jul 01
0
[PATCH 7/9] v2v: Introduce the concept of target buses.
The target VM will have several buses to which disks can be attached. Commonly it will have an IDE bus, and possibly a virtio-blk "bus" (not really a bus) and/or a SCSI bus. Virt-v2v does not model this at the moment. Disks are just added to the output XML in the order that we write them, and so they can move around with r...
2007 Oct 10
3
Multiple PCI bus support
Hi, I saw that Xen support a translation between device/intx to GSI for a single PCI bus, I thought about adding multiple PCI bus support but disregard the bus information so the same device/intx on different buses will be OR wired to the same GSI, sounds reasonable? What other things do I need to support in Xen in order to add multiple PCI buses, assuming that secondary buses holds only PCI/PCIe devices? Thanks, Guy. _______________________________________________ Xen-devel mailing list Xen-devel@list...
2018 Dec 20
3
Re: assigning PCI addresses with bus > 0x09
...buntu. The VM seems to be started correctly and its state is "running"; in >> the XML file created by libvirt, I see all controllers from 0 the largest >> bus value I assigned, so everything from that side seems ok. > > I guess the hang is that you hit some limit in PCI buses. I think you're right. Each bus requires some amount of IO space, and I thought I recalled someone saying that all of the available IO space is exhausted after 7 or 8 buses. This was in relation to PCIe, where each root port is a bus, and can potentially take up IO space, so possibly in t...
2017 Mar 13
2
MIPS emulation broken - No PCI buses available
I am trying to create a QEMU MIPS guest, so that I can test some code for big-endian safety. Every attempt to create a MIPS guest is giving me an error: Unable to complete install: 'XML error: No PCI buses available' It seems like this is a known issue. https://www.redhat.com/archives/libvir-list/2016-May/msg00197.html However, I am still getting this on a fully updated Fedora 25 system with libvirt-2.2.0-2.fc25.x86_64. -- =================================================================...
2018 Dec 20
3
assigning PCI addresses with bus > 0x09
Hi, My goal is to assign PCI addresses to a number of devices (network interfaces, disks and PCI devices in PCI-passthrough) without delegating to libvirt the generation of those values. This should give me more control and for sure more predictability over the hardware configuration of a virtual machine and consequently the name of the interfaces in it. I'm using libvirt 4.3.0 to create
2014 Oct 22
4
[PATCH RFC 00/11] qemu: towards virtio-1 host support
...nymore if we can use ACPI to "black-list" the incompatible virtio devices. Reason: hotplug. To my understanding, the ACPI DRHD tables won't change during runtime when a device shows up or disappears. We would have to isolate virtio devices from the rest of the system by using separate buses for it (and avoid listing those in any DRHD table) and enforce that they only get plugged into those buses. I suppose that is not desirable. Maybe it's better to fix virtio /wrt IOMMUs. Jan -- Siemens AG, Corporate Technology, CT RTC ITP SES-DE Corporate Competence Center Embedded Linux
2014 Oct 22
4
[PATCH RFC 00/11] qemu: towards virtio-1 host support
...nymore if we can use ACPI to "black-list" the incompatible virtio devices. Reason: hotplug. To my understanding, the ACPI DRHD tables won't change during runtime when a device shows up or disappears. We would have to isolate virtio devices from the rest of the system by using separate buses for it (and avoid listing those in any DRHD table) and enforce that they only get plugged into those buses. I suppose that is not desirable. Maybe it's better to fix virtio /wrt IOMMUs. Jan -- Siemens AG, Corporate Technology, CT RTC ITP SES-DE Corporate Competence Center Embedded Linux
2017 Mar 14
0
Re: MIPS emulation broken - No PCI buses available
...or big-endian safety. You are probably better off using PPC64 which is big-endian and much more widely tested in libvirt than MIPS, so actually likely to work reliably. > Every attempt to create a MIPS guest is giving me an error: > > Unable to complete install: 'XML error: No PCI buses available' > > It seems like this is a known issue. > > https://www.redhat.com/archives/libvir-list/2016-May/msg00197.html > > However, I am still getting this on a fully updated Fedora 25 system > with libvirt-2.2.0-2.fc25.x86_64. It seems that patch you quote was n...
2017 Mar 14
0
Re: MIPS emulation broken - No PCI buses available
On Tue, 2017-03-14 at 09:18 -0500, Ian Pilcher wrote: > > You are probably better off using PPC64 which is big-endian and much more > > widely tested in libvirt than MIPS, so actually likely to work reliably. >  > I did try that, but I wasn't able to get past errors about the > machine type not supporting IDE (or something like that).  I finally > just gave up and use
2017 Mar 14
2
Re: MIPS emulation broken - No PCI buses available
On 03/14/2017 05:59 AM, Daniel P. Berrange wrote: > You are probably better off using PPC64 which is big-endian and much more > widely tested in libvirt than MIPS, so actually likely to work reliably. I did try that, but I wasn't able to get past errors about the machine type not supporting IDE (or something like that). I finally just gave up and use qemu-system-ppc directly, along
2015 Oct 21
1
[PATCH] v2v: move open_guestfs to Types
...f --git a/v2v/types.ml b/v2v/types.ml index cc417bc..a295172 100644 --- a/v2v/types.ml +++ b/v2v/types.ml @@ -18,6 +18,9 @@ open Printf +open Common_gettext.Gettext +open Common_utils + (* Types. See types.mli for documentation. *) type source = { @@ -379,6 +382,13 @@ let string_of_target_buses buses = string_of_target_bus_slots "ide" buses.target_ide_bus ^ string_of_target_bus_slots "scsi" buses.target_scsi_bus +let open_guestfs () = + (* Open the guestfs handle. *) + let g = new Guestfs.guestfs () in + if trace () then g#set_trace true; + if verbose () t...
2008 Jun 11
0
[PATCH] pci: fix off-by-one error and introduce MAX_PCI_FUNC
In include/sys/pci.h we have #define MAX_PCI_BUSES 255 and struct pci_bus_list { struct pci_bus pci_bus[MAX_PCI_BUSES]; uint8_t count; }; And in lib/pci/scan.c for (bus = 0; bus <= MAX_PCI_BUSES; bus++) { pci_bus_list->pci_bus[bus].pci_device_count = 0; Fix possible overflows and introduce MAX_PCI_FUNC. - Sebastian...
2009 Mar 22
2
[PATCH 1/3] pci: remove (void)cfgtype;
.../pci/scan.c +++ syslinux-3.74-pre11-2-g4fc8259/com32/lib/pci/scan.c @@ -441,7 +441,6 @@ struct pci_domain *pci_scan(void) int cfgtype; cfgtype = pci_set_config_type(PCI_CFG_AUTO); - (void)cfgtype; dprintf("PCI configuration type %d\n", cfgtype); dprintf("Scanning PCI Buses\n"); @@ -521,7 +520,6 @@ void gather_additional_pci_config(struct pciaddr_t a; int cfgtype; cfgtype = pci_set_config_type(PCI_CFG_AUTO); - (void)cfgtype; for (nbus = 0; nbus < MAX_PCI_BUSES; nbus++) { bus = NULL;
2014 Oct 23
1
[PATCH RFC 00/11] qemu: towards virtio-1 host support
...lack-list" the incompatible virtio devices. Reason: hotplug. To >> my >> understanding, the ACPI DRHD tables won't change during runtime when a >> device shows up or disappears. We would have to isolate virtio devices >> from the rest of the system by using separate buses for it (and avoid >> listing those in any DRHD table) and enforce that they only get >> plugged >> into those buses. I suppose that is not desirable. >> >> Maybe it's better to fix virtio /wrt IOMMUs. > > I always go back to my initial proposal which is to...
2014 Oct 23
1
[PATCH RFC 00/11] qemu: towards virtio-1 host support
...lack-list" the incompatible virtio devices. Reason: hotplug. To >> my >> understanding, the ACPI DRHD tables won't change during runtime when a >> device shows up or disappears. We would have to isolate virtio devices >> from the rest of the system by using separate buses for it (and avoid >> listing those in any DRHD table) and enforce that they only get >> plugged >> into those buses. I suppose that is not desirable. >> >> Maybe it's better to fix virtio /wrt IOMMUs. > > I always go back to my initial proposal which is to...
2016 Jul 26
2
CentOS 6 and an SAS drive, hardware
...;ve got a Cheetah that's a few years old, and having pulled it out of another server (in the datecenter), I put it in this box to zero it out for reuse... and the box refuses to see the drive. *Nothing* in dmesg, *nothing* in /var/log/messages, and I tried echo "0" etc to get the SCSI buses to rescan. Anyone have any ideas? mark
2004 Jul 09
4
Dell 6450 / TE405p
I'm having some trouble here - need some help! I've just bought a TE405p (32-bit 5V), but cannot get it working in a dell 6450. The dell has (from tech specs) "three peer PCI buses: two 64-bit buses and one 32-bit bus Expansion slots seven hot-pluggable PCI slots (two 64-bit/66 MHz, four 64-bit/33 MHz, and one 32-bit/33 MHz)" I cannot get the card working in any of the slots. When I power the server up, the digium card blinks red for a second, and the dell pci light g...
2012 Sep 26
8
[PATCH 2 of 6 V6] amd iommu: call guest_iommu_set_base from hvmloader
_______________________________________________ Xen-devel mailing list Xen-devel@lists.xen.org http://lists.xen.org/xen-devel
2015 Jul 01
12
[PATCH 1/9] v2v: Stable bus and slot numbers for removable drives (RHBZ#1238053).
This patch series adds stable bus and slot numbers for removable drives (CDs and floppies) when the guest is converted using virt-v2v or virt-p2v. Previously we were a bit random about this. After this patch series, the bus and slot numbers and preserved if at all possible. BZ: https://bugzilla.redhat.com/show_bug.cgi?id=1238053 Rich.