Changeset 8397 for branches/cu-security-branch/src/io/trove/trove-mgmt.c
- Timestamp:
- 06/18/10 20:02:50 (3 years ago)
- Location:
- branches/cu-security-branch
- Files:
-
- 3 modified
-
. (modified) (1 prop)
-
src/io/trove (modified) (1 prop)
-
src/io/trove/trove-mgmt.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/cu-security-branch
- Property svn:ignore
-
old new 3 3 aclocal.m4 4 4 autom4te.cache 5 config.status6 Makefile7 pvfs2-config.h8 module.mk
-
- Property svn:ignore
-
branches/cu-security-branch/src/io/trove
- Property svn:ignore deleted
-
branches/cu-security-branch/src/io/trove/trove-mgmt.c
r7941 r8397 88 88 int trove_initialize(TROVE_method_id method_id, 89 89 TROVE_method_callback method_callback, 90 char *stoname, 90 char *data_path, 91 char *meta_path, 91 92 TROVE_ds_flags flags) 92 93 { … … 120 121 */ 121 122 ret = mgmt_method_table[method_id]->initialize( 122 stoname, flags);123 data_path, meta_path, flags); 123 124 if (ret > -1) 124 125 { … … 155 156 156 157 int trove_storage_create(TROVE_method_id method_id, 157 char *stoname, 158 char *data_path, 159 char *meta_path, 158 160 void *user_ptr, 159 161 TROVE_op_id *out_op_id_p) 160 162 { 161 163 int ret = mgmt_method_table[method_id]->storage_create( 162 stoname, user_ptr, out_op_id_p);164 data_path, meta_path, user_ptr, out_op_id_p); 163 165 164 166 return ((ret < 0) ? ret : 1); … … 167 169 168 170 int trove_storage_remove(TROVE_method_id method_id, 169 char *stoname, 171 char *data_path, 172 char *meta_path, 170 173 void *user_ptr, 171 174 TROVE_op_id *out_op_id_p) 172 175 { 173 176 int ret = mgmt_method_table[method_id]->storage_remove( 174 stoname, user_ptr, out_op_id_p);177 data_path, meta_path, user_ptr, out_op_id_p); 175 178 176 179 return ((ret < 0) ? ret : 1);
