[PATCH] Adding CMReturnDone after CMPI InvokeMethod
by Sharad Mishra
# HG changeset patch
# User Sharad Mishra <snmishra(a)us.ibm.com>
# Date 1282931870 14400
# Node ID 8715fb1b3e6c80018347bca07670517e91276b94
# Parent 72defbefbe6c2abd63e552491c8619989f14e076
Adding CMReturnDone after CMPI InvokeMethod
Signed-off-by: Sharad Mishra <snmishra(a)us.ibm.com>
diff -r 72defbefbe6c -r 8715fb1b3e6c std_indication.c
--- a/std_indication.c Sat Jan 16 09:24:30 2010 -0800
+++ b/std_indication.c Fri Aug 27 13:57:50 2010 -0400
@@ -311,6 +311,7 @@
CMPI_RC_ERR_FAILED,
"Invalid method");
+ CMReturnDone(results);
return s;
}
14 years, 3 months
[PATCH] [TEST] Fixing the VSMS/28*py syntax error
by Deepti B. Kalakeri
# HG changeset patch
# User Deepti B. Kalakeri<deeptik(a)linux.vnet.ibm.com>
# Date 1281098750 25200
# Node ID 96d09403ca73d1416c08f631899a4a99fa680b4d
# Parent 5a0cbe707ba9daa7a98b4db6cebf6f908e6f3412
[TEST] Fixing the VSMS/28*py syntax error.
Tested has been verified with KVM Libvirt-CIM Sources.
Signed-off-by: Deepti B. Kalakeri <deeptik(a)linux.vnet.ibm.com>
diff -r 5a0cbe707ba9 -r 96d09403ca73 suites/libvirt-cim/cimtest/VirtualSystemManagementService/28_definesystem_with_vsi_profile.py
--- a/suites/libvirt-cim/cimtest/VirtualSystemManagementService/28_definesystem_with_vsi_profile.py Thu Jul 29 11:22:22 2010 -0400
+++ b/suites/libvirt-cim/cimtest/VirtualSystemManagementService/28_definesystem_with_vsi_profile.py Fri Aug 06 05:45:50 2010 -0700
@@ -143,7 +143,7 @@
return PASS
- do_main(sup_types)
+@do_main(sup_types)
def main():
options = main.options
server = options.ip
14 years, 4 months
[PATCH] Include stat.h
by Sharad Mishra
# HG changeset patch
# User Sharad Mishra <snmishra(a)us.ibm.com>
# Date 1274737698 25200
# Node ID db79e8c20f6217503c7152186fd37751da9ce9ec
# Parent 19ce54b3c16676a443c5df53562b0d67294dc04c
Include stat.h
This file should be included to support *stat* functions.
Signed-off-by: Sharad Mishra<snmishra(a)us.ibm.com>
diff -r 19ce54b3c166 -r db79e8c20f62 libxkutil/infostore.c
--- a/libxkutil/infostore.c Thu May 06 21:22:31 2010 -0400
+++ b/libxkutil/infostore.c Mon May 24 14:48:18 2010 -0700
@@ -23,6 +23,7 @@
#include <fcntl.h>
#include <unistd.h>
#include <inttypes.h>
+#include <sys/stat.h>
#include <sys/file.h>
#include <string.h>
14 years, 4 months