aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xenpaging/xenpaging.h
diff options
context:
space:
mode:
authorOlaf Hering <olaf@aepfle.de>2012-01-09 17:07:21 +0100
committerOlaf Hering <olaf@aepfle.de>2012-01-09 17:07:21 +0100
commit98eda193b6b358929423979b12a839f2d2c2e83a (patch)
treea54d617e534895d2effa83b3a01d54fc71067fd2 /tools/xenpaging/xenpaging.h
parent0e6f8cfd47ce649b0b633f9c03cea2108640de6a (diff)
downloadxen-98eda193b6b358929423979b12a839f2d2c2e83a.tar.gz
xen-98eda193b6b358929423979b12a839f2d2c2e83a.tar.bz2
xen-98eda193b6b358929423979b12a839f2d2c2e83a.zip
xenpaging: convert xenpaging_victim_t to struct victim
Signed-off-by: Olaf Hering <olaf@aepfle.de> Committed-by: Ian Jackson <ian.jackson.citrix.com>
Diffstat (limited to 'tools/xenpaging/xenpaging.h')
-rw-r--r--tools/xenpaging/xenpaging.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/xenpaging/xenpaging.h b/tools/xenpaging/xenpaging.h
index a25f1b64e4..4ac915da1c 100644
--- a/tools/xenpaging/xenpaging.h
+++ b/tools/xenpaging/xenpaging.h
@@ -57,10 +57,10 @@ typedef struct xenpaging {
} xenpaging_t;
-typedef struct xenpaging_victim {
+struct victim {
/* the gfn of the page to evict */
unsigned long gfn;
-} xenpaging_victim_t;
+};
extern void create_page_in_thread(xenpaging_t *paging);