All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/11] Xen arch portability patches
@ 2008-02-21  8:45 yamahata
  2008-02-21  8:45 ` [PATCH 01/11] xen: add missing __HYPERVISOR_arch_definisions which ia64 needs yamahata
                   ` (23 more replies)
  0 siblings, 24 replies; 59+ messages in thread
From: yamahata @ 2008-02-21  8:45 UTC (permalink / raw)
  To: linux-kernel, virtualization
  Cc: Jeremy Fitzhardinge, xen-devel, linux-ia64, Stephen C. Tweedie,
	Chris Wright, yamahata, xen-ia64-devel

Hi. Recently the xen-ia64 community started to make efforts to merge 
xen/ia64 Linux to upstream. The first step is to merge up domU portion.
This patchset is preliminary for xen/ia64 domU linux making the current
xen/x86 domU code more arch generic and adding missing definitions and
files.

Diffstat:
 arch/x86/xen/Makefile                |    4 +-
 arch/x86/xen/grant-table.c           |   91 +++++++++++++
 drivers/xen/Makefile                 |    3 +-
 {arch/x86 => drivers}/xen/events.c   |   34 ++++--
 {arch/x86 => drivers}/xen/features.c |    0 
 drivers/xen/grant-table.c            |   37 +-----
 drivers/xen/xenbus/xenbus_client.c   |    6 +-
 drivers/xen/xencomm.c                |  232 ++++++++++++++++++++++++++++++++++
 include/asm-x86/xen/hypervisor.h     |   10 ++
 include/asm-x86/xen/interface.h      |   24 ++++
 include/{ => asm-x86}/xen/page.h     |    0 
 include/xen/events.h                 |    1 +
 include/xen/grant_table.h            |    6 +
 include/xen/interface/callback.h     |  119 +++++++++++++++++
 include/xen/interface/grant_table.h  |   11 ++-
 include/xen/interface/vcpu.h         |    5 +
 include/xen/interface/xen.h          |   22 +++-
 include/xen/interface/xencomm.h      |   41 ++++++
 include/xen/page.h                   |  181 +--------------------------
 include/xen/xencomm.h                |   77 +++++++++++
 20 files changed, 673 insertions(+), 231 deletions(-)

-- 
yamahata

^ permalink raw reply	[flat|nested] 59+ messages in thread

end of thread, other threads:[~2008-02-22  5:14 UTC | newest]

Thread overview: 59+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-21  8:45 [PATCH 00/11] Xen arch portability patches yamahata
2008-02-21  8:45 ` [PATCH 01/11] xen: add missing __HYPERVISOR_arch_definisions which ia64 needs yamahata
2008-02-21  8:45 ` yamahata
2008-02-21  8:45 ` [PATCH 02/11] xen: add missing VIRQ_ARCH_definitions which ia64/xen needs yamahata
2008-02-21  8:45 ` yamahata
2008-02-21  8:45 ` [PATCH 03/11] xen: add missing definitions for xen grant table " yamahata
2008-02-21  8:45 ` yamahata
2008-02-21 19:40   ` [PATCH 03/11] xen: add missing definitions for xen grant table Jeremy Fitzhardinge
2008-02-21 19:40     ` [PATCH 03/11] xen: add missing definitions for xen grant table which ia64/xen needs Jeremy Fitzhardinge
2008-02-21 19:40   ` Jeremy Fitzhardinge
2008-02-21  8:45 ` [PATCH 04/11] xen: add missing definitions in include/xen/interface/vcpu.h " yamahata
2008-02-21  8:45 ` yamahata
2008-02-21  8:45 ` [PATCH 05/11] xen: move features.c from arch/x86/xen/features.c to drivers/xen yamahata
2008-02-21  8:45 ` yamahata
2008-02-21  8:45 ` [PATCH 06/11] xen: move arch/x86/xen/events.c undedr drivers/xen and split out arch specific part yamahata
2008-02-21 19:38   ` [PATCH 06/11] xen: move arch/x86/xen/events.c undedr drivers/xen Jeremy Fitzhardinge
2008-02-21 19:38     ` [PATCH 06/11] xen: move arch/x86/xen/events.c undedr drivers/xen and split out arch specific part Jeremy Fitzhardinge
2008-02-22  3:47     ` Isaku Yamahata
2008-02-22  3:47     ` [PATCH 06/11] xen: move arch/x86/xen/events.c undedr drivers/xen and split out arch specific par Isaku Yamahata
2008-02-22  3:47       ` [PATCH 06/11] xen: move arch/x86/xen/events.c undedr drivers/xen and split out arch specific part Isaku Yamahata
2008-02-21 19:38   ` Jeremy Fitzhardinge
2008-02-21  8:45 ` yamahata
2008-02-21  8:45 ` [PATCH 07/11] xen: make include/xen/page.h portable moving those definitions under asm dir yamahata
2008-02-21  8:45 ` yamahata
2008-02-21  8:45 ` [PATCH 08/11] xen: replace callers of alloc_vm_area()/free_vm_area() with xen_ prefixed one yamahata
2008-02-21  8:45 ` yamahata
2008-02-21  8:45 ` [PATCH 09/11] xen: make grant table arch portable yamahata
2008-02-21  8:45 ` yamahata
2008-02-21  8:45 ` [PATCH 10/11] xen: import include/xen/interface/callback.h which ia64/xen needs yamahata
2008-02-21  8:45 ` yamahata
2008-02-21  8:45 ` [PATCH 11/11] xen: import arch generic part of xencomm yamahata
2008-02-21  8:45 ` yamahata
2008-02-21 19:35 ` [PATCH 00/11] Xen arch portability patches Jeremy Fitzhardinge
2008-02-21 19:35   ` Jeremy Fitzhardinge
2008-02-22  5:07   ` Isaku Yamahata
2008-02-22  5:07     ` Isaku Yamahata
2008-02-22  5:07     ` [PATCH 01/11] xen: add missing __HYPERVISOR_arch_[0-7] definisions which ia64 needs Isaku Yamahata
2008-02-22  5:07       ` Isaku Yamahata
2008-02-22  5:07     ` [PATCH 02/11] xen: add missing VIRQ_ARCH_[0-7] definitions which ia64/xen needs Isaku Yamahata
2008-02-22  5:07       ` Isaku Yamahata
2008-02-22  5:07     ` [PATCH 03/11] xen: add missing definitions for xen grant table " Isaku Yamahata
2008-02-22  5:07       ` Isaku Yamahata
2008-02-22  5:07     ` [PATCH 04/11] xen: add missing definitions in include/xen/interface/vcpu.h " Isaku Yamahata
2008-02-22  5:07       ` Isaku Yamahata
2008-02-22  5:07     ` [PATCH 05/11] xen: move features.c from arch/x86/xen/features.c to drivers/xen Isaku Yamahata
2008-02-22  5:07       ` Isaku Yamahata
2008-02-22  5:07     ` [PATCH 06/11] xen: move arch/x86/xen/events.c undedr drivers/xen and split out arch specific part Isaku Yamahata
2008-02-22  5:07       ` Isaku Yamahata
2008-02-22  5:07     ` [PATCH 07/11] xen: make include/xen/page.h portable moving those definitions under asm dir Isaku Yamahata
2008-02-22  5:07       ` Isaku Yamahata
2008-02-22  5:07     ` [PATCH 08/11] xen: replace callers of alloc_vm_area()/free_vm_area() with xen_ prefixed one Isaku Yamahata
2008-02-22  5:07       ` Isaku Yamahata
2008-02-22  5:07     ` [PATCH 09/11] xen: make grant table arch portable Isaku Yamahata
2008-02-22  5:07       ` Isaku Yamahata
2008-02-22  5:07     ` [PATCH 10/11] xen: import include/xen/interface/callback.h which ia64/xen needs Isaku Yamahata
2008-02-22  5:07       ` Isaku Yamahata
2008-02-22  5:07     ` [PATCH 11/11] xen: import arch generic part of xencomm Isaku Yamahata
2008-02-22  5:07       ` Isaku Yamahata
2008-02-21 19:35 ` [PATCH 00/11] Xen arch portability patches Jeremy Fitzhardinge

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.