summaryrefslogtreecommitdiffstats
path: root/src/H5EAiblock.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5EAiblock.c')
-rw-r--r--src/H5EAiblock.c34
1 files changed, 17 insertions, 17 deletions
diff --git a/src/H5EAiblock.c b/src/H5EAiblock.c
index eacb7a9..28ffcc3 100644
--- a/src/H5EAiblock.c
+++ b/src/H5EAiblock.c
@@ -99,11 +99,11 @@ H5EA__iblock_alloc(H5EA_hdr_t *hdr)
/* Allocate memory for the index block */
if (NULL == (iblock = H5FL_CALLOC(H5EA_iblock_t)))
HGOTO_ERROR(H5E_EARRAY, H5E_CANTALLOC, NULL,
- "memory allocation failed for extensible array index block")
+ "memory allocation failed for extensible array index block");
/* Share common array information */
if (H5EA__hdr_incr(hdr) < 0)
- HGOTO_ERROR(H5E_EARRAY, H5E_CANTINC, NULL, "can't increment reference count on shared array header")
+ HGOTO_ERROR(H5E_EARRAY, H5E_CANTINC, NULL, "can't increment reference count on shared array header");
iblock->hdr = hdr;
/* Set non-zero internal fields */
@@ -120,19 +120,19 @@ H5EA__iblock_alloc(H5EA_hdr_t *hdr)
(iblock->elmts = H5FL_BLK_MALLOC(
idx_blk_elmt_buf, (size_t)(hdr->cparam.idx_blk_elmts * hdr->cparam.cls->nat_elmt_size))))
HGOTO_ERROR(H5E_EARRAY, H5E_CANTALLOC, NULL,
- "memory allocation failed for index block data element buffer")
+ "memory allocation failed for index block data element buffer");
/* Allocate buffer for data block addresses in index block */
if (iblock->ndblk_addrs > 0)
if (NULL == (iblock->dblk_addrs = H5FL_SEQ_MALLOC(haddr_t, iblock->ndblk_addrs)))
HGOTO_ERROR(H5E_EARRAY, H5E_CANTALLOC, NULL,
- "memory allocation failed for index block data block addresses")
+ "memory allocation failed for index block data block addresses");
/* Allocate buffer for super block addresses in index block */
if (iblock->nsblk_addrs > 0)
if (NULL == (iblock->sblk_addrs = H5FL_SEQ_MALLOC(haddr_t, iblock->nsblk_addrs)))
HGOTO_ERROR(H5E_EARRAY, H5E_CANTALLOC, NULL,
- "memory allocation failed for index block super block addresses")
+ "memory allocation failed for index block super block addresses");
/* Set the return value */
ret_value = iblock;
@@ -170,7 +170,7 @@ H5EA__iblock_create(H5EA_hdr_t *hdr, hbool_t *stats_changed)
/* Allocate the index block */
if (NULL == (iblock = H5EA__iblock_alloc(hdr)))
HGOTO_ERROR(H5E_EARRAY, H5E_CANTALLOC, HADDR_UNDEF,
- "memory allocation failed for extensible array index block")
+ "memory allocation failed for extensible array index block");
/* Set size of index block on disk */
iblock->size = H5EA_IBLOCK_SIZE(iblock);
@@ -178,7 +178,7 @@ H5EA__iblock_create(H5EA_hdr_t *hdr, hbool_t *stats_changed)
/* Allocate space for the index block on disk */
if (HADDR_UNDEF == (iblock_addr = H5MF_alloc(hdr->f, H5FD_MEM_EARRAY_IBLOCK, (hsize_t)iblock->size)))
HGOTO_ERROR(H5E_EARRAY, H5E_CANTALLOC, HADDR_UNDEF,
- "file allocation failed for extensible array index block")
+ "file allocation failed for extensible array index block");
iblock->addr = iblock_addr;
/* Clear any elements in index block to fill value */
@@ -186,7 +186,7 @@ H5EA__iblock_create(H5EA_hdr_t *hdr, hbool_t *stats_changed)
/* Call the class's 'fill' callback */
if ((hdr->cparam.cls->fill)(iblock->elmts, (size_t)hdr->cparam.idx_blk_elmts) < 0)
HGOTO_ERROR(H5E_EARRAY, H5E_CANTSET, HADDR_UNDEF,
- "can't set extensible array index block elements to class's fill value")
+ "can't set extensible array index block elements to class's fill value");
} /* end if */
/* Reset any data block addresses in the index block */
@@ -208,14 +208,14 @@ H5EA__iblock_create(H5EA_hdr_t *hdr, hbool_t *stats_changed)
/* Cache the new extensible array index block */
if (H5AC_insert_entry(hdr->f, H5AC_EARRAY_IBLOCK, iblock_addr, iblock, H5AC__NO_FLAGS_SET) < 0)
HGOTO_ERROR(H5E_EARRAY, H5E_CANTINSERT, HADDR_UNDEF,
- "can't add extensible array index block to cache")
+ "can't add extensible array index block to cache");
inserted = TRUE;
/* Add index block as child of 'top' proxy */
if (hdr->top_proxy) {
if (H5AC_proxy_entry_add_child(hdr->top_proxy, hdr->f, iblock) < 0)
HGOTO_ERROR(H5E_EARRAY, H5E_CANTSET, HADDR_UNDEF,
- "unable to add extensible array entry as child of array proxy")
+ "unable to add extensible array entry as child of array proxy");
iblock->top_proxy = hdr->top_proxy;
} /* end if */
@@ -286,14 +286,14 @@ H5EA__iblock_protect(H5EA_hdr_t *hdr, unsigned flags)
(iblock = (H5EA_iblock_t *)H5AC_protect(hdr->f, H5AC_EARRAY_IBLOCK, hdr->idx_blk_addr, hdr, flags)))
HGOTO_ERROR(H5E_EARRAY, H5E_CANTPROTECT, NULL,
"unable to protect extensible array index block, address = %llu",
- (unsigned long long)hdr->idx_blk_addr)
+ (unsigned long long)hdr->idx_blk_addr);
/* Create top proxy, if it doesn't exist */
if (hdr->top_proxy && NULL == iblock->top_proxy) {
/* Add index block as child of 'top' proxy */
if (H5AC_proxy_entry_add_child(hdr->top_proxy, hdr->f, iblock) < 0)
HGOTO_ERROR(H5E_EARRAY, H5E_CANTSET, NULL,
- "unable to add extensible array entry as child of array proxy")
+ "unable to add extensible array entry as child of array proxy");
iblock->top_proxy = hdr->top_proxy;
} /* end if */
@@ -337,7 +337,7 @@ H5EA__iblock_unprotect(H5EA_iblock_t *iblock, unsigned cache_flags)
if (H5AC_unprotect(iblock->hdr->f, H5AC_EARRAY_IBLOCK, iblock->addr, iblock, cache_flags) < 0)
HGOTO_ERROR(H5E_EARRAY, H5E_CANTUNPROTECT, FAIL,
"unable to unprotect extensible array index block, address = %llu",
- (unsigned long long)iblock->addr)
+ (unsigned long long)iblock->addr);
done:
FUNC_LEAVE_NOAPI(ret_value)
@@ -368,7 +368,7 @@ H5EA__iblock_delete(H5EA_hdr_t *hdr)
if (NULL == (iblock = H5EA__iblock_protect(hdr, H5AC__NO_FLAGS_SET)))
HGOTO_ERROR(H5E_EARRAY, H5E_CANTPROTECT, FAIL,
"unable to protect extensible array index block, address = %llu",
- (unsigned long long)hdr->idx_blk_addr)
+ (unsigned long long)hdr->idx_blk_addr);
/* Check for index block having data block pointers */
if (iblock->ndblk_addrs > 0) {
@@ -385,7 +385,7 @@ H5EA__iblock_delete(H5EA_hdr_t *hdr)
if (H5EA__dblock_delete(hdr, iblock, iblock->dblk_addrs[u],
hdr->sblk_info[sblk_idx].dblk_nelmts) < 0)
HGOTO_ERROR(H5E_EARRAY, H5E_CANTDELETE, FAIL,
- "unable to delete extensible array data block")
+ "unable to delete extensible array data block");
iblock->dblk_addrs[u] = HADDR_UNDEF;
} /* end if */
@@ -412,7 +412,7 @@ H5EA__iblock_delete(H5EA_hdr_t *hdr)
if (H5EA__sblock_delete(hdr, iblock, iblock->sblk_addrs[u], (unsigned)(u + iblock->nsblks)) <
0)
HGOTO_ERROR(H5E_EARRAY, H5E_CANTDELETE, FAIL,
- "unable to delete extensible array super block")
+ "unable to delete extensible array super block");
iblock->sblk_addrs[u] = HADDR_UNDEF;
}
}
@@ -474,7 +474,7 @@ H5EA__iblock_dest(H5EA_iblock_t *iblock)
/* Decrement reference count on shared info */
if (H5EA__hdr_decr(iblock->hdr) < 0)
HGOTO_ERROR(H5E_EARRAY, H5E_CANTDEC, FAIL,
- "can't decrement reference count on shared array header")
+ "can't decrement reference count on shared array header");
iblock->hdr = NULL;
} /* end if */