2011-12-02 21:25:29 +01:00
|
|
|
changeset: 24214:f06595abfa88
|
|
|
|
user: Olaf Hering <olaf@aepfle.de>
|
|
|
|
date: Sun Nov 20 17:02:36 2011 +0100
|
|
|
|
files: tools/xenpaging/policy_default.c tools/xenpaging/xenpaging.c tools/xenpaging/xenpaging.h
|
|
|
|
description:
|
2011-11-03 23:59:30 +01:00
|
|
|
xenpaging: remove xc_dominfo_t from paging_t
|
|
|
|
|
|
|
|
Remove xc_dominfo_t from paging_t, record only max_pages.
|
|
|
|
This value is used to setup internal data structures.
|
|
|
|
|
|
|
|
Signed-off-by: Olaf Hering <olaf@aepfle.de>
|
2011-12-02 21:25:29 +01:00
|
|
|
Committed-by: Ian Jackson <ian.jackson.citrix.com>
|
|
|
|
|
2011-11-03 23:59:30 +01:00
|
|
|
|
|
|
|
---
|
|
|
|
tools/xenpaging/policy_default.c | 8 ++++----
|
|
|
|
tools/xenpaging/xenpaging.c | 27 +++++++++++----------------
|
|
|
|
tools/xenpaging/xenpaging.h | 4 ++--
|
|
|
|
3 files changed, 17 insertions(+), 22 deletions(-)
|
|
|
|
|
|
|
|
Index: xen-4.1.2-testing/tools/xenpaging/policy_default.c
|
|
|
|
===================================================================
|
|
|
|
--- xen-4.1.2-testing.orig/tools/xenpaging/policy_default.c
|
|
|
|
+++ xen-4.1.2-testing/tools/xenpaging/policy_default.c
|
|
|
|
@@ -41,17 +41,17 @@ int policy_init(xenpaging_t *paging)
|
|
|
|
int i;
|
|
|
|
int rc = -ENOMEM;
|
|
|
|
|
|
|
|
+ max_pages = paging->max_pages;
|
|
|
|
+
|
|
|
|
/* Allocate bitmap for pages not to page out */
|
|
|
|
- bitmap = bitmap_alloc(paging->domain_info->max_pages);
|
|
|
|
+ bitmap = bitmap_alloc(max_pages);
|
|
|
|
if ( !bitmap )
|
|
|
|
goto out;
|
|
|
|
/* Allocate bitmap to track unusable pages */
|
|
|
|
- unconsumed = bitmap_alloc(paging->domain_info->max_pages);
|
|
|
|
+ unconsumed = bitmap_alloc(max_pages);
|
|
|
|
if ( !unconsumed )
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
- max_pages = paging->domain_info->max_pages;
|
|
|
|
-
|
|
|
|
/* Initialise MRU list of paged in pages */
|
|
|
|
if ( paging->policy_mru_size > 0 )
|
|
|
|
mru_size = paging->policy_mru_size;
|
|
|
|
Index: xen-4.1.2-testing/tools/xenpaging/xenpaging.c
|
|
|
|
===================================================================
|
|
|
|
--- xen-4.1.2-testing.orig/tools/xenpaging/xenpaging.c
|
|
|
|
+++ xen-4.1.2-testing/tools/xenpaging/xenpaging.c
|
|
|
|
@@ -164,6 +164,7 @@ static void *init_page(void)
|
|
|
|
static xenpaging_t *xenpaging_init(domid_t domain_id, int num_pages)
|
|
|
|
{
|
|
|
|
xenpaging_t *paging;
|
|
|
|
+ xc_domaininfo_t domain_info;
|
|
|
|
xc_interface *xch;
|
|
|
|
xentoollog_logger *dbg = NULL;
|
|
|
|
char *p;
|
|
|
|
@@ -275,34 +276,29 @@ static xenpaging_t *xenpaging_init(domid
|
|
|
|
|
|
|
|
paging->mem_event.port = rc;
|
|
|
|
|
|
|
|
- /* Get domaininfo */
|
|
|
|
- paging->domain_info = malloc(sizeof(xc_domaininfo_t));
|
|
|
|
- if ( paging->domain_info == NULL )
|
|
|
|
- {
|
|
|
|
- PERROR("Error allocating memory for domain info");
|
|
|
|
- goto err;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
rc = xc_domain_getinfolist(xch, paging->mem_event.domain_id, 1,
|
|
|
|
- paging->domain_info);
|
|
|
|
+ &domain_info);
|
|
|
|
if ( rc != 1 )
|
|
|
|
{
|
|
|
|
PERROR("Error getting domain info");
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
+ /* Record number of max_pages */
|
|
|
|
+ paging->max_pages = domain_info.max_pages;
|
|
|
|
+
|
|
|
|
/* Allocate bitmap for tracking pages that have been paged out */
|
|
|
|
- paging->bitmap = bitmap_alloc(paging->domain_info->max_pages);
|
|
|
|
+ paging->bitmap = bitmap_alloc(paging->max_pages);
|
|
|
|
if ( !paging->bitmap )
|
|
|
|
{
|
|
|
|
PERROR("Error allocating bitmap");
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
- DPRINTF("max_pages = %"PRIx64"\n", paging->domain_info->max_pages);
|
|
|
|
+ DPRINTF("max_pages = %d\n", paging->max_pages);
|
|
|
|
|
|
|
|
- if ( num_pages < 0 || num_pages > paging->domain_info->max_pages )
|
|
|
|
+ if ( num_pages < 0 || num_pages > paging->max_pages )
|
|
|
|
{
|
|
|
|
- num_pages = paging->domain_info->max_pages;
|
|
|
|
+ num_pages = paging->max_pages;
|
|
|
|
DPRINTF("setting num_pages to %d\n", num_pages);
|
|
|
|
}
|
|
|
|
paging->num_pages = num_pages;
|
|
|
|
@@ -337,7 +333,6 @@ static xenpaging_t *xenpaging_init(domid
|
|
|
|
}
|
|
|
|
|
|
|
|
free(paging->bitmap);
|
|
|
|
- free(paging->domain_info);
|
|
|
|
free(paging);
|
|
|
|
}
|
|
|
|
|
|
|
|
@@ -765,7 +760,7 @@ int main(int argc, char *argv[])
|
|
|
|
if ( interrupted == SIGTERM || interrupted == SIGINT )
|
|
|
|
{
|
|
|
|
int num = 0;
|
|
|
|
- for ( i = 0; i < paging->domain_info->max_pages; i++ )
|
|
|
|
+ for ( i = 0; i < paging->max_pages; i++ )
|
|
|
|
{
|
|
|
|
if ( test_bit(i, paging->bitmap) )
|
|
|
|
{
|
|
|
|
@@ -781,7 +776,7 @@ int main(int argc, char *argv[])
|
|
|
|
*/
|
|
|
|
if ( num )
|
|
|
|
page_in_trigger();
|
|
|
|
- else if ( i == paging->domain_info->max_pages )
|
|
|
|
+ else if ( i == paging->max_pages )
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
Index: xen-4.1.2-testing/tools/xenpaging/xenpaging.h
|
|
|
|
===================================================================
|
|
|
|
--- xen-4.1.2-testing.orig/tools/xenpaging/xenpaging.h
|
|
|
|
+++ xen-4.1.2-testing/tools/xenpaging/xenpaging.h
|
|
|
|
@@ -44,11 +44,11 @@ typedef struct xenpaging {
|
|
|
|
xc_interface *xc_handle;
|
|
|
|
struct xs_handle *xs_handle;
|
|
|
|
|
|
|
|
- xc_domaininfo_t *domain_info;
|
|
|
|
-
|
|
|
|
unsigned long *bitmap;
|
|
|
|
|
|
|
|
mem_event_t mem_event;
|
|
|
|
+ /* number of pages for which data structures were allocated */
|
|
|
|
+ int max_pages;
|
|
|
|
int num_pages;
|
|
|
|
int policy_mru_size;
|
|
|
|
unsigned long pagein_queue[XENPAGING_PAGEIN_QUEUE_SIZE];
|