summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2014-02-07 13:14:13 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2014-02-07 13:14:13 (GMT)
commitd70c5343bd8dd7a980de5784a1ecfa62501bc9c7 (patch)
tree84c938e04d97e1b2398d9af54f4057a046c4404b /src
parent0e7f7a3da10e0702478f0c2755ccebd029bd585b (diff)
downloadhdf5-d70c5343bd8dd7a980de5784a1ecfa62501bc9c7.zip
hdf5-d70c5343bd8dd7a980de5784a1ecfa62501bc9c7.tar.gz
hdf5-d70c5343bd8dd7a980de5784a1ecfa62501bc9c7.tar.bz2
[svn-r24696] update hints name that IOD changed.
Diffstat (limited to 'src')
-rw-r--r--src/H5VLiod_attr.c4
-rw-r--r--src/H5VLiod_dset.c4
-rw-r--r--src/H5VLiod_dtype.c4
-rw-r--r--src/H5VLiod_file.c6
-rw-r--r--src/H5VLiod_group.c4
-rw-r--r--src/H5VLiod_map.c4
6 files changed, 13 insertions, 13 deletions
diff --git a/src/H5VLiod_attr.c b/src/H5VLiod_attr.c
index 4ed180a..108b178 100644
--- a/src/H5VLiod_attr.c
+++ b/src/H5VLiod_attr.c
@@ -85,8 +85,8 @@ H5VL_iod_server_attr_create_cb(AXE_engine_t UNUSED axe_engine,
if(cs_scope & H5_CHECKSUM_IOD) {
obj_create_hint = (iod_hint_list_t *)malloc(sizeof(iod_hint_list_t) + sizeof(iod_hint_t));
obj_create_hint->num_hint = 1;
- obj_create_hint->hint[0].key = "iod_obj_enable_checksum";
- obj_create_hint->hint[0].value = "iod_obj_enable_checksum";
+ obj_create_hint->hint[0].key = "iod_hint_obj_enable_cksum";
+ obj_create_hint->hint[0].value = "iod_hint_obj_enable_cksum";
}
if(loc_handle.rd_oh.cookie == IOD_OH_UNDEFINED) {
diff --git a/src/H5VLiod_dset.c b/src/H5VLiod_dset.c
index ca00ef9..9d30335 100644
--- a/src/H5VLiod_dset.c
+++ b/src/H5VLiod_dset.c
@@ -177,8 +177,8 @@ H5VL_iod_server_dset_create_cb(AXE_engine_t UNUSED axe_engine,
if((cs_scope & H5_CHECKSUM_IOD) && enable_checksum) {
obj_create_hint = (iod_hint_list_t *)malloc(sizeof(iod_hint_list_t) + sizeof(iod_hint_t));
obj_create_hint->num_hint = 1;
- obj_create_hint->hint[0].key = "iod_obj_enable_checksum";
- obj_create_hint->hint[0].value = "iod_obj_enable_checksum";
+ obj_create_hint->hint[0].key = "iod_hint_obj_enable_cksum";
+ obj_create_hint->hint[0].value = "iod_hint_obj_enable_cksum";
}
dt_class = H5Tget_class(input->type_id);
diff --git a/src/H5VLiod_dtype.c b/src/H5VLiod_dtype.c
index d1f4c1a..2f73dce 100644
--- a/src/H5VLiod_dtype.c
+++ b/src/H5VLiod_dtype.c
@@ -89,8 +89,8 @@ H5VL_iod_server_dtype_commit_cb(AXE_engine_t UNUSED axe_engine,
if((cs_scope & H5_CHECKSUM_IOD) && enable_checksum) {
obj_create_hint = (iod_hint_list_t *)malloc(sizeof(iod_hint_list_t) + sizeof(iod_hint_t));
obj_create_hint->num_hint = 1;
- obj_create_hint->hint[0].key = "iod_obj_enable_checksum";
- obj_create_hint->hint[0].value = "iod_obj_enable_checksum";
+ obj_create_hint->hint[0].key = "iod_hint_obj_enable_cksum";
+ obj_create_hint->hint[0].value = "iod_hint_obj_enable_cksum";
}
/* the traversal will retrieve the location where the datatype needs
diff --git a/src/H5VLiod_file.c b/src/H5VLiod_file.c
index 0ed1804..da8272d 100644
--- a/src/H5VLiod_file.c
+++ b/src/H5VLiod_file.c
@@ -93,15 +93,15 @@ H5VL_iod_server_file_create_cb(AXE_engine_t UNUSED axe_engine,
if(cs_scope & H5_CHECKSUM_IOD) {
con_open_hint = (iod_hint_list_t *)malloc(sizeof(iod_hint_list_t) + sizeof(iod_hint_t));
con_open_hint->num_hint = 1;
- con_open_hint->hint[0].key = "iod_con_scratch_cksum";
+ con_open_hint->hint[0].key = "iod_hint_co_scratch_cksum";
}
/* root group integrity */
if((cs_scope & H5_CHECKSUM_IOD) && enable_checksum) {
obj_create_hint = (iod_hint_list_t *)malloc(sizeof(iod_hint_list_t) + sizeof(iod_hint_t));
obj_create_hint->num_hint = 1;
- obj_create_hint->hint[0].key = "iod_obj_enable_checksum";
- obj_create_hint->hint[0].value = "iod_obj_enable_checksum";
+ obj_create_hint->hint[0].key = "iod_hint_obj_enable_cksum";
+ obj_create_hint->hint[0].value = "iod_hint_obj_enable_cksum";
}
/* Create the Container */
diff --git a/src/H5VLiod_group.c b/src/H5VLiod_group.c
index 7fe7515..8bea6c7 100644
--- a/src/H5VLiod_group.c
+++ b/src/H5VLiod_group.c
@@ -86,8 +86,8 @@ H5VL_iod_server_group_create_cb(AXE_engine_t UNUSED axe_engine,
if((cs_scope & H5_CHECKSUM_IOD) && enable_checksum) {
obj_create_hint = (iod_hint_list_t *)malloc(sizeof(iod_hint_list_t) + sizeof(iod_hint_t));
obj_create_hint->num_hint = 1;
- obj_create_hint->hint[0].key = "iod_obj_enable_checksum";
- obj_create_hint->hint[0].value = "iod_obj_enable_checksum";
+ obj_create_hint->hint[0].key = "iod_hint_obj_enable_cksum";
+ obj_create_hint->hint[0].value = "iod_hint_obj_enable_cksum";
}
/* the traversal will retrieve the location where the group needs
diff --git a/src/H5VLiod_map.c b/src/H5VLiod_map.c
index 7b801f6..55b921d 100644
--- a/src/H5VLiod_map.c
+++ b/src/H5VLiod_map.c
@@ -91,8 +91,8 @@ H5VL_iod_server_map_create_cb(AXE_engine_t UNUSED axe_engine,
if((cs_scope & H5_CHECKSUM_IOD) && enable_checksum) {
obj_create_hint = (iod_hint_list_t *)malloc(sizeof(iod_hint_list_t) + sizeof(iod_hint_t));
obj_create_hint->num_hint = 1;
- obj_create_hint->hint[0].key = "iod_obj_enable_checksum";
- obj_create_hint->hint[0].value = "iod_obj_enable_checksum";
+ obj_create_hint->hint[0].key = "iod_hint_obj_enable_cksum";
+ obj_create_hint->hint[0].value = "iod_hint_obj_enable_cksum";
}
/* the traversal will retrieve the location where the map needs