All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] minios: have xenbus_printf return errors
@ 2008-02-26 15:17 Samuel Thibault
  0 siblings, 0 replies; only message in thread
From: Samuel Thibault @ 2008-02-26 15:17 UTC (permalink / raw)
  To: xen-devel

minios: have xenbus_printf return the error returned by xenbus_write

Signed-off-by: Samuel Thibault <samuel.thibault@eu.citrix.com>

diff -r 2a8eaba24bf0 extras/mini-os/xenbus/xenbus.c
--- a/extras/mini-os/xenbus/xenbus.c	Tue Feb 26 15:11:51 2008 +0000
+++ b/extras/mini-os/xenbus/xenbus.c	Tue Feb 26 15:15:25 2008 +0000
@@ -637,9 +637,7 @@ char* xenbus_printf(xenbus_transaction_t
     va_start(args, fmt);
     vsprintf(val, fmt, args);
     va_end(args);
-    xenbus_write(xbt,fullpath,val);
-
-    return NULL;
+    return xenbus_write(xbt,fullpath,val);
 }
 
 static void do_ls_test(const char *pre)

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

only message in thread, other threads:[~2008-02-26 15:17 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-26 15:17 [PATCH] minios: have xenbus_printf return errors Samuel Thibault

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.