2011-12-02 20:25:29 +00:00
|
|
|
changeset: 24217:b531f5ceddf0
|
|
|
|
user: Olaf Hering <olaf@aepfle.de>
|
|
|
|
date: Sun Nov 20 17:02:39 2011 +0100
|
|
|
|
files: tools/xenpaging/xenpaging.c
|
|
|
|
description:
|
2011-11-03 22:59:30 +00:00
|
|
|
xenpaging: improve mainloop exit handling
|
|
|
|
|
|
|
|
Remove the if/else logic to exit from the in case a signal arrives.
|
|
|
|
Update comments.
|
|
|
|
|
|
|
|
Signed-off-by: Olaf Hering <olaf@aepfle.de>
|
2011-12-02 20:25:29 +00:00
|
|
|
Committed-by: Ian Jackson <ian.jackson.citrix.com>
|
|
|
|
|
2011-11-03 22:59:30 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
tools/xenpaging/xenpaging.c | 16 +++++++++-------
|
|
|
|
1 file changed, 9 insertions(+), 7 deletions(-)
|
|
|
|
|
|
|
|
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
|
|
|
|
@@ -805,7 +805,7 @@ int main(int argc, char *argv[])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- /* Write all pages back into the guest */
|
|
|
|
+ /* If interrupted, write all pages back into the guest */
|
|
|
|
if ( interrupted == SIGTERM || interrupted == SIGINT )
|
|
|
|
{
|
|
|
|
/* If no more pages to process, exit loop. */
|
|
|
|
@@ -814,13 +814,15 @@ int main(int argc, char *argv[])
|
|
|
|
|
|
|
|
/* One more round if there are still pages to process. */
|
|
|
|
resume_pages(paging, paging->num_paged_out);
|
|
|
|
+
|
|
|
|
+ /* Resume main loop */
|
|
|
|
+ continue;
|
|
|
|
}
|
|
|
|
- else
|
|
|
|
- {
|
|
|
|
- /* Exit on any other signal */
|
|
|
|
- if ( interrupted )
|
|
|
|
- break;
|
|
|
|
- }
|
|
|
|
+
|
|
|
|
+ /* Exit main loop on any other signal */
|
|
|
|
+ if ( interrupted )
|
|
|
|
+ break;
|
|
|
|
+
|
|
|
|
}
|
|
|
|
DPRINTF("xenpaging got signal %d\n", interrupted);
|
|
|
|
|