|
|
|
|
|
|
|
|
|
|
xen-devel
[Xen-devel] [PATCH 08 of 15] xenpaging: track the number of paged-out pa
# HG changeset patch
# User Olaf Hering <olaf@xxxxxxxxx>
# Date 1319188945 -7200
# Node ID 75e0b7374cbda66c91ab910103adcb1088a867e4
# Parent 8ab7b6fc34334faf5900e26cf3fcece33dc38337
xenpaging: track the number of paged-out pages
This change is required by subsequent changes.
Signed-off-by: Olaf Hering <olaf@xxxxxxxxx>
diff -r 8ab7b6fc3433 -r 75e0b7374cbd tools/xenpaging/xenpaging.c
--- a/tools/xenpaging/xenpaging.c
+++ b/tools/xenpaging/xenpaging.c
@@ -467,6 +467,9 @@ static int xenpaging_evict_page(xenpagin
/* Notify policy of page being paged out */
policy_notify_paged_out(victim->gfn);
+ /* Record number of evicted pages */
+ paging->num_paged_out++;
+
out:
return ret;
}
@@ -480,8 +483,13 @@ static int xenpaging_resume_page(xenpagi
/* Notify policy of page being paged in */
if ( notify_policy )
+ {
policy_notify_paged_in(rsp->gfn);
+ /* Record number of resumed pages */
+ paging->num_paged_out--;
+ }
+
/* Tell Xen page is ready */
ret = xc_mem_paging_resume(paging->xc_handle, paging->mem_event.domain_id,
rsp->gfn);
diff -r 8ab7b6fc3433 -r 75e0b7374cbd tools/xenpaging/xenpaging.h
--- a/tools/xenpaging/xenpaging.h
+++ b/tools/xenpaging/xenpaging.h
@@ -49,6 +49,7 @@ typedef struct xenpaging {
mem_event_t mem_event;
/* number of pages for which data structures were allocated */
int max_pages;
+ int num_paged_out;
int num_pages;
int policy_mru_size;
unsigned long pagein_queue[XENPAGING_PAGEIN_QUEUE_SIZE];
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
<Prev in Thread] |
Current Thread |
[Next in Thread>
|
- [Xen-devel] [PATCH 00 of 15] tools/xenpaging fixes for xen-unstable, Olaf Hering
- [Xen-devel] [PATCH 13 of 15] xenpaging: retry unpageable gfns, Olaf Hering
- [Xen-devel] [PATCH 14 of 15] xenpaging: install into LIBEXEC dir, Olaf Hering
- [Xen-devel] [PATCH 04 of 15] xenpaging: simplify file_op, Olaf Hering
- [Xen-devel] [PATCH 08 of 15] xenpaging: track the number of paged-out pages,
Olaf Hering <=
- [Xen-devel] [PATCH 02 of 15] xenpaging: remove obsolete comment in resume path, Olaf Hering
- [Xen-devel] [PATCH 01 of 15] xenpaging: remove filename from comment, Olaf Hering
- [Xen-devel] [PATCH 07 of 15] xenpaging: remove xc_dominfo_t from paging_t, Olaf Hering
- [Xen-devel] [PATCH 15 of 15] xenpaging: add XEN_PAGING_DIR / libxl_xenpaging_dir_path(), Olaf Hering
- [Xen-devel] [PATCH 09 of 15] xenpaging: move page add/resume loops into its own function, Olaf Hering
- [Xen-devel] [PATCH 06 of 15] xenpaging: update xenpaging_init, Olaf Hering
- [Xen-devel] [PATCH 03 of 15] xenpaging: use PERROR to print errno, Olaf Hering
- [Xen-devel] [PATCH 05 of 15] xenpaging: print gfn in failure case, Olaf Hering
- [Xen-devel] [PATCH 12 of 15] libxc: add bitmap_clear function, Olaf Hering
- [Xen-devel] [PATCH 11 of 15] xenpaging: improve mainloop exit handling, Olaf Hering
|
|
|
|
|