Displaying 4 results from an estimated 4 matches for "virq_xenoprof".
2007 Dec 13
0
xenoprof: flush remaining smples when sampling is stopped.
xenoprof: flush remaining smples when sampling is stopped.
Xenoprof notifies guest kernel via VIRQ_XENOPROF when sampled.
But it does coarsly based on heuristic so that sometimes VIRQ_XENOPROF
isn''t delivered resulting in that oprofile daemon collects no sample.
To avoid that situation, always send VIRQ_XENOPROF when sampling is stopped.
--
yamahata
__________________________________________...
2006 May 15
20
[PATCH 0/3] xenoprof fixes
These patches address issues in the kernel part of xenoprof:
* Ill-advised use of on_each_cpu() can lead to sleep with interrupts
disabled.
* Race conditions in active_domains code.
* Cleanup of active_domains code.
Comments welcome.
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
2007 Nov 24
10
Dynamic-irq''s in HVM domains
''cat /proc/interrupts'' in a Linux PV domain shows interrupts starting at
256 and labelled as ''Dynamic-irq''. Are these available in a HVM domain,
eg under Windows?
Thanks
James
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
2006 Dec 01
0
[PATCH 3/10] Add support for netfront/netback acceleration drivers
...(DOM0) Bytes received on emergency
console. */
+#define VIRQ_DOM_EXC 3 /* G. (DOM0) Exceptional event for some
domain. */
+#define VIRQ_TBUF 4 /* G. (DOM0) Trace buffer has records
available. */
+#define VIRQ_DEBUGGER 6 /* G. (DOM0) A domain has paused for
debugging. */
+#define VIRQ_XENOPROF 7 /* V. XenOprofile interrupt: new sample
available */
+
+/* Architecture-specific VIRQ definitions. */
+#define VIRQ_ARCH_0 16
+#define VIRQ_ARCH_1 17
+#define VIRQ_ARCH_2 18
+#define VIRQ_ARCH_3 19
+#define VIRQ_ARCH_4 20
+#define VIRQ_ARCH_5 21
+#define VIRQ_ARCH_6 22
+#d...