search for: yxb

Displaying 10 results from an estimated 10 matches for "yxb".

Did you mean: xb
2008 Aug 29
7
FC-HBA assigned to guest domain does not work.
I assigned FC-HBA to guest domain, but it did not work. FC-HBA seems to write its internal memory which is mapped to host memory space via pci transaction. But there is no mapping in IOMMU''s page table, so that page fault occurs in IOMMU. I think that MMIO resource mapped via p2m table should be mapped via IOMMU''s page table too. In other word, XEN_DOMCTL_memory_mapping
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 Jun 27
32
[PATCH][RFC] Support more Capability Structures and Device Specific
...cy of each field/bit by just simply modifying the "emu_mask" value provided in each register table. And for only special emulation or interacting with other components (like hypervisor), you have to implement function corresponding to the register. Signed-off-by: Yuji Shimada <shimada-yxb@necst.nec.co.jp> -- Yuji Shimada _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2008 Oct 17
0
[PATCH] Fix compilation error when CONFIG_PCI_REASSIGN is not set.
...ror when CONFIG_PCI_REASSIGN is not set. The patch depends on following patches I have sent. [PATCH] dom0 linux: Fix issue on reassigning resources to PCI-PCI bridge [PATCH] dom0 linux: remove "reassign_resources" option. Thanks, -- Yuji Shimada Signed-off-by: Yuji Shimada <shimada-yxb@necst.nec.co.jp> diff -r fac93b1081da drivers/pci/pci.h --- a/drivers/pci/pci.h Fri Oct 17 18:13:52 2008 +0900 +++ b/drivers/pci/pci.h Fri Oct 17 18:15:31 2008 +0900 @@ -104,4 +104,5 @@ extern void pci_disable_bridge_window(st extern void pci_disable_bridge_window(struct pci_dev *dev); #else...
2008 Aug 01
0
[PATCH] ioemu-remote&ioemu: fix libpci error handling.
...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. Signed-off-by: Yuji Shimada <shimada-yxb@necst.nec.co.jp> -- Yuji Shimada _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2008 Dec 25
0
[PATCH 1/4] dom0 linux: Expose HID, UID, SEG, BBN of PCI root bridge via sysfs.
This patch exposes HID,UID,SEG,BBN of PCI root bridge via sysfs. Thanks, -- Yuji Shimada. Signed-off-by: Yuji Shimada <shimada-yxb@necst.nec.co.jp> diff -r 618fc299e2f1 -r 4769a6db78f5 drivers/acpi/pci_root.c --- a/drivers/acpi/pci_root.c Thu Dec 18 11:51:36 2008 +0000 +++ b/drivers/acpi/pci_root.c Thu Dec 25 10:37:52 2008 +0900 @@ -151,6 +151,36 @@ return AE_OK; } +ssize_t +acpi_device_seg_show(struct acpi_device *ac...
2008 Nov 18
6
[PATCH] fix memory allocation from NUMA node for VT-d.
...ther hand, Address Translation Structure exists per guest domain. So, it needs allocating the memory for Address Translation Structure from NUMA node which guest domain runs. This patch is useful for a system which has many IOMMUs. Thanks, -- Yuji Shimada Signed-off-by: Yuji Shimada <shimada-yxb@necst.nec.co.jp> diff -r 5fd51e1e9c79 xen/drivers/passthrough/vtd/intremap.c --- a/xen/drivers/passthrough/vtd/intremap.c Wed Nov 05 10:57:21 2008 +0000 +++ b/xen/drivers/passthrough/vtd/intremap.c Tue Nov 18 17:37:31 2008 +0900 @@ -473,7 +473,7 @@ ir_ctrl = iommu_ir_ctrl(iommu); if (...
2008 Oct 08
8
[PATCH] dom0 linux: Reassign memory resources to device for pci passthrough.
...ign reassigns all devices'' memory resources if they are not page-aligned. This is not safe, because some devices are used by firmware. - pci-mem-align can''t expand resource window of PCI-PCI bridge. Thanks, -- Yuji Shimada Signed-off-by: Yuji Shimada <shimada-yxb@necst.nec.co.jp> diff -r b54652ee29ef drivers/pci/Makefile --- a/drivers/pci/Makefile Thu Oct 02 11:29:02 2008 +0100 +++ b/drivers/pci/Makefile Wed Oct 08 12:12:27 2008 +0900 @@ -3,7 +3,8 @@ # obj-y += access.o bus.o probe.o remove.o pci.o quirks.o \ - pci-driver.o search.o pci-sysfs.o r...
2008 Dec 25
0
[PATCH 2/4] dom0 linux: Add "guestdev=" boot parameter.
This patch adds "guestdev=" boot parameter. This boot parameter is used to reassign page-aligned memory resource and bind PCI back driver. Thanks, -- Yuji Shimada. Signed-off-by: Yuji Shimada <shimada-yxb@necst.nec.co.jp> diff -r 4769a6db78f5 -r fcefb8852878 Documentation/kernel-parameters.txt --- a/Documentation/kernel-parameters.txt Thu Dec 25 10:37:52 2008 +0900 +++ b/Documentation/kernel-parameters.txt Thu Dec 25 10:43:34 2008 +0900 @@ -1240,6 +1240,16 @@ bootloader. This is currently u...
2008 Jul 12
26
[PATCH] Improve the current FLR logic
Hi, all, The attached patches try to improve the current FLR logic. The idea is: removing the FLR logic from hypervisor and adding the improved logic in Control Panel. The current FLR logic in hypervisor has some issues: 1) Dstate transition is not guaranteed to properly clear the device state; 2) the current code for PCIe FLR is actually buggy: PCI_EXP_DEVSTA_TRPND doesn''t mean the