All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] check for KVM_GET/SET_REG ioctl failures
@ 2007-02-06 18:46 Muli Ben-Yehuda
       [not found] ` <20070206184639.GA4292-k73YwwB0fHlWk0Htik3J/w@public.gmane.org>
  0 siblings, 1 reply; 8+ messages in thread
From: Muli Ben-Yehuda @ 2007-02-06 18:46 UTC (permalink / raw)
  To: Avi Kivity; +Cc: kvm-devel

check for KVM_GET/SET_REGS ioctl failures

Signed-off-by: Muli Ben-Yehuda <muli-7z/5BgaJwgfQT0dZR+AlfA@public.gmane.org>

diff -r ee6f88782b5f -r 9a3e101daf18 user/kvmctl.c
--- a/user/kvmctl.c	Tue Feb 06 10:55:17 2007 +0000
+++ b/user/kvmctl.c	Tue Feb 06 17:05:56 2007 +0200
@@ -235,19 +235,23 @@ static int handle_io(kvm_context_t kvm, 
 	int delta;
 	struct translation_cache tr;
 	int _in = (run->io.direction == KVM_EXIT_IO_IN);
+	int r;
 
 	translation_cache_init(&tr);
 
 	if (run->io.string || _in) {
 		regs.vcpu = run->vcpu;
-		ioctl(kvm->fd, KVM_GET_REGS, &regs);
+		r = ioctl(kvm->fd, KVM_GET_REGS, &regs);
+		if (r == -1) {
+			perror("KVM_GET_REGS");
+			exit(1);
+		}
 	}
 
 	delta = run->io.string_down ? -run->io.size : run->io.size;
 
 	while (more_io(run, first_time)) {
 		void *value_addr;
-		int r;
 
 		if (!run->io.string) {
 			if (_in)
@@ -327,13 +331,25 @@ static int handle_io(kvm_context_t kvm, 
 		}
 		first_time = 0;
 		if (r) {
-			ioctl(kvm->fd, KVM_SET_REGS, &regs);
-			return r;
-		}
-	}
-
-	if (run->io.string || _in)
-		ioctl(kvm->fd, KVM_SET_REGS, &regs);
+			int savedret = r;
+			r = ioctl(kvm->fd, KVM_SET_REGS, &regs);
+			if (r == -1) {
+				perror("KVM_SET_REGS");
+				exit(1);
+			}
+
+			return savedret;
+		}
+	}
+
+	if (run->io.string || _in) {
+		r = ioctl(kvm->fd, KVM_SET_REGS, &regs);
+		if (r == -1) {
+			perror("KVM_SET_REGS");
+			exit(1);
+		}
+	}
+
 	run->emulated = 1;
 	return 0;
 }

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2007-02-06 22:36 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-02-06 18:46 [PATCH] check for KVM_GET/SET_REG ioctl failures Muli Ben-Yehuda
     [not found] ` <20070206184639.GA4292-k73YwwB0fHlWk0Htik3J/w@public.gmane.org>
2007-02-06 19:26   ` Anthony Liguori
     [not found]     ` <45C8D680.3020704-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2007-02-06 19:39       ` Muli Ben-Yehuda
     [not found]         ` <20070206193939.GE4292-k73YwwB0fHlWk0Htik3J/w@public.gmane.org>
2007-02-06 20:59           ` Anthony Liguori
     [not found]             ` <45C8EC44.509-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2007-02-06 21:09               ` Muli Ben-Yehuda
     [not found]                 ` <20070206210926.GI4292-k73YwwB0fHlWk0Htik3J/w@public.gmane.org>
2007-02-06 21:20                   ` Anthony Liguori
2007-02-06 21:35                   ` [PATCH v2] " Muli Ben-Yehuda
2007-02-06 22:36           ` [PATCH] " James Morris

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.