All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Propagate kernel errors in libxc
@ 2007-11-12 16:18 Ben Guthro
  0 siblings, 0 replies; only message in thread
From: Ben Guthro @ 2007-11-12 16:18 UTC (permalink / raw)
  To: xen-devel; +Cc: Josh Nicholas


[-- Attachment #1.1: Type: text/plain, Size: 760 bytes --]

When the hypervisor returns and error through the kernel
or when simply when the kernel returns an error, the ioctl()
call in userspace returns -1 with the error value in errno.

This lib_xc was dropping this useful errno value by only
returning the -1.  This change continues to propagate the
-errno value up the call chain.

The impetus for this change was xc_domain_getinfo() previously
it was not possible to distinguish the difference between an
error and the domainID (or greater) not existing in the hypervisor.
Now callers can compare the return value against -ESRCH to distinguish
the difference between errors and the domain not existing.

Signed-off-by: Josh Nicholas <jnicholas@virtualiron.com>
Signed-off-by: Ben Guthro <bguthro@virtualiron.com>


[-- Attachment #1.2: Type: text/html, Size: 1105 bytes --]

[-- Attachment #2: xen-propagate-kern-errs.patch --]
[-- Type: text/x-patch, Size: 629 bytes --]

diff -r fcd625c4f896 tools/libxc/xc_linux.c
--- a/tools/libxc/xc_linux.c	Mon Nov 05 10:39:07 2007 -0500
+++ b/tools/libxc/xc_linux.c	Mon Nov 05 10:39:07 2007 -0500
@@ -153,7 +153,12 @@ int xc_map_foreign_ranges(int xc_handle,
 
 static int do_privcmd(int xc_handle, unsigned int cmd, unsigned long data)
 {
-    return ioctl(xc_handle, cmd, data);
+    int ret = ioctl(xc_handle, cmd, data);
+	if (ret >= 0)
+		return ret;
+	if (errno) // kernel errors are passed through errno with ioctl() ret == -1
+		return (errno > 0) ? -errno : errno;
+	return ret;
 }
 
 int do_xen_hypercall(int xc_handle, privcmd_hypercall_t *hypercall)

[-- Attachment #3: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2007-11-12 16:18 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-12 16:18 [PATCH] Propagate kernel errors in libxc Ben Guthro

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.