Displaying 7 results from an estimated 7 matches similar to: "[PATCH v3] xen/tools: Add 64 bits big bar support"
2008 Jan 18
7
[Patch] Make memory hole for PCI Express bigger and prevent roll-over
Keir,
Here''s a first patch to address the issue with rolling over to
guest-physical address 0x00000000 when assigning address regions to
PCI BARs during HVM boot. For now, this:
- Makes the hole bigger: 0xC0000000-0xF5000000. This might be
overkill...but it should only matter for 32-bit guest OSes assigned
more than 3GB of RAM.
- Prevents addresses from above 0xF50000000 from
2009 Jan 22
1
Mapping pci resources for graphics passthrough
Hi all,
I''ve been trying to understand the pci_setup function in hvmloader.c in Xen
unstable. I''m kinda lost at Line 328.
base = (resource->base + bar_sz - 1) & ~(bar_sz - 1)
I''d appreciate if someone could explain to me why base is calculated this
way. Specifically, I don''t understand the bitwise AND with the one''s
complements of
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 :)
2013 Mar 13
16
frequently ballooning results in qemu exit
We created a 64bit SLES11 SP1 guest, and then used a script to change memory (using mem-set command) periodically (in 1 second): set 1G, set 2G, set 1G, set 2G, and so on.
After a few minutes, we encountered QEMU exit due to SIGBUS error. Below is the call trace captured by gdb:
The call trace:
Program received signal SIGBUS, Bus error.
0x00007f94f74773d7 in memcpy () from /lib64/libc.so.6
(gdb)
2011 May 18
90
Patches for VGA-Passthrough XEN 4.2 unstable
Hello, I have been working on VGA-passthrough in the last month.
When Xen was at his version 3.5 there was a few patches to make this work for some graphic cards using the patches developed by Han Weidong and posted here (http://lists.xensource.com/archives/html/xen-devel/2009-08/msg01176.html) and the same patches posted file by file are here
2011 May 18
90
Patches for VGA-Passthrough XEN 4.2 unstable
Hello, I have been working on VGA-passthrough in the last month.
When Xen was at his version 3.5 there was a few patches to make this work for some graphic cards using the patches developed by Han Weidong and posted here (http://lists.xensource.com/archives/html/xen-devel/2009-08/msg01176.html) and the same patches posted file by file are here
2007 Dec 08
3
Multiple Worker Methods on Different Schedules
Quick question: If I want to schedule different worker methods defined in
the same worker to trigger at different times, is this possible? Would the
following scheduler yaml work?
:schedules:
:foo_worker:
:worker_method: method1
:trigger_args: 0 */10 * * * * *
:job_key: some_key_1
:foo_worker:
:worker_method: method2
:trigger_args: 0 */15 * * * * *
:job_key: