[svn-r24709] rename H5V to H5VM since H5V is needed in the fastforward project for
view objects. The addition of view objects in the fastforward project is expected to be brough into the trunk sometimes in the future, which is why we need to make this change. Tested Manually on Jam and Ostrich. Tested with h5commitest - Koala with intel compilers failed, but nothing had to do with those changes. error on Koala: error while loading shared libraries: libirng.so
This commit is contained in:
@@ -35,7 +35,7 @@
|
||||
#include "H5Eprivate.h" /* Error handling */
|
||||
#include "H5FSpkg.h" /* File free space */
|
||||
#include "H5MFprivate.h" /* File memory management */
|
||||
#include "H5Vprivate.h" /* Vectors and arrays */
|
||||
#include "H5VMprivate.h" /* Vectors and arrays */
|
||||
|
||||
|
||||
/****************/
|
||||
@@ -143,10 +143,10 @@ HDfprintf(stderr, "%s: fspace->addr = %a\n", FUNC, fspace->addr);
|
||||
HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, NULL, "memory allocation failed")
|
||||
|
||||
/* Set non-zero values */
|
||||
sinfo->nbins = H5V_log2_gen(fspace->max_sect_size);
|
||||
sinfo->nbins = H5VM_log2_gen(fspace->max_sect_size);
|
||||
sinfo->sect_prefix_size = (size_t)H5FS_SINFO_PREFIX_SIZE(f);
|
||||
sinfo->sect_off_size = (fspace->max_sect_addr + 7) / 8;
|
||||
sinfo->sect_len_size = H5V_limit_enc_size((uint64_t)fspace->max_sect_size);
|
||||
sinfo->sect_len_size = H5VM_limit_enc_size((uint64_t)fspace->max_sect_size);
|
||||
#ifdef H5FS_SINFO_DEBUG
|
||||
HDfprintf(stderr, "%s: fspace->max_sect_size = %Hu\n", FUNC, fspace->max_sect_size);
|
||||
HDfprintf(stderr, "%s: fspace->max_sect_addr = %u\n", FUNC, fspace->max_sect_addr);
|
||||
@@ -499,7 +499,7 @@ HDfprintf(stderr, "%s: fspace->sinfo->serial_size_count = %Zu\n", "H5FS_sect_ser
|
||||
HDfprintf(stderr, "%s: fspace->sinfo->serial_size_count = %Zu\n", "H5FS_sect_serialize_size", fspace->sinfo->serial_size_count);
|
||||
HDfprintf(stderr, "%s: fspace->serial_sect_count = %Hu\n", "H5FS_sect_serialize_size", fspace->serial_sect_count);
|
||||
#endif /* QAK */
|
||||
sect_buf_size += fspace->sinfo->serial_size_count * H5V_limit_enc_size((uint64_t)fspace->serial_sect_count);
|
||||
sect_buf_size += fspace->sinfo->serial_size_count * H5VM_limit_enc_size((uint64_t)fspace->serial_sect_count);
|
||||
|
||||
/* Size for each differently sized serializable section */
|
||||
sect_buf_size += fspace->sinfo->serial_size_count * fspace->sinfo->sect_len_size;
|
||||
@@ -765,7 +765,7 @@ H5FS_sect_unlink_size(H5FS_sinfo_t *sinfo, const H5FS_section_class_t *cls,
|
||||
HDassert(cls);
|
||||
|
||||
/* Determine correct bin which holds items of at least the section's size */
|
||||
bin = H5V_log2_gen(sect->size);
|
||||
bin = H5VM_log2_gen(sect->size);
|
||||
HDassert(bin < sinfo->nbins);
|
||||
if(sinfo->bins[bin].bin_list == NULL)
|
||||
HGOTO_ERROR(H5E_FSPACE, H5E_NOTFOUND, FAIL, "node's bin is empty?")
|
||||
@@ -966,7 +966,7 @@ HDfprintf(stderr, "%s: sect->size = %Hu, sect->addr = %a\n", FUNC, sect->size, s
|
||||
HDassert(sect->size);
|
||||
|
||||
/* Determine correct bin which holds items of the section's size */
|
||||
bin = H5V_log2_gen(sect->size);
|
||||
bin = H5VM_log2_gen(sect->size);
|
||||
HDassert(bin < sinfo->nbins);
|
||||
if(sinfo->bins[bin].bin_list == NULL) {
|
||||
if(NULL == (sinfo->bins[bin].bin_list = H5SL_create(H5SL_TYPE_HSIZE, NULL)))
|
||||
@@ -1687,7 +1687,7 @@ H5FS_sect_find_node(H5FS_t *fspace, hsize_t request, H5FS_section_info_t **node)
|
||||
HDassert(node);
|
||||
|
||||
/* Determine correct bin which holds items of at least the section's size */
|
||||
bin = H5V_log2_gen(request);
|
||||
bin = H5VM_log2_gen(request);
|
||||
HDassert(bin < fspace->sinfo->nbins);
|
||||
#ifdef QAK
|
||||
HDfprintf(stderr, "%s: fspace->sinfo->nbins = %u\n", FUNC, fspace->sinfo->nbins);
|
||||
@@ -2121,7 +2121,7 @@ HDfprintf(stderr, "%s: to_ghost = %u\n", FUNC, to_ghost);
|
||||
HDassert(fspace->sinfo->bins);
|
||||
|
||||
/* Determine correct bin which holds items of at least the section's size */
|
||||
bin = H5V_log2_gen(sect->size);
|
||||
bin = H5VM_log2_gen(sect->size);
|
||||
HDassert(bin < fspace->sinfo->nbins);
|
||||
HDassert(fspace->sinfo->bins[bin].bin_list);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user