search for: hypervisor_sysfs

Displaying 3 results from an estimated 3 matches for "hypervisor_sysfs".

2007 Jun 20
0
[PATCH] linux-2.6.18: utilize SYS_HYPERVISOR config option
...5-31.orig/drivers/xen/core/Makefile 2007-06-06 17:04:59.000000000 +0200 +++ head-2007-05-31/drivers/xen/core/Makefile 2007-06-04 13:55:09.000000000 +0200 @@ -5,7 +5,7 @@ obj-y := evtchn.o gnttab.o features.o reboot.o machine_reboot.o obj-$(CONFIG_PROC_FS) += xen_proc.o -obj-$(CONFIG_SYSFS) += hypervisor_sysfs.o +obj-$(CONFIG_SYS_HYPERVISOR) += hypervisor_sysfs.o obj-$(CONFIG_HOTPLUG_CPU) += cpu_hotplug.o obj-$(CONFIG_XEN_SYSFS) += xen_sysfs.o obj-$(CONFIG_XEN_SMPBOOT) += smpboot.o Index: head-2007-05-31/drivers/xen/core/hypervisor_sysfs.c =============================================================...
2008 Jun 12
0
[PATCH 2/2] extract vmcoreinfo from /proc/vmcore for Xen
...esources(&xen_hypervisor_res, xen_phys_cpus, diff -r e01b3a133ddc drivers/xen/core/xen_sysfs.c --- a/drivers/xen/core/xen_sysfs.c Wed Jun 11 09:28:01 2008 +0100 +++ 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 v...
2006 May 18
27
[PATCH] /sys/hypervisor/uuid
...u May 18 18:06:35 2006 +0200 @@ -8,12 +8,14 @@ */ #include <linux/config.h> +#include <linux/err.h> #include <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.ko...