Displaying 7 results from an estimated 7 matches for "ncmike".
Did you mean:
mike
2008 Aug 12
2
Announcing: Open OVF project source code availibility
...et/
And source code is hosted in a git repository:
http://gitorious.org/projects/open-ovf/repos
Scott Moser <smoser at us.ibm.com> is the project maintainer.
Please feel free to respond to this email if you have any questions!
Mike
--
Mike D. Day
IBM LTC
Cell: 919 412-3900
Sametime: ncmike at us.ibm.com AIM: ncmikeday Yahoo: ultra.runner
PGP key: http://www.ncultra.org/ncmike/pubkey.asc
2008 Apr 21
4
CPU scheduling of domains and vcpus
My question is related to an earlier discussion on the list (
http://lists.xensource.com/archives/html/xen-devel/2007-03/msg01395.html).
Is there any plan for implementing gang scheduling (of all vcpus of a
domain) in xen? I see that gang scheduling is mentioned in almost all the
latest talks about xen (posted on xen.org).
It seems to me that gang scheduling would be desirable, specially if there
2007 May 04
0
[PATCH] 3/4 "nemesis" scheduling domains for Xen
Implements tool interfaces for scheduling domains. libxenctrl, xm, and xend.
signed-off-by: Mike D. Day <ncmike@us.ibm.com>
--
libxc/xc_domain.c | 85 +++++++++++++++++++++++++++++++++---
libxc/xenctrl.h | 43 ++++++++++++++++--
python/xen/xend/XendDomain.py | 78 +++++++++++++++++++++++++++++++++
python/xen/xend/server/SrvDomain.py | 27 +++++++++++
p...
2005 Jan 21
0
kdb for xen linux 2.6.10
...ch.)
The patch and a brief HOWTO are located at
http://www.ncultra.org/xen/kdb/
kdb works with both privileged and unprivileged kernels.
Mike
--
Mike D. Day
Architect, Open Virtualization
IBM Linux Technology Center
3039 Cornwallis Road
Research Triangle Park, NC 27709
Phone: (919) 543-4283
ncmike@us.ibm.com
-------------------------------------------------------
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a F...
2008 Jun 12
0
[PATCH 2/2] extract vmcoreinfo from /proc/vmcore for Xen
...+ b/drivers/xen/core/xen_sysfs.c Thu Jun 12 13:39:04 2008 +0900
@@ -15,6 +15,7 @@
#include <xen/features.h>
#include <xen/hypervisor_sysfs.h>
#include <xen/xenbus.h>
+#include <xen/interface/kexec.h>
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Mike D. Day <ncmike@us.ibm.com>");
@@ -334,6 +335,24 @@ static void xen_properties_destroy(void)
&xen_properties_group);
}
+static ssize_t vmcoreinfo_show(struct hyp_sysfs_attr *attr, char *page)
+{
+ return sprintf(page, "%lx %zx\n",
+ paddr_vmcoreinfo_xen, vmcoreinfo_size_xen);
+}
+...
2004 Dec 22
3
[PATCH] domain.c idle_loop declaration (take 2)
...ed static void. The patch
simply includes a declaration using __attribute__ ((used)) that prevents
the compiler from optimizing out the function.
--
Mike D. Day
Architect, Open Virtualization
IBM Linux Technology Center
3039 Cornwallis Road
Research Triangle Park, NC 27709
Phone: (919) 543-4283
ncmike@us.ibm.com
2006 May 18
27
[PATCH] /sys/hypervisor/uuid
...<linux/kernel.h>
#include <linux/module.h>
#include <linux/init.h>
#include <asm/hypervisor.h>
#include <xen/features.h>
#include <xen/hypervisor_sysfs.h>
+#include <xen/xenbus.h>
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Mike D. Day <ncmike@us.ibm.com>");
@@ -92,6 +94,37 @@ static void xen_sysfs_version_destroy(vo
static void xen_sysfs_version_destroy(void)
{
sysfs_remove_group(&hypervisor_subsys.kset.kobj, &version_group);
+}
+
+/* UUID */
+
+static ssize_t uuid_show(struct hyp_sysfs_attr *attr, char *buffer)
+{
+...