All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00 of 22] xenpaging and libxc fixes for xen-unstable
@ 2011-06-10  9:12 Olaf Hering
  2011-06-10  9:12 ` [PATCH 01 of 22] xenpaging: remove unused spinlock in pager Olaf Hering
                   ` (21 more replies)
  0 siblings, 22 replies; 37+ messages in thread
From: Olaf Hering @ 2011-06-10  9:12 UTC (permalink / raw)
  To: xen-devel

The following series of changes for xenpaging and libxc obsoletes the series I
sent on 2011-06-07.

As suggested by Ian Campell, the xc.c in xenpaging directory was removed. 
While working on that I merged the various bitop code into a single header,
see patch 2 of this series.

The change to watch for guest shutdown was merged into the new
xenpaging_wait_for_event_or_timeout() function.

Please review and apply.

Olaf


[PATCH 01] xenpaging: remove unused spinlock in pager
[PATCH 02] tools: merge several bitop functions into xc_bitops.h
[PATCH 03] xenpaging: add xs_handle to struct xenpaging
[PATCH 04] xenpaging: drop xc.c, remove ASSERT
[PATCH 05] xenpaging: drop xc.c, remove xc_platform_info_t
[PATCH 06] xenpaging: drop xc.c, remove xc_wait_for_event
[PATCH 07] xenpaging: drop xc.c, move xc_mem_paging_flush_ioemu_cache
[PATCH 08] xenpaging: drop xc.c, move xc_wait_for_event_or_timeout
[PATCH 09] xenpaging: drop xc.c, remove xc files
[PATCH 10] xenpaging: correct dropping of pages to avoid full ring buffer
[PATCH 11] xenpaging: do not bounce p2mt to xenpaging
[PATCH 12] xenpaging: remove srand call
[PATCH 13] xenpaging: remove return values from functions that can not fail
[PATCH 14] xenpaging: catch xc_mem_paging_resume errors
[PATCH 15] xenpaging: remove local domain_id variable
[PATCH 16] xenpaging: move num_pages into xenpaging struct
[PATCH 17] xenpaging: start paging in the middle of gfn range
[PATCH 18] xenpaging: pass integer to xenpaging_populate_page
[PATCH 19] xenpaging: add helper function for unlinking pagefile
[PATCH 20] xenpaging: add watch thread to catch guest shutdown
[PATCH 21] xenpaging: implement stopping of pager by sending SIGTERM/SIGINT
[PATCH 22] xenpaging: remove private mem_event.h


 tools/blktap2/drivers/block-log.c        |   29 --
 tools/libxc/ia64/xc_ia64_linux_restore.c |   14 
 tools/libxc/ia64/xc_ia64_linux_save.c    |   29 --
 tools/libxc/ia64/xc_ia64_save_restore.h  |   20 -
 tools/libxc/xc_bitops.h                  |   57 +++
 tools/libxc/xc_domain_save.c             |   66 ----
 tools/xenpaging/Makefile                 |    3 
 tools/xenpaging/bitops.h                 |  448 -------------------------------
 tools/xenpaging/mem_event.h              |   63 ----
 tools/xenpaging/pagein.c                 |   68 ++++
 tools/xenpaging/policy_default.c         |   25 -
 tools/xenpaging/spinlock.h               |   69 ----
 tools/xenpaging/xc.c                     |  133 ---------
 tools/xenpaging/xc.h                     |   74 -----
 tools/xenpaging/xenpaging.c              |  310 +++++++++++++--------
 tools/xenpaging/xenpaging.h              |   20 -
 xen/arch/x86/mm/p2m.c                    |    1 
 17 files changed, 372 insertions(+), 1057 deletions(-)

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

end of thread, other threads:[~2011-06-22 14:03 UTC | newest]

Thread overview: 37+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-06-10  9:12 [PATCH 00 of 22] xenpaging and libxc fixes for xen-unstable Olaf Hering
2011-06-10  9:12 ` [PATCH 01 of 22] xenpaging: remove unused spinlock in pager Olaf Hering
2011-06-21 16:24   ` Ian Jackson
2011-06-10  9:12 ` [PATCH 02 of 22] tools: merge several bitop functions into xc_bitops.h Olaf Hering
2011-06-21 16:16   ` Ian Jackson
2011-06-21 16:20     ` Olaf Hering
2011-06-21 16:25       ` Ian Jackson
2011-06-21 17:17     ` Olaf Hering
2011-06-21 17:18       ` Ian Jackson
2011-06-22 14:03         ` Ian Jackson
2011-06-10  9:12 ` [PATCH 03 of 22] xenpaging: add xs_handle to struct xenpaging Olaf Hering
2011-06-14 11:05   ` Ian Campbell
2011-06-20  9:58     ` [PATCH 03 of 22 v2] " Olaf Hering
2011-06-21 13:17       ` Ian Campbell
2011-06-21 15:33         ` [PATCH 03 of 22 v3] " Olaf Hering
2011-06-10  9:12 ` [PATCH 04 of 22] xenpaging: drop xc.c, remove ASSERT Olaf Hering
2011-06-10  9:12 ` [PATCH 05 of 22] xenpaging: drop xc.c, remove xc_platform_info_t Olaf Hering
2011-06-10  9:12 ` [PATCH 06 of 22] xenpaging: drop xc.c, remove xc_wait_for_event Olaf Hering
2011-06-10  9:12 ` [PATCH 07 of 22] xenpaging: drop xc.c, move xc_mem_paging_flush_ioemu_cache Olaf Hering
2011-06-10  9:12 ` [PATCH 08 of 22] xenpaging: drop xc.c, move xc_wait_for_event_or_timeout Olaf Hering
2011-06-10  9:12 ` [PATCH 09 of 22] xenpaging: drop xc.c, remove xc files Olaf Hering
2011-06-10  9:12 ` [PATCH 10 of 22] xenpaging: correct dropping of pages to avoid full ring buffer Olaf Hering
2011-06-10  9:13 ` [PATCH 11 of 22] xenpaging: do not bounce p2mt to xenpaging Olaf Hering
2011-06-13 10:48   ` Tim Deegan
2011-06-20  9:57     ` [PATCH 11 of 22 v2] xenpaging: do not bounce p2mt back to the hypervisor Olaf Hering
2011-06-20 10:36       ` Tim Deegan
2011-06-10  9:13 ` [PATCH 12 of 22] xenpaging: remove srand call Olaf Hering
2011-06-10  9:13 ` [PATCH 13 of 22] xenpaging: remove return values from functions that can not fail Olaf Hering
2011-06-10  9:13 ` [PATCH 14 of 22] xenpaging: catch xc_mem_paging_resume errors Olaf Hering
2011-06-10  9:13 ` [PATCH 15 of 22] xenpaging: remove local domain_id variable Olaf Hering
2011-06-10  9:13 ` [PATCH 16 of 22] xenpaging: move num_pages into xenpaging struct Olaf Hering
2011-06-10  9:13 ` [PATCH 17 of 22] xenpaging: start paging in the middle of gfn range Olaf Hering
2011-06-10  9:13 ` [PATCH 18 of 22] xenpaging: pass integer to xenpaging_populate_page Olaf Hering
2011-06-10  9:13 ` [PATCH 19 of 22] xenpaging: add helper function for unlinking pagefile Olaf Hering
2011-06-10  9:13 ` [PATCH 20 of 22] xenpaging: add watch thread to catch guest shutdown Olaf Hering
2011-06-10  9:13 ` [PATCH 21 of 22] xenpaging: implement stopping of pager by sending SIGTERM/SIGINT Olaf Hering
2011-06-10  9:13 ` [PATCH 22 of 22] xenpaging: remove private mem_event.h Olaf Hering

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.