Displaying 20 results from an estimated 100 matches similar to: "PCI device assignment to guests (userspace)"
2008 Apr 08
1
[PATCH] use NR_IRQS for irq count
Instead of artificially limiting irq numbers, use arch provided NR_IRQS
Signed-off-by: Glauber Costa <gcosta at redhat.com>
---
irqhook/irqhook_main.c | 16 +++++++---------
1 files changed, 7 insertions(+), 9 deletions(-)
diff --git a/irqhook/irqhook_main.c b/irqhook/irqhook_main.c
index 5f414d1..828c70a 100644
--- a/irqhook/irqhook_main.c
+++ b/irqhook/irqhook_main.c
@@ -31,15 +31,13
2008 Apr 08
1
[PATCH] use NR_IRQS for irq count
Instead of artificially limiting irq numbers, use arch provided NR_IRQS
Signed-off-by: Glauber Costa <gcosta at redhat.com>
---
irqhook/irqhook_main.c | 16 +++++++---------
1 files changed, 7 insertions(+), 9 deletions(-)
diff --git a/irqhook/irqhook_main.c b/irqhook/irqhook_main.c
index 5f414d1..828c70a 100644
--- a/irqhook/irqhook_main.c
+++ b/irqhook/irqhook_main.c
@@ -31,15 +31,13
2003 Apr 23
3
top failure
Hello gentlemen,
I've discovered an interesting failure on some machine running
4.7. It's so weird so I'd very unlikely notice it at all, but
thanks to top(1): when launched, instead of displaying some
useful figures it exits with an error: "top: nlist failed".
>From quick look it appears that kvm_nlist() returns NULL for
nlst[0].n_type. Strange, ignoring; next exit point
2003 Apr 19
1
proc size mismatch - yes, I re-installed my kernel
Hi,
Please, need help
# ps ax
ps: proc size mismatch (65720 total, 1056 chunks)
"userland out of sync with kernel, recompile libkvm etc"
This is after buildworld, what do I do? It messes up many things in the
system
yes, I re-installed my kernel and even tried GENERIC kernel that comes
with new update.
Thank you
Best Regards, Anton
2012 Sep 09
8
bsnmpd always died on HDD detach
I am running bsnmpd with basic snmpd.config (only community and location
changed).
When there is a problem with HDD and disk disapeared from ATA channel
(eg.: disc physically removed) the bsnmpd always dumps core:
kernel: pid 1188 (bsnmpd), uid 0: exited on signal 11 (core dumped)
I see this for a long rime on all releases of 7.x and 8.x branches (i386
and amd64). I did not tested 9.x.
Is
2008 Aug 25
11
pid-provider sees ld.so.1 only
I''m trying to do some userspace tracing on a server-process with the pid provider.
My problem is, that the only probes the pid-provider lists for the server-process (to which I attach dtrace with "-p nnnn") are coming from "ld.so.1".
There''s not a single one from my modules.
If I''m specifying "a.out" (or any of our shared-objects) as the
2013 Nov 02
2
"pt_iomul_init: Error: pt_iomul_init can't open file /dev/xen/pci_iomul: No such file or directory: 0x1:0x0.0x0". in qemu-dm-example.hvm.log
hi,
I want to pass through "01:00.0",declared as pci=['01:00.0'] in cfg file. but found error log
"pt_iomul_init: Error: pt_iomul_init can't open file /dev/xen/pci_iomul: No such file or directory: 0x1:0x0.0x0". in qemu-dm-example.hvm.log
In fact, /dev/xen/pci_iomul does not exist.
So where /dev/xen/pci_iomul implemented ?
I have searched xen and linux code,
2010 May 10
5
GFX Passthrough
Hi List,
many People seem to be interested in the Graphic-Card Passthrough Feature (for
more or less obvious reasons).
Official Support is still under development, and i hope not to interfere with it
in any (bad) way ...
But i remember my own painfull and timeconsuming research when i wanted this
feature to work, so i thought perhaps this spares some time for the unpatient
users like me :)
2008 Jan 08
1
[PATCH] QEMU KVM balloon support
Add QEMU support for the KVM balloon driver.
Memory hinting is performed via madvise().
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Index: kvm-userspace/libkvm/libkvm.c
===================================================================
--- kvm-userspace.orig/libkvm/libkvm.c
+++ kvm-userspace/libkvm/libkvm.c
@@ -886,6 +886,17 @@ int kvm_is_ready_for_interrupt_injection
return
2008 Jan 08
1
[PATCH] QEMU KVM balloon support
Add QEMU support for the KVM balloon driver.
Memory hinting is performed via madvise().
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Index: kvm-userspace/libkvm/libkvm.c
===================================================================
--- kvm-userspace.orig/libkvm/libkvm.c
+++ kvm-userspace/libkvm/libkvm.c
@@ -886,6 +886,17 @@ int kvm_is_ready_for_interrupt_injection
return
2011 Jan 26
9
[PATCH]vtd: Fix for irq bind failure after PCI attaching 32 times
vtd: Fix for irq bind failure after PCI attaching 32 times
Originally when detaching a PCI device, pirq_to_emuirq and pirq_to_irq are freed via hypercall do_physdev_op. Now in function pt_irq_destroy_bind_vtd, duplicated logic is added to free pirq_to_emuirq, but not pirq_to_irq. This causes do_physdev_op fail to free both emuirq and irq. After attaching a PCI device for 32 times, irq resources
2009 May 20
0
[PATCHv2-RFC 2/2] qemu-kvm: use common code for assigned msix
For assigned devices, use common code to enable msi-x. We need a special
"assigned" option as assigned devices lack a standard way to get vector
usage.
Signed-off-by: Michael S. Tsirkin <mst at redhat.com>
---
hw/device-assignment.c | 329 ++++++++++++------------------------------------
hw/device-assignment.h | 7 +-
hw/msix.c | 9 ++-
hw/pci.h
2009 May 20
0
[PATCHv2-RFC 2/2] qemu-kvm: use common code for assigned msix
For assigned devices, use common code to enable msi-x. We need a special
"assigned" option as assigned devices lack a standard way to get vector
usage.
Signed-off-by: Michael S. Tsirkin <mst at redhat.com>
---
hw/device-assignment.c | 329 ++++++++++++------------------------------------
hw/device-assignment.h | 7 +-
hw/msix.c | 9 ++-
hw/pci.h
2009 May 11
0
[PATCH 2/2] qemu-kvm: use common code for assigned msix
For assigned devices, use common code to enable msi-x.
Add "hack" option as assigned devices lack a standard way to get vector usage.
Signed-off-by: Michael S. Tsirkin <mst at redhat.com>
---
hw/device-assignment.c | 336 ++++++++++++------------------------------------
hw/device-assignment.h | 8 +-
hw/msix.c | 11 ++-
hw/pci.h | 4 +
4 files
2009 May 11
0
[PATCH 2/2] qemu-kvm: use common code for assigned msix
For assigned devices, use common code to enable msi-x.
Add "hack" option as assigned devices lack a standard way to get vector usage.
Signed-off-by: Michael S. Tsirkin <mst at redhat.com>
---
hw/device-assignment.c | 336 ++++++++++++------------------------------------
hw/device-assignment.h | 8 +-
hw/msix.c | 11 ++-
hw/pci.h | 4 +
4 files
2002 Mar 07
5
mailing list archive
Dear R help users:
I have set up a r help mailing list archive based on mysql which support
full text search and auto-update.
Please visit http://www.baidao.net/r/maillist/index.cgi . I hope you could
provide me bug reports and suggestions.
I will add r_dev and r_announce mailing list as soon as possible.
Thanks in advance!
eLan
2008 Sep 27
0
[PATCH 8/9] qemu: enable HMV guest SR-IOV support
Add SR-IOV support for HVM guest.
Signed-off-by: Yu Zhao <yu.zhao@intel.com>
diff --git a/hw/pass-through.c b/hw/pass-through.c
index 77ab759..da1a86b 100644
--- a/hw/pass-through.c
+++ b/hw/pass-through.c
@@ -47,6 +47,10 @@ struct dpci_infos {
/* prototype */
static uint32_t pt_common_reg_init(struct pt_dev *ptdev,
struct pt_reg_info_tbl *reg, uint32_t real_offset);
+static
2009 Jul 14
0
[patch]: qemu-xen: pass-through: pt_reset_interrupt_and_io_mapping(): use hw INTX
This fixes a few things that I missed in previous patches:
* Use the hw INTX rather than INTA in pt_reset_interrupt_and_io_mapping()
This is consistent with other uses of pci_intx()
* Remove now inaccurate "/* fix virtual interrupt pin to INTA# */" comments
* Use PCI_SLOT()
Signed-off-by: Simon Horman <horms@verge.net.au>
Index: ioemu-remote/hw/pass-through.c
2007 May 15
1
Asterisk 1.4.4 reproducibly dumps core on Solaris 10
I have built Asterisk 1.4.4 on my Solaris 10 x86 box:
LDFLAGS='-R/usr/sfw/lib -R/opt/csw/lib -L/opt/csw/lib -L/usr/sfw/lib'
CPPFLAGS=-I/opt/csw/include ./configure -with-curl=/opt/csw
--without-oss --without-vpb --prefix=/opt/asterisk-1.4
The build and install go fine but the asterisk executable reproducibly
dumps core with a segmentation violation.
If I start it as: asterisk -gc and
2007 Jul 26
0
Asterisk 1.4.9 reproducibly dumps core on Solaris 10
> Message: 1
> Date: Tue, 15 May 2007 23:01:24 -0400
> From: Frank Tarczynski <ftarz at mindspring.com>
> Subject: [asterisk-users] Asterisk 1.4.4 reproducibly dumps core on
> Solaris 10
> To: asterisk-users at lists.digium.com
> Message-ID: <464A7404.5000706 at mindspring.com>
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
>
> I have