Displaying 6 results from an estimated 6 matches for "xenalyz".
Did you mean:
xenalyze
2012 Oct 10
7
[PATCH 0 of 7] Miscellaneous updates
Clearing out my local queue of changes before applying other''s.
2010 May 07
0
[PATCH] More xenalyze type fixes
Looks like you added some more type problems which break the 64-bit build.
Signed-of-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
diff -r 668cf7d7cc8c xenalyze.c
--- a/xenalyze.c Thu May 06 16:27:50 2010 -0500
+++ b/xenalyze.c Fri May 07 16:22:10 2010 -0700
@@ -4382,8 +4382,8 @@
if ( opt.dump_all )
printf(" %s npf gpa %llx q %x mfn %llx t %d\n",
h->dump_header,
- r->gpa, r->qualification,
-...
2010 Aug 19
1
Credit Scheduler code question
Hi,
I''m a PhD student trying to add some load balancing code to the credit
scheduler in order to fit some specific necessities. I''m trying to
understand the credit scheduler code and I don''t quite get in which part of
it a pcpu starts running a vcpu. I need to keep track of when a vpcu starts
running in a cpu and when it stops. Any hint on that?
I think that it would
2013 Nov 14
33
VCPUOP_set_periodic_timer
Hi all,
I need a periodic timer running at ideally at 125 microseconds and at
least 500 microseconds. I''ve just found the VCPUOP_set_periodic_timer,
however there is a comment saying "periods less than one millisecond may
not be supported".
I will be running on an x64 machine. Is this supported? If not, is there
any alternate means of generating a fast interrupt?
Regards.
2018 Oct 11
2
xen_4.11.1~pre.20180911.5acdd26fdc+dfsg-2_multi.changes ACCEPTED into unstable, unstable
...ll there).
- Utilities which use on libraries with stable ABIs upstream
are no longer subjected to the Xen version wrapper.
- Several utilities are now provided in /usr/bin which were
previously only available buried in /usr/lib/xen-<version>:
xen-detect xenalyze xencons xencov_split xen-cpuid
(version-wrapped, where necessary).
- Likewise very many utilities and daemons in /usr/sbin:
gdbsx xen-bugtool xen-ringwatch xen-tmem-list-parse
xenmon xenpmd flask-* xen-kdd xen-diag xen-hptool
xen-hvmcrash xen-hvmctx x...
2012 Nov 22
41
[PATCH V3] vmx/nmi: Do not use self_nmi() in VMEXIT handler
The self_nmi() code cause''s an NMI to be triggered by sending an APIC
message to the local processor. However, NMIs are blocked by the
VMEXIT, until the next iret or VMENTER.
Volume 3 Chapter 27 Section 1 of the Intel SDM states:
An NMI causes subsequent NMIs to be blocked, but only after the VM exit
completes.
As a result, as soon as the VMENTER happens, an immediate VMEXIT
happens