search for: xensetup

Displaying 20 results from an estimated 42 matches for "xensetup".

2006 Sep 21
0
[PATCH] Move initialize_keytable declaration to keyhandler.h
...cas.hpqcorp.net # Date 1158814338 14400 # Node ID 47e5627d8558a45de36ce70d1d81a025bbee4996 # Parent 010ae57673c7103737b84044eaa57a43347a0f0e Move initialize_keytable declaration to keyhandler.h Signed-off-by: Aron Griffis <aron@hp.com> diff -r 010ae57673c7 -r 47e5627d8558 xen/arch/ia64/xen/xensetup.c --- a/xen/arch/ia64/xen/xensetup.c Wed Sep 20 21:47:29 2006 -0400 +++ b/xen/arch/ia64/xen/xensetup.c Thu Sep 21 00:52:18 2006 -0400 @@ -38,7 +38,6 @@ int find_max_pfn (unsigned long, unsigne int find_max_pfn (unsigned long, unsigned long, void *); /* FIXME: which header these declarations sho...
2006 Oct 02
0
[PATCH] Add missing #include <xen/keyhandler.h>
...to xen-3.0.3-testing and xen-unstable. It fixes a missing #include which results in an implicit declaration for initialize_keytable (introduced by my own mistake in 828c0c89d830) Thanks, Aron Signed-off-by: Aron Griffis <aron@hp.com> diff -r f426f6e646eb -r bde321653d48 xen/arch/ia64/xen/xensetup.c --- a/xen/arch/ia64/xen/xensetup.c Mon Oct 02 18:04:56 2006 +0100 +++ b/xen/arch/ia64/xen/xensetup.c Mon Oct 02 18:21:24 2006 -0400 @@ -18,6 +18,7 @@ #include <xen/domain.h> #include <xen/serial.h> #include <xen/trace.h> +#include <xen/keyhandler.h> #include <asm/me...
2006 Aug 08
0
[PATCH] fix ia64 per cpu setup ordering
...changes, scheduler_init() now starts poking at per cpu space before we''ve configured it on ia64. This re-orders the setup calls to avoid this problem. Please apply. Thanks, Alex Signed-off-by: Alex Williamson <alex.williamson@hp.com> --- diff -r 1f05ac8abda6 xen/arch/ia64/xen/xensetup.c --- a/xen/arch/ia64/xen/xensetup.c Tue Aug 08 09:26:10 2006 -0600 +++ b/xen/arch/ia64/xen/xensetup.c Tue Aug 08 12:18:04 2006 -0600 @@ -423,13 +423,14 @@ void start_kernel(void) (xenheap_phys_end-__pa(heap_start)) >> 20, (xenheap_phys_end-__pa(heap_start)) >> 10); + late_setu...
2010 Aug 24
2
WIndows PV driver problem (from XCP 0.5) with XEN 3.4.3 and 4.0.1-rc6(-pre)
Hello I have a Supermicro system with Intel XEON cpu with VT enabled. HVM, without Windows PV driver, works great. I am trying to use Windows PV driver from XCP 0.5, it is in the .iso file of XCP 0.5 Filename: windows-pvdrivers-xensetup.exe I have tried - XEN 3.4.3 (Linux 2.6.18.8) - XEN 4.0.1-rc6-pre (Linux 2.6.31.x and Linux 2.6.32.x from Jeremys GIT) and - XEN 4.0.1-rc6 (Linux 2.6.31.x and Linux 2.6.32.x from Jeremys GIT) After installing the Windowsa PV driver, Windows is starting up and hanging around at the loading bar....
2009 Jul 15
0
[PATCH] rename for_each_cpu() to for_each_possible_cpu()
...er_cpu(privop_addr_counter, cpu); int i, j; @@ -92,7 +92,7 @@ void reset_privop_addrs(void) { unsigned int cpu; - for_each_cpu ( cpu ) { + for_each_possible_cpu ( cpu ) { struct privop_addr_count *v = per_cpu(privop_addr_counter, cpu); int i, j; --- 2009-07-10.orig/xen/arch/ia64/xen/xensetup.c 2009-07-10 08:51:30.000000000 +0200 +++ 2009-07-10/xen/arch/ia64/xen/xensetup.c 2009-07-15 10:01:13.000000000 +0200 @@ -606,8 +606,7 @@ skip_move: smp_prepare_cpus(max_cpus); /* We aren''t hotplug-capable yet. */ - for_each_cpu ( i ) - cpu_set(i, cpu_present_map); +...
2008 May 19
20
[PATCH 00/23] ia64/xen domU take 6
...h/ia64/xen/time.h | 23 ++ arch/ia64/xen/xcom_hcall.c | 424 ++++++++++++++++++++++++++++++ arch/ia64/xen/xen_pv_ops.c | 362 ++++++++++++++++++++++++++ arch/ia64/xen/xencomm.c | 95 +++++++ arch/ia64/xen/xenivt.S | 57 ++++ arch/ia64/xen/xensetup.S | 83 ++++++ include/asm-ia64/machvec.h | 2 + include/asm-ia64/machvec_xen.h | 22 ++ include/asm-ia64/meminit.h | 3 +- include/asm-ia64/sync_bitops.h | 57 ++++ include/asm-ia64/xen/events.h | 50 ++++ include/asm-ia64/xen/grant_table.h |...
2008 May 19
20
[PATCH 00/23] ia64/xen domU take 6
...h/ia64/xen/time.h | 23 ++ arch/ia64/xen/xcom_hcall.c | 424 ++++++++++++++++++++++++++++++ arch/ia64/xen/xen_pv_ops.c | 362 ++++++++++++++++++++++++++ arch/ia64/xen/xencomm.c | 95 +++++++ arch/ia64/xen/xenivt.S | 57 ++++ arch/ia64/xen/xensetup.S | 83 ++++++ include/asm-ia64/machvec.h | 2 + include/asm-ia64/machvec_xen.h | 22 ++ include/asm-ia64/meminit.h | 3 +- include/asm-ia64/sync_bitops.h | 57 ++++ include/asm-ia64/xen/events.h | 50 ++++ include/asm-ia64/xen/grant_table.h |...
2008 Apr 30
23
[PATCH 00/23] ia64/xen domU take 5
...h/ia64/xen/time.h | 23 ++ arch/ia64/xen/xcom_hcall.c | 424 ++++++++++++++++++++++++++++++ arch/ia64/xen/xen_pv_ops.c | 362 ++++++++++++++++++++++++++ arch/ia64/xen/xencomm.c | 95 +++++++ arch/ia64/xen/xenivt.S | 57 ++++ arch/ia64/xen/xensetup.S | 49 ++++ include/asm-ia64/machvec.h | 2 + include/asm-ia64/machvec_xen.h | 22 ++ include/asm-ia64/meminit.h | 3 +- include/asm-ia64/sync_bitops.h | 57 ++++ include/asm-ia64/xen/events.h | 50 ++++ include/asm-ia64/xen/grant_table.h | 29...
2008 Apr 30
23
[PATCH 00/23] ia64/xen domU take 5
...h/ia64/xen/time.h | 23 ++ arch/ia64/xen/xcom_hcall.c | 424 ++++++++++++++++++++++++++++++ arch/ia64/xen/xen_pv_ops.c | 362 ++++++++++++++++++++++++++ arch/ia64/xen/xencomm.c | 95 +++++++ arch/ia64/xen/xenivt.S | 57 ++++ arch/ia64/xen/xensetup.S | 49 ++++ include/asm-ia64/machvec.h | 2 + include/asm-ia64/machvec_xen.h | 22 ++ include/asm-ia64/meminit.h | 3 +- include/asm-ia64/sync_bitops.h | 57 ++++ include/asm-ia64/xen/events.h | 50 ++++ include/asm-ia64/xen/grant_table.h | 29...
2008 Apr 09
24
[PATCH 00/23] ia64/xen domU take 4
...h/ia64/xen/time.h | 23 ++ arch/ia64/xen/xcom_hcall.c | 424 ++++++++++++++++++++++++++++++ arch/ia64/xen/xen_pv_ops.c | 362 ++++++++++++++++++++++++++ arch/ia64/xen/xencomm.c | 95 +++++++ arch/ia64/xen/xenivt.S | 57 ++++ arch/ia64/xen/xensetup.S | 49 ++++ include/asm-ia64/machvec.h | 2 + include/asm-ia64/machvec_xen.h | 22 ++ include/asm-ia64/meminit.h | 3 +- include/asm-ia64/sync_bitops.h | 59 +++++ include/asm-ia64/xen/events.h | 50 ++++ include/asm-ia64/xen/grant_table.h | 2...
2008 Apr 09
24
[PATCH 00/23] ia64/xen domU take 4
...h/ia64/xen/time.h | 23 ++ arch/ia64/xen/xcom_hcall.c | 424 ++++++++++++++++++++++++++++++ arch/ia64/xen/xen_pv_ops.c | 362 ++++++++++++++++++++++++++ arch/ia64/xen/xencomm.c | 95 +++++++ arch/ia64/xen/xenivt.S | 57 ++++ arch/ia64/xen/xensetup.S | 49 ++++ include/asm-ia64/machvec.h | 2 + include/asm-ia64/machvec_xen.h | 22 ++ include/asm-ia64/meminit.h | 3 +- include/asm-ia64/sync_bitops.h | 59 +++++ include/asm-ia64/xen/events.h | 50 ++++ include/asm-ia64/xen/grant_table.h | 2...
2008 Jun 10
31
[PATCH 00/27] ia64/xen domU take 7
...xen/time.h | 24 ++ arch/ia64/xen/xcom_hcall.c | 441 ++++++++++++++++++++++++++++++++++ arch/ia64/xen/xen_pv_ops.c | 364 ++++++++++++++++++++++++++++ arch/ia64/xen/xencomm.c | 106 ++++++++ arch/ia64/xen/xenivt.S | 52 ++++ arch/ia64/xen/xensetup.S | 83 +++++++ include/asm-ia64/machvec.h | 2 + include/asm-ia64/machvec_xen.h | 22 ++ include/asm-ia64/meminit.h | 3 +- include/asm-ia64/sync_bitops.h | 57 +++++ include/asm-ia64/timex.h | 2 + include/asm-ia64/xen/events.h | 5...
2008 Jun 10
31
[PATCH 00/27] ia64/xen domU take 7
...xen/time.h | 24 ++ arch/ia64/xen/xcom_hcall.c | 441 ++++++++++++++++++++++++++++++++++ arch/ia64/xen/xen_pv_ops.c | 364 ++++++++++++++++++++++++++++ arch/ia64/xen/xencomm.c | 106 ++++++++ arch/ia64/xen/xenivt.S | 52 ++++ arch/ia64/xen/xensetup.S | 83 +++++++ include/asm-ia64/machvec.h | 2 + include/asm-ia64/machvec_xen.h | 22 ++ include/asm-ia64/meminit.h | 3 +- include/asm-ia64/sync_bitops.h | 57 +++++ include/asm-ia64/timex.h | 2 + include/asm-ia64/xen/events.h | 5...
2008 Jul 03
29
[PATCH 00/29] ia64/xen domU take 8
...+- arch/ia64/xen/xcom_hcall.c | 441 +++++++++++++++++++ arch/ia64/xen/xen_pv_ops.c | 364 +++++++++++++++ arch/ia64/xen/xencomm.c | 105 +++++ arch/ia64/xen/xenivt.S | 52 +++ arch/ia64/xen/xensetup.S | 83 ++++ include/asm-ia64/break.h | 9 + include/asm-ia64/machvec.h | 2 + include/asm-ia64/machvec_xen.h | 22 + include/asm-ia64/meminit.h | 3 +- include/asm-i...
2008 Jul 03
29
[PATCH 00/29] ia64/xen domU take 8
...+- arch/ia64/xen/xcom_hcall.c | 441 +++++++++++++++++++ arch/ia64/xen/xen_pv_ops.c | 364 +++++++++++++++ arch/ia64/xen/xencomm.c | 105 +++++ arch/ia64/xen/xenivt.S | 52 +++ arch/ia64/xen/xensetup.S | 83 ++++ include/asm-ia64/break.h | 9 + include/asm-ia64/machvec.h | 2 + include/asm-ia64/machvec_xen.h | 22 + include/asm-ia64/meminit.h | 3 +- include/asm-i...
2008 Jul 17
31
[PATCH 00/29] ia64/xen domU take 9
...+- arch/ia64/xen/xcom_hcall.c | 441 +++++++++++++++++++ arch/ia64/xen/xen_pv_ops.c | 364 +++++++++++++++ arch/ia64/xen/xencomm.c | 105 +++++ arch/ia64/xen/xenivt.S | 52 +++ arch/ia64/xen/xensetup.S | 83 ++++ include/asm-ia64/break.h | 9 + include/asm-ia64/machvec.h | 2 + include/asm-ia64/machvec_xen.h | 22 + include/asm-ia64/meminit.h | 3 +- include/asm-i...
2008 Jul 17
31
[PATCH 00/29] ia64/xen domU take 9
...+- arch/ia64/xen/xcom_hcall.c | 441 +++++++++++++++++++ arch/ia64/xen/xen_pv_ops.c | 364 +++++++++++++++ arch/ia64/xen/xencomm.c | 105 +++++ arch/ia64/xen/xenivt.S | 52 +++ arch/ia64/xen/xensetup.S | 83 ++++ include/asm-ia64/break.h | 9 + include/asm-ia64/machvec.h | 2 + include/asm-ia64/machvec_xen.h | 22 + include/asm-ia64/meminit.h | 3 +- include/asm-i...
2008 Aug 26
30
[PATCH 00/30] ia64/xen domU take 10
...- arch/ia64/xen/xcom_hcall.c | 441 +++++++++++++++++++ arch/ia64/xen/xen_pv_ops.c | 364 ++++++++++++++++ arch/ia64/xen/xencomm.c | 105 +++++ arch/ia64/xen/xenivt.S | 52 +++ arch/ia64/xen/xensetup.S | 83 ++++ 46 files changed, 4450 insertions(+), 39 deletions(-)
2008 Aug 26
30
[PATCH 00/30] ia64/xen domU take 10
...- arch/ia64/xen/xcom_hcall.c | 441 +++++++++++++++++++ arch/ia64/xen/xen_pv_ops.c | 364 ++++++++++++++++ arch/ia64/xen/xencomm.c | 105 +++++ arch/ia64/xen/xenivt.S | 52 +++ arch/ia64/xen/xensetup.S | 83 ++++ 46 files changed, 4450 insertions(+), 39 deletions(-)
2008 Oct 14
32
[PATCH 00/32] ia64/xen domU take 11
...| 24 + arch/ia64/xen/xcom_hcall.c | 441 ++++++++++++++++++++++++++++ arch/ia64/xen/xen_pv_ops.c | 364 +++++++++++++++++++++++ arch/ia64/xen/xencomm.c | 105 ++++++ arch/ia64/xen/xenivt.S | 52 +++ arch/ia64/xen/xensetup.S | 83 +++++ 49 files changed, 4574 insertions(+), 20 deletions(-)