08a77ed8c4
xenpaging.tools_xenpaging_cleanup.patch - fate#310510 - fix xenpaging xenpaging.mem_event_check_ring-free_requests.patch - install /etc/xen/examples/xentrace_formats.txt to get human readable tracedata if xenalyze is not used - fate#310510 - fix xenpaging xenpaging.autostart_delay.patch xenpaging.blacklist.patch xenpaging.MRU_SIZE.patch remove xenpaging.hacks.patch, realmode works - Upstream patches from Jan including fixes for the following bugs bnc#583568 - Xen kernel is not booting bnc#615206 - Xen kernel fails to boot with IO-APIC problem bnc#640773 - Xen kernel crashing right after grub bnc#643477 - issues with PCI hotplug/hotunplug to Xen driver domain 22223-vtd-igd-workaround.patch 22222-x86-timer-extint.patch 22214-x86-msr-misc-enable.patch 22213-x86-xsave-cpuid-check.patch 22194-tmem-check-pv-mfn.patch 22177-i386-irq-safe-map_domain_page.patch 22175-x86-irq-enter-exit.patch 22174-x86-pmtimer-accuracy.patch 22160-Intel-C6-EOI.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/xen?expand=0&rev=76
162 lines
4.1 KiB
Diff
162 lines
4.1 KiB
Diff
Subject: xenpaging: add signal handling
|
|
|
|
Leave paging loop if xenpaging gets a signal.
|
|
Remove paging file on exit.
|
|
|
|
Signed-off-by: Olaf Hering <olaf@aepfle.de>
|
|
|
|
---
|
|
tools/xenpaging/xenpaging.c | 39 +++++++++++++++++++++++++++++++--------
|
|
1 file changed, 31 insertions(+), 8 deletions(-)
|
|
|
|
--- xen-4.0.1-testing.orig/tools/xenpaging/xenpaging.c
|
|
+++ xen-4.0.1-testing/tools/xenpaging/xenpaging.c
|
|
@@ -22,6 +22,7 @@
|
|
|
|
#include <inttypes.h>
|
|
#include <stdlib.h>
|
|
+#include <signal.h>
|
|
#include <xc_private.h>
|
|
|
|
#include <xen/mem_event.h>
|
|
@@ -40,6 +41,11 @@
|
|
#define DPRINTF(...) ((void)0)
|
|
#endif
|
|
|
|
+static int interrupted;
|
|
+static void close_handler(int sig)
|
|
+{
|
|
+ interrupted = sig;
|
|
+}
|
|
|
|
static void *init_page(void)
|
|
{
|
|
@@ -244,7 +250,6 @@ int xenpaging_teardown(xenpaging_t *pagi
|
|
if ( rc != 0 )
|
|
{
|
|
ERROR("Error tearing down domain paging in xen");
|
|
- goto err;
|
|
}
|
|
|
|
/* Unbind VIRQ */
|
|
@@ -252,7 +257,6 @@ int xenpaging_teardown(xenpaging_t *pagi
|
|
if ( rc != 0 )
|
|
{
|
|
ERROR("Error unbinding event port");
|
|
- goto err;
|
|
}
|
|
paging->mem_event.port = -1;
|
|
|
|
@@ -261,7 +265,6 @@ int xenpaging_teardown(xenpaging_t *pagi
|
|
if ( rc != 0 )
|
|
{
|
|
ERROR("Error closing event channel");
|
|
- goto err;
|
|
}
|
|
paging->mem_event.xce_handle = -1;
|
|
|
|
@@ -270,7 +273,6 @@ int xenpaging_teardown(xenpaging_t *pagi
|
|
if ( rc != 0 )
|
|
{
|
|
ERROR("Error closing connection to xen");
|
|
- goto err;
|
|
}
|
|
paging->xc_handle = -1;
|
|
|
|
@@ -375,7 +377,7 @@ int xenpaging_evict_page(xenpaging_t *pa
|
|
return ret;
|
|
}
|
|
|
|
-int xenpaging_resume_page(xenpaging_t *paging, mem_event_response_t *rsp)
|
|
+static int xenpaging_resume_page(xenpaging_t *paging, mem_event_response_t *rsp)
|
|
{
|
|
int ret;
|
|
|
|
@@ -455,6 +457,11 @@ static int evict_victim(xenpaging_t *pag
|
|
goto out;
|
|
}
|
|
|
|
+ if ( interrupted )
|
|
+ {
|
|
+ ret = -EINTR;
|
|
+ goto out;
|
|
+ }
|
|
ret = xc_mem_paging_nominate(paging->xc_handle,
|
|
paging->mem_event.domain_id, victim->gfn);
|
|
if ( ret == 0 )
|
|
@@ -479,6 +486,7 @@ static int evict_victim(xenpaging_t *pag
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
+ struct sigaction act;
|
|
domid_t domain_id;
|
|
int num_pages;
|
|
xenpaging_t *paging;
|
|
@@ -513,7 +521,7 @@ int main(int argc, char *argv[])
|
|
if ( paging == NULL )
|
|
{
|
|
ERROR("Error initialising paging");
|
|
- goto out;
|
|
+ return 1;
|
|
}
|
|
|
|
/* Open file */
|
|
@@ -522,9 +530,18 @@ int main(int argc, char *argv[])
|
|
if ( fd < 0 )
|
|
{
|
|
perror("failed to open file");
|
|
- return -1;
|
|
+ return 2;
|
|
}
|
|
|
|
+ /* ensure that if we get a signal, we'll do cleanup, then exit */
|
|
+ act.sa_handler = close_handler;
|
|
+ act.sa_flags = 0;
|
|
+ sigemptyset(&act.sa_mask);
|
|
+ sigaction(SIGHUP, &act, NULL);
|
|
+ sigaction(SIGTERM, &act, NULL);
|
|
+ sigaction(SIGINT, &act, NULL);
|
|
+ sigaction(SIGALRM, &act, NULL);
|
|
+
|
|
/* Evict pages */
|
|
memset(victims, 0, sizeof(xenpaging_victim_t) * num_pages);
|
|
for ( i = 0; i < num_pages; i++ )
|
|
@@ -532,6 +549,8 @@ int main(int argc, char *argv[])
|
|
rc = evict_victim(paging, domain_id, &victims[i], fd, i);
|
|
if ( rc == -ENOSPC )
|
|
break;
|
|
+ if ( rc == -EINTR )
|
|
+ break;
|
|
if ( i % 100 == 0 )
|
|
DPRINTF("%d pages evicted\n", i);
|
|
}
|
|
@@ -539,7 +558,7 @@ int main(int argc, char *argv[])
|
|
DPRINTF("pages evicted\n");
|
|
|
|
/* Swap pages in and out */
|
|
- while ( 1 )
|
|
+ while ( !interrupted )
|
|
{
|
|
/* Wait for Xen to signal that a page needs paged in */
|
|
rc = xc_wait_for_event_or_timeout(paging->mem_event.xce_handle, 100);
|
|
@@ -630,8 +649,11 @@ int main(int argc, char *argv[])
|
|
}
|
|
}
|
|
}
|
|
+ DPRINTF("xenpaging got signal %d\n", interrupted);
|
|
|
|
out:
|
|
+ unlink(filename);
|
|
+ close(fd);
|
|
free(victims);
|
|
|
|
/* Tear down domain paging */
|
|
@@ -642,6 +664,7 @@ int main(int argc, char *argv[])
|
|
if ( rc == 0 )
|
|
rc = rc1;
|
|
|
|
+ DPRINTF("xenpaging exit code %d\n", rc);
|
|
return rc;
|
|
}
|
|
|