]> xenbits.xensource.com Git - people/vhanquez/xen-unstable.git/commitdiff
tools/xenpaging: fix return value from xc_mem_paging_flush_ioemu_cache
authorIan Jackson <Ian.Jackson@eu.citrix.com>
Tue, 11 Jan 2011 16:48:09 +0000 (16:48 +0000)
committerIan Jackson <Ian.Jackson@eu.citrix.com>
Tue, 11 Jan 2011 16:48:09 +0000 (16:48 +0000)
While using xenpaging, "Error flushing ioemu cache" message will be
shown even if the "flush-cache" command is sent to xenstore correctly.
That is because xenpaging assumes xc_mem_paging_flush_ioemu_cache()
returns non-zero value when the operation fails.  But
xc_mem_paging_flush_ioemu_cache() returns the return value from
xs_write() which is zero on error.

So, we should invert the return value from xs_write() and return -1 on
error, or 0 on success, like other xc_ functions.

Signed-off-by: Han-Lin Li <Han-Lin.Li@itri.org.tw>
Author: Olaf Hering <olaf@aepfle.de>
Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com>
Committed-by: Ian Jackson <ian.jackson@eu.citrix.com>
tools/xenpaging/xc.c

index d1a62ff77f96aac1535f7fb54beb66eeb07d86c1..d1dcb6847f310314f0480c4677959030aa1d3d84 100644 (file)
@@ -62,7 +62,7 @@ int xc_mem_paging_flush_ioemu_cache(domid_t domain_id)
 
     xs_daemon_close(xsh);
 
-    return rc;
+    return rc ? 0 : -1;
 }
 
 int xc_wait_for_event_or_timeout(xc_interface *xch, xc_evtchn *xce, unsigned long ms)