|
|
|
|
|
|
|
|
|
|
xen-changelog
[Xen-changelog] Don't return failure when trying to delete a non-existen
# HG changeset patch
# User cl349@xxxxxxxxxxxxxxxxxxxx
# Node ID 0d8c0db042580571be501be5b59cb5beb8417cef
# Parent 1ad652222dbac6d3485e77822387b51e1c3ea7d8
Don't return failure when trying to delete a non-existent node.
Signed-off-by: Christian Limpach <Christian.Limpach@xxxxxxxxxxxx>
diff -r 1ad652222dba -r 0d8c0db04258 tools/python/xen/lowlevel/xs/xs.c
--- a/tools/python/xen/lowlevel/xs/xs.c Tue Sep 13 21:29:28 2005
+++ b/tools/python/xen/lowlevel/xs/xs.c Tue Sep 13 21:52:24 2005
@@ -264,7 +264,7 @@
Py_BEGIN_ALLOW_THREADS
xsval = xs_rm(xh, path);
Py_END_ALLOW_THREADS
- if (!xsval) {
+ if (!xsval && errno != ENOENT) {
PyErr_SetFromErrno(PyExc_RuntimeError);
goto exit;
}
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|
<Prev in Thread] |
Current Thread |
[Next in Thread> |
- [Xen-changelog] Don't return failure when trying to delete a non-existent node.,
Xen patchbot -unstable <=
|
|
|
|
|