All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0 of 6] PowerPC Linux patches, rev 2
@ 2007-07-05 22:27 Hollis Blanchard
  2007-07-05 22:27 ` [PATCH 1 of 6] [XEN][LINUX] Add Kconfig option for the balloon driver Hollis Blanchard
                   ` (5 more replies)
  0 siblings, 6 replies; 18+ messages in thread
From: Hollis Blanchard @ 2007-07-05 22:27 UTC (permalink / raw)
  To: Keir Fraser; +Cc: xen-devel, xen-ppc-devel

Hi Keir, I believe I've addressed all your comments on these patches. Please
apply.

16 files changed, 427 insertions(+), 35 deletions(-)
arch/ia64/xen/hypervisor.c           |    5 
drivers/xen/Kconfig                  |    7 +
drivers/xen/Makefile                 |    4 
drivers/xen/char/mem.c               |    8 -
drivers/xen/core/Makefile            |    1 
drivers/xen/core/gnttab.c            |   38 +++---
drivers/xen/core/xencomm.c           |  192 ++++++++++++++++++++++++++++++++++
drivers/xen/privcmd/Makefile         |    3 
drivers/xen/privcmd/compat_privcmd.c |   73 ++++++++++++
drivers/xen/util.c                   |    8 -
fs/compat_ioctl.c                    |   17 +++
include/asm-i386/mach-xen/asm/io.h   |    4 
include/asm-ia64/uaccess.h           |    4 
include/xen/compat_ioctl.h           |   45 +++++++
include/xen/gnttab.h                 |    2 
include/xen/xencomm.h                |   51 +++++++++

^ permalink raw reply	[flat|nested] 18+ messages in thread
* [PATCH 0 of 6] PowerPC Linux patches
@ 2007-07-05 21:08 Hollis Blanchard
  2007-07-05 21:08 ` [PATCH 5 of 6] [XEN][LINUX] Refactor grant table allocation into arch-specific code Hollis Blanchard
  0 siblings, 1 reply; 18+ messages in thread
From: Hollis Blanchard @ 2007-07-05 21:08 UTC (permalink / raw)
  To: Keir Fraser; +Cc: xen-devel, xen-ppc-devel

Hi Keir, we've been maintaining PowerPC Linux patches in our own tree for quite
a while. This patch queue brings them into the new linux-2.6.18-xen.hg tree.

These patches reorganize arch-generic Xen Linux code, so I'm sending them by
mail for review. If they are acceptable, I will commit them (and the PowerPC
code that depends on them) to the PowerPC Linux tree so you can pull from
there.

Please review.

16 files changed, 404 insertions(+), 36 deletions(-)
arch/ia64/xen/hypervisor.c           |    5 
drivers/xen/Kconfig                  |    7 +
drivers/xen/Makefile                 |    4 
drivers/xen/char/mem.c               |    8 -
drivers/xen/core/Makefile            |    1 
drivers/xen/core/gnttab.c            |   39 +++---
drivers/xen/core/xencomm.c           |  192 ++++++++++++++++++++++++++++++++++
drivers/xen/privcmd/Makefile         |    3 
drivers/xen/privcmd/compat_privcmd.c |   72 ++++++++++++
drivers/xen/util.c                   |   10 -
fs/compat_ioctl.c                    |   16 ++
include/asm-i386/mach-xen/asm/io.h   |    4 
include/asm-ia64/uaccess.h           |    4 
include/xen/gnttab.h                 |    2 
include/xen/public/privcmd.h         |   22 +++
include/xen/xencomm.h                |   51 +++++++++

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

end of thread, other threads:[~2007-07-09  9:11 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-05 22:27 [PATCH 0 of 6] PowerPC Linux patches, rev 2 Hollis Blanchard
2007-07-05 22:27 ` [PATCH 1 of 6] [XEN][LINUX] Add Kconfig option for the balloon driver Hollis Blanchard
2007-07-05 22:27 ` [PATCH 2 of 6] [XEN][LINUX] Create Xen-specific interface for xlate_dev_mem_* Hollis Blanchard
2007-07-06  8:01   ` [PATCH 2 of 6] [XEN][LINUX] Create Xen-specificinterface " Jan Beulich
2007-07-05 22:27 ` [PATCH 3 of 6] [XEN][LINUX] Add architecture-generic xencomm infrastructure Hollis Blanchard
2007-07-05 22:27 ` [PATCH 4 of 6] [XEN][LINUX] Invert #ifdef for x86-specific *_vm_area() Hollis Blanchard
2007-07-05 22:27 ` [PATCH 5 of 6] [XEN][LINUX] Refactor grant table allocation into arch-specific code Hollis Blanchard
2007-07-06  8:04   ` [PATCH 5 of 6] [XEN][LINUX] Refactor grant tableallocation " Jan Beulich
2007-07-06 13:16   ` [PATCH 5 of 6] [XEN][LINUX] Refactor grant table allocation " Keir Fraser
2007-07-05 22:27 ` [PATCH 6 of 6] [XEN][LINUX] Add 32-bit privcmd ioctl conversion for 64-bit kernels Hollis Blanchard
2007-07-06  8:09   ` [PATCH 6 of 6] [XEN][LINUX] Add 32-bit privcmd ioctlconversion " Jan Beulich
2007-07-06  9:29     ` Keir Fraser
2007-07-06 15:44     ` [XenPPC] " Hollis Blanchard
2007-07-06 16:09       ` [XenPPC] Re: [PATCH 6 of 6] [XEN][LINUX] Add 32-bit privcmd ioctlconversion for 64-b Jan Beulich
2007-07-06 18:17         ` Re: [Xen-devel] " Hollis Blanchard
2007-07-09  9:03           ` [XenPPC] " Jan Beulich
2007-07-09  9:11             ` Keir Fraser
  -- strict thread matches above, loose matches on Subject: below --
2007-07-05 21:08 [PATCH 0 of 6] PowerPC Linux patches Hollis Blanchard
2007-07-05 21:08 ` [PATCH 5 of 6] [XEN][LINUX] Refactor grant table allocation into arch-specific code Hollis Blanchard

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.