From mboxrd@z Thu Jan 1 00:00:00 1970 From: Olaf Hering Subject: [PATCH 03 of 22 v3] xenpaging: add xs_handle to struct xenpaging Date: Tue, 21 Jun 2011 17:33:59 +0200 Message-ID: <20110621153359.GC25582@aepfle.de> References: <2d2fe3e2bd73d0c257bb.1307697172@probook.site> <1308049512.17937.61.camel@zakaz.uk.xensource.com> <20110620095833.GB12615@aepfle.de> <1308662252.6920.28.camel@zakaz.uk.xensource.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Return-path: Content-Disposition: inline In-Reply-To: <1308662252.6920.28.camel@zakaz.uk.xensource.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: Ian Campbell Cc: "xen-devel@lists.xensource.com" List-Id: xen-devel@lists.xenproject.org A xs_handle is currently used in the xc_mem_paging_flush_ioemu_cache() function and will be used by a subsequent patch. Add it to struct xenpaging. Signed-off-by: Olaf Hering Acked-by: Ian Campbell diff -r 2faf6e491708 tools/xenpaging/xenpaging.c --- a/tools/xenpaging/xenpaging.c Tue Jun 21 17:28:56 2011 +0200 +++ b/tools/xenpaging/xenpaging.c Tue Jun 21 17:31:33 2011 +0200 @@ -28,6 +28,7 @@ #include #include #include +#include #include @@ -92,6 +93,14 @@ static xenpaging_t *xenpaging_init(domid paging = malloc(sizeof(xenpaging_t)); memset(paging, 0, sizeof(xenpaging_t)); + /* Open connection to xenstore */ + paging->xs_handle = xs_open(0); + if ( paging->xs_handle == NULL ) + { + ERROR("Error initialising xenstore connection"); + goto err; + } + p = getenv("XENPAGING_POLICY_MRU_SIZE"); if ( p && *p ) { @@ -221,6 +230,8 @@ static xenpaging_t *xenpaging_init(domid err: if ( paging ) { + if ( paging->xs_handle ) + xs_close(paging->xs_handle); xc_interface_close(xch); if ( paging->mem_event.shared_page ) { @@ -277,6 +288,9 @@ static int xenpaging_teardown(xenpaging_ } paging->mem_event.xce_handle = NULL; + /* Close connection to xenstore */ + xs_close(paging->xs_handle); + /* Close connection to Xen */ rc = xc_interface_close(xch); if ( rc != 0 ) diff -r 2faf6e491708 tools/xenpaging/xenpaging.h --- a/tools/xenpaging/xenpaging.h Tue Jun 21 17:28:56 2011 +0200 +++ b/tools/xenpaging/xenpaging.h Tue Jun 21 17:31:33 2011 +0200 @@ -36,6 +36,7 @@ typedef struct xenpaging { xc_interface *xc_handle; + struct xs_handle *xs_handle; xc_platform_info_t *platform_info; xc_domaininfo_t *domain_info;