Displaying 6 results from an estimated 6 matches for "xen_sysfs".
2008 Jun 16
3
Error when make linux-2.6-xenU-build
CC init/version.o
LD init/built-in.o
LD .tmp_vmlinux1
drivers/built-in.o: In function `vmcoreinfo_show'':
/usr/src/linux-2.6.18-xen.hg/drivers/xen/core/xen_sysfs.c:340: undefined
reference to `vmcoreinfo_size_xen''
/usr/src/linux-2.6.18-xen.hg/drivers/xen/core/xen_sysfs.c:340: undefined
reference to `paddr_vmcoreinfo_xen''
make[4]: ** [.tmp_vmlinux1] Erro 1
make[3]: ** [vmlinuz] Erro 2
make[2]: ** [vmlinuz] Erro 2
make[2]: Saindo do diretÃ...
2008 Jun 12
0
[PATCH 2/2] extract vmcoreinfo from /proc/vmcore for Xen
...O;
+
+ if (HYPERVISOR_kexec_op(KEXEC_CMD_kexec_get_range, &range))
+ return;
+
+ if (range.size) {
+ paddr_vmcoreinfo_xen = range.start;
+ vmcoreinfo_size_xen = range.size;
}
if (machine_kexec_setup_resources(&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>...
2006 May 18
27
[PATCH] /sys/hypervisor/uuid
...m/ from the value of vm to get the UUID isn''t exactly
nice. The alternative is to add a XENVER_get_uuid code to
HYPERVISOR_xen_version(), but I''m not sure that''s worth it.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
diff -r ddba92a5cba9 drivers/xen/core/xen_sysfs.c
--- a/drivers/xen/core/xen_sysfs.c Tue May 09 12:41:38 2006 +0200
+++ b/drivers/xen/core/xen_sysfs.c Thu 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 &...
2007 Jun 20
0
[PATCH] linux-2.6.18: utilize SYS_HYPERVISOR config option
.../drivers/xen/Kconfig
===================================================================
--- head-2007-05-31.orig/drivers/xen/Kconfig 2007-06-06 17:04:59.000000000 +0200
+++ head-2007-05-31/drivers/xen/Kconfig 2007-06-04 13:48:38.000000000 +0200
@@ -216,6 +216,7 @@ config XEN_DISABLE_SERIAL
config XEN_SYSFS
tristate "Export Xen attributes in sysfs"
depends on SYSFS
+ select SYS_HYPERVISOR
default y
help
Xen hypervisor attributes will show up under /sys/hypervisor/.
Index: head-2007-05-31/drivers/xen/core/Makefile
===================================================================...
2012 Feb 17
0
[PATCH] linux-2.6.18/drivers/xen/: constify all instances of "struct attribute_group"
...+++ b/drivers/xen/blktap/xenbus.c
@@ -152,7 +152,7 @@ static struct attribute *tapstat_attrs[]
NULL
};
-static struct attribute_group tapstat_group = {
+static const struct attribute_group tapstat_group = {
.name = "statistics",
.attrs = tapstat_attrs,
};
--- a/drivers/xen/core/xen_sysfs.c
+++ b/drivers/xen/core/xen_sysfs.c
@@ -84,7 +84,7 @@ static struct attribute *version_attrs[]
NULL
};
-static struct attribute_group version_group = {
+static const struct attribute_group version_group = {
.name = "version",
.attrs = version_attrs,
};
@@ -197,12 +197,12 @@ sta...
2009 Apr 22
1
/proc/sys/xen on a domU
Dear Xen users,
Do you know what are the kernel modules and/or mechanisms creating the
directory structure /proc/sys/xen on a domU?
We are running various Fedora-10, Centos 5.3, SLES 11 on HVM domUs but none
of them includes this directory structure.
Is it limited to PV domUs?
Thank you for your help,
Lionel.
_______________________________________________
Xen-users mailing list