mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-18 15:15:56 +08:00
[svn-r17657] Description:
Refactor the v2 B-tree code to use an open & close call internally, in preparation for making those part of the library private APIs for dealing with v2 B-trees. Tested on: FreeBSD/32 6.3 (duty) in debug mode FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x, w/C++ & FORTRAN, w/threadsafe, in debug mode Linux/64-amd64 2.6 (smirom) w/Intel compilers, w/default API=1.6.x, w/C++ & FORTRAN, in production mode Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN, w/szip filter, in production mode Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN, in production mode Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in debug mode Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode Mac OS X/32 10.6.1 (amazon) in debug mode Mac OS X/32 10.6.1 (amazon) w/C++ & FORTRAN, w/threadsafe, in production mode
This commit is contained in:
parent
21518fd05a
commit
3dd3756ea1
327
src/H5B2.c
327
src/H5B2.c
@ -43,6 +43,7 @@
|
||||
#include "H5Eprivate.h" /* Error handling */
|
||||
#include "H5MFprivate.h" /* File memory management */
|
||||
|
||||
|
||||
/****************/
|
||||
/* Local Macros */
|
||||
/****************/
|
||||
@ -61,6 +62,9 @@
|
||||
/********************/
|
||||
/* Local Prototypes */
|
||||
/********************/
|
||||
static H5B2_t *H5B2_open(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type,
|
||||
haddr_t addr, H5AC_protect_t rw);
|
||||
static herr_t H5B2_close(H5B2_t *bt2, hid_t dxpl_id);
|
||||
|
||||
|
||||
/*********************/
|
||||
@ -70,6 +74,7 @@
|
||||
/* Declare a free list to manage the H5B2_t struct */
|
||||
H5FL_DEFINE(H5B2_t);
|
||||
|
||||
|
||||
/*****************************/
|
||||
/* Library Private Variables */
|
||||
/*****************************/
|
||||
@ -130,13 +135,16 @@ H5B2_create(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type, size_t node_size,
|
||||
HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "can't create shared B-tree info")
|
||||
|
||||
/* Allocate space for the header on disk */
|
||||
if(HADDR_UNDEF == (*addr_p = H5MF_alloc(f, H5FD_MEM_BTREE, dxpl_id, (hsize_t)H5B2_HEADER_SIZE(f))))
|
||||
if(HADDR_UNDEF == (bt2->addr = H5MF_alloc(f, H5FD_MEM_BTREE, dxpl_id, (hsize_t)H5B2_HEADER_SIZE(f))))
|
||||
HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "file allocation failed for B-tree header")
|
||||
|
||||
/* Cache the new B-tree node */
|
||||
if(H5AC_set(f, dxpl_id, H5AC_BT2_HDR, *addr_p, bt2, H5AC__NO_FLAGS_SET) < 0)
|
||||
if(H5AC_set(f, dxpl_id, H5AC_BT2_HDR, bt2->addr, bt2, H5AC__NO_FLAGS_SET) < 0)
|
||||
HGOTO_ERROR(H5E_BTREE, H5E_CANTINIT, FAIL, "can't add B-tree header to cache")
|
||||
|
||||
/* Set the B-tree's address to return */
|
||||
*addr_p = bt2->addr;
|
||||
|
||||
done:
|
||||
if(ret_value < 0) {
|
||||
if(bt2)
|
||||
@ -146,6 +154,54 @@ done:
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5B2_create() */
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5B2_open
|
||||
*
|
||||
* Purpose: Opens an existing v2 B-tree in the file.
|
||||
*
|
||||
* Return: Pointer to v2 B-tree wrapper on success
|
||||
* NULL on failure
|
||||
*
|
||||
* Programmer: Quincey Koziol
|
||||
* koziol@hdfgroup.org
|
||||
* Oct 15 2009
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
static H5B2_t *
|
||||
H5B2_open(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type, haddr_t addr,
|
||||
H5AC_protect_t rw)
|
||||
{
|
||||
H5B2_t *bt2 = NULL; /* Pointer to the B-tree header */
|
||||
H5B2_t *ret_value; /* Return value */
|
||||
|
||||
FUNC_ENTER_NOAPI_NOINIT(H5B2_open)
|
||||
|
||||
/* Check arguments. */
|
||||
HDassert(f);
|
||||
HDassert(type);
|
||||
HDassert(H5F_addr_defined(addr));
|
||||
|
||||
/* Look up the B-tree header */
|
||||
if(NULL == (bt2 = (H5B2_t *)H5AC_protect(f, dxpl_id, H5AC_BT2_HDR, addr, type, NULL, rw)))
|
||||
HGOTO_ERROR(H5E_BTREE, H5E_CANTPROTECT, NULL, "unable to load B-tree header")
|
||||
|
||||
/* Set file pointer for this B-tree operation */
|
||||
bt2->f = f;
|
||||
|
||||
/* Set the return value */
|
||||
ret_value = bt2;
|
||||
|
||||
done:
|
||||
if(!ret_value) {
|
||||
if(bt2 && H5B2_close(bt2, dxpl_id) < 0)
|
||||
HDONE_ERROR(H5E_BTREE, H5E_CANTCLOSEOBJ, NULL, "unable to close B-tree")
|
||||
} /* end if */
|
||||
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* H5B2_open() */
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5B2_insert
|
||||
@ -165,8 +221,7 @@ H5B2_insert(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type, haddr_t addr,
|
||||
void *udata)
|
||||
{
|
||||
H5B2_t *bt2 = NULL; /* Pointer to the B-tree header */
|
||||
unsigned bt2_flags = H5AC__NO_FLAGS_SET; /* Metadata cache flags for B-tree header */
|
||||
herr_t ret_value = SUCCEED;
|
||||
herr_t ret_value = SUCCEED; /* Return value */
|
||||
|
||||
FUNC_ENTER_NOAPI(H5B2_insert, FAIL)
|
||||
|
||||
@ -175,12 +230,9 @@ H5B2_insert(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type, haddr_t addr,
|
||||
HDassert(type);
|
||||
HDassert(H5F_addr_defined(addr));
|
||||
|
||||
/* Look up the b-tree header */
|
||||
if(NULL == (bt2 = (H5B2_t *)H5AC_protect(f, dxpl_id, H5AC_BT2_HDR, addr, type, NULL, H5AC_WRITE)))
|
||||
HGOTO_ERROR(H5E_BTREE, H5E_CANTPROTECT, FAIL, "unable to load B-tree header")
|
||||
|
||||
/* Set file pointer for this B-tree operation */
|
||||
bt2->f = f;
|
||||
/* Open the B-tree header */
|
||||
if(NULL == (bt2 = H5B2_open(f, dxpl_id, type, addr, H5AC_WRITE)))
|
||||
HGOTO_ERROR(H5E_BTREE, H5E_CANTOPENOBJ, FAIL, "unable to open B-tree")
|
||||
|
||||
/* Check if the root node is allocated yet */
|
||||
if(!H5F_addr_defined(bt2->root.addr)) {
|
||||
@ -191,13 +243,13 @@ H5B2_insert(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type, haddr_t addr,
|
||||
/* Check if we need to split the root node (equiv. to a 1->2 node split) */
|
||||
else if(bt2->root.node_nrec == bt2->node_info[bt2->depth].split_nrec) {
|
||||
/* Split root node */
|
||||
if(H5B2_split_root(f, dxpl_id, bt2, &bt2_flags) < 0)
|
||||
if(H5B2_split_root(f, dxpl_id, bt2) < 0)
|
||||
HGOTO_ERROR(H5E_BTREE, H5E_CANTSPLIT, FAIL, "unable to split root node")
|
||||
} /* end if */
|
||||
|
||||
/* Attempt to insert record into B-tree */
|
||||
if(bt2->depth > 0) {
|
||||
if(H5B2_insert_internal(f, dxpl_id, bt2, bt2->depth, &bt2_flags, &bt2->root, udata) < 0)
|
||||
if(H5B2_insert_internal(f, dxpl_id, bt2, bt2->depth, NULL, &bt2->root, udata) < 0)
|
||||
HGOTO_ERROR(H5E_BTREE, H5E_CANTINSERT, FAIL, "unable to insert record into B-tree internal node")
|
||||
} /* end if */
|
||||
else {
|
||||
@ -206,15 +258,13 @@ H5B2_insert(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type, haddr_t addr,
|
||||
} /* end else */
|
||||
|
||||
/* Mark B-tree header as dirty */
|
||||
bt2_flags |= H5AC__DIRTIED_FLAG;
|
||||
if(H5B2_hdr_dirty(bt2) < 0)
|
||||
HGOTO_ERROR(H5E_BTREE, H5E_CANTMARKDIRTY, FAIL, "unable to mark B-tree header dirty")
|
||||
|
||||
done:
|
||||
/* Release the B-tree header info */
|
||||
if(bt2) {
|
||||
bt2->f = NULL;
|
||||
if(H5AC_unprotect(f, dxpl_id, H5AC_BT2_HDR, addr, bt2, bt2_flags) < 0)
|
||||
HDONE_ERROR(H5E_BTREE, H5E_CANTUNPROTECT, FAIL, "unable to release B-tree header info")
|
||||
} /* end if */
|
||||
/* Close the B-tree */
|
||||
if(bt2 && H5B2_close(bt2, dxpl_id) < 0)
|
||||
HDONE_ERROR(H5E_BTREE, H5E_CANTCLOSEOBJ, FAIL, "unable to close B-tree")
|
||||
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* H5B2_insert() */
|
||||
@ -252,12 +302,9 @@ H5B2_iterate(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type, haddr_t addr,
|
||||
HDassert(H5F_addr_defined(addr));
|
||||
HDassert(op);
|
||||
|
||||
/* Look up the B-tree header */
|
||||
if(NULL == (bt2 = (H5B2_t *)H5AC_protect(f, dxpl_id, H5AC_BT2_HDR, addr, type, NULL, H5AC_READ)))
|
||||
HGOTO_ERROR(H5E_BTREE, H5E_CANTPROTECT, FAIL, "unable to load B-tree header")
|
||||
|
||||
/* Set file pointer for this B-tree operation */
|
||||
bt2->f = f;
|
||||
/* Open the B-tree header */
|
||||
if(NULL == (bt2 = H5B2_open(f, dxpl_id, type, addr, H5AC_READ)))
|
||||
HGOTO_ERROR(H5E_BTREE, H5E_CANTOPENOBJ, FAIL, "unable to open B-tree")
|
||||
|
||||
/* Iterate through records */
|
||||
if(bt2->root.node_nrec > 0) {
|
||||
@ -267,12 +314,9 @@ H5B2_iterate(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type, haddr_t addr,
|
||||
} /* end if */
|
||||
|
||||
done:
|
||||
/* Release header */
|
||||
if(bt2) {
|
||||
bt2->f = NULL;
|
||||
if(H5AC_unprotect(f, dxpl_id, H5AC_BT2_HDR, addr, bt2, H5AC__NO_FLAGS_SET) < 0)
|
||||
HDONE_ERROR(H5E_BTREE, H5E_CANTUNPROTECT, FAIL, "unable to release B-tree header info")
|
||||
} /* end if */
|
||||
/* Close the B-tree */
|
||||
if(bt2 && H5B2_close(bt2, dxpl_id) < 0)
|
||||
HDONE_ERROR(H5E_BTREE, H5E_CANTCLOSEOBJ, FAIL, "unable to close B-tree")
|
||||
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* H5B2_iterate() */
|
||||
@ -319,12 +363,9 @@ H5B2_find(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type, haddr_t addr,
|
||||
HDassert(type);
|
||||
HDassert(H5F_addr_defined(addr));
|
||||
|
||||
/* Look up the B-tree header */
|
||||
if(NULL == (bt2 = (H5B2_t *)H5AC_protect(f, dxpl_id, H5AC_BT2_HDR, addr, type, NULL, H5AC_READ)))
|
||||
HGOTO_ERROR(H5E_BTREE, H5E_CANTPROTECT, FAIL, "unable to load B-tree header")
|
||||
|
||||
/* Set file pointer for this B-tree operation */
|
||||
bt2->f = f;
|
||||
/* Open the B-tree header */
|
||||
if(NULL == (bt2 = H5B2_open(f, dxpl_id, type, addr, H5AC_READ)))
|
||||
HGOTO_ERROR(H5E_BTREE, H5E_CANTOPENOBJ, FAIL, "unable to open B-tree")
|
||||
|
||||
/* Make copy of the root node pointer to start search with */
|
||||
curr_node_ptr = bt2->root;
|
||||
@ -419,12 +460,9 @@ H5B2_find(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type, haddr_t addr,
|
||||
} /* end block */
|
||||
|
||||
done:
|
||||
/* Release header */
|
||||
if(bt2) {
|
||||
bt2->f = NULL;
|
||||
if(H5AC_unprotect(f, dxpl_id, H5AC_BT2_HDR, addr, bt2, H5AC__NO_FLAGS_SET) < 0)
|
||||
HDONE_ERROR(H5E_BTREE, H5E_CANTUNPROTECT, FAIL, "unable to release B-tree header info")
|
||||
} /* end if */
|
||||
/* Close the B-tree */
|
||||
if(bt2 && H5B2_close(bt2, dxpl_id) < 0)
|
||||
HDONE_ERROR(H5E_BTREE, H5E_CANTCLOSEOBJ, FAIL, "unable to close B-tree")
|
||||
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* H5B2_find() */
|
||||
@ -465,12 +503,9 @@ H5B2_index(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type, haddr_t addr,
|
||||
HDassert(H5F_addr_defined(addr));
|
||||
HDassert(op);
|
||||
|
||||
/* Look up the B-tree header */
|
||||
if(NULL == (bt2 = (H5B2_t *)H5AC_protect(f, dxpl_id, H5AC_BT2_HDR, addr, type, NULL, H5AC_READ)))
|
||||
HGOTO_ERROR(H5E_BTREE, H5E_CANTPROTECT, FAIL, "unable to load B-tree header")
|
||||
|
||||
/* Set file pointer for this B-tree operation */
|
||||
bt2->f = f;
|
||||
/* Open the B-tree header */
|
||||
if(NULL == (bt2 = H5B2_open(f, dxpl_id, type, addr, H5AC_READ)))
|
||||
HGOTO_ERROR(H5E_BTREE, H5E_CANTOPENOBJ, FAIL, "unable to open B-tree")
|
||||
|
||||
/* Make copy of the root node pointer to start search with */
|
||||
curr_node_ptr = bt2->root;
|
||||
@ -590,12 +625,9 @@ H5B2_index(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type, haddr_t addr,
|
||||
} /* end block */
|
||||
|
||||
done:
|
||||
/* Release header */
|
||||
if(bt2) {
|
||||
bt2->f = NULL;
|
||||
if(H5AC_unprotect(f, dxpl_id, H5AC_BT2_HDR, addr, bt2, H5AC__NO_FLAGS_SET) < 0)
|
||||
HDONE_ERROR(H5E_BTREE, H5E_CANTUNPROTECT, FAIL, "unable to release B-tree header info")
|
||||
} /* end if */
|
||||
/* Close the B-tree */
|
||||
if(bt2 && H5B2_close(bt2, dxpl_id) < 0)
|
||||
HDONE_ERROR(H5E_BTREE, H5E_CANTCLOSEOBJ, FAIL, "unable to close B-tree")
|
||||
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* H5B2_index() */
|
||||
@ -619,7 +651,6 @@ H5B2_remove(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type, haddr_t addr,
|
||||
void *udata, H5B2_remove_t op, void *op_data)
|
||||
{
|
||||
H5B2_t *bt2 = NULL; /* Pointer to the B-tree header */
|
||||
unsigned bt2_flags = H5AC__NO_FLAGS_SET; /* Flags for unprotecting B-tree header */
|
||||
herr_t ret_value = SUCCEED; /* Return value */
|
||||
|
||||
FUNC_ENTER_NOAPI(H5B2_remove, FAIL)
|
||||
@ -629,12 +660,9 @@ H5B2_remove(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type, haddr_t addr,
|
||||
HDassert(type);
|
||||
HDassert(H5F_addr_defined(addr));
|
||||
|
||||
/* Look up the b-tree header */
|
||||
if(NULL == (bt2 = (H5B2_t *)H5AC_protect(f, dxpl_id, H5AC_BT2_HDR, addr, type, NULL, H5AC_WRITE)))
|
||||
HGOTO_ERROR(H5E_BTREE, H5E_CANTPROTECT, FAIL, "unable to load B-tree header")
|
||||
|
||||
/* Set file pointer for this B-tree operation */
|
||||
bt2->f = f;
|
||||
/* Open the B-tree header */
|
||||
if(NULL == (bt2 = H5B2_open(f, dxpl_id, type, addr, H5AC_WRITE)))
|
||||
HGOTO_ERROR(H5E_BTREE, H5E_CANTOPENOBJ, FAIL, "unable to open B-tree")
|
||||
|
||||
/* Check for empty B-tree */
|
||||
if(0 == bt2->root.all_nrec)
|
||||
@ -645,7 +673,7 @@ H5B2_remove(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type, haddr_t addr,
|
||||
hbool_t depth_decreased = FALSE; /* Flag to indicate whether the depth of the B-tree decreased */
|
||||
|
||||
if(H5B2_remove_internal(f, dxpl_id, bt2, &depth_decreased, NULL, bt2->depth,
|
||||
&(bt2->cache_info), &bt2_flags, &bt2->root, udata, op, op_data) < 0)
|
||||
&(bt2->cache_info), NULL, &bt2->root, udata, op, op_data) < 0)
|
||||
HGOTO_ERROR(H5E_BTREE, H5E_CANTDELETE, FAIL, "unable to remove record from B-tree internal node")
|
||||
|
||||
/* Check for decreasing the depth of the B-tree */
|
||||
@ -669,16 +697,14 @@ H5B2_remove(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type, haddr_t addr,
|
||||
/* Decrement # of records in B-tree */
|
||||
bt2->root.all_nrec--;
|
||||
|
||||
/* Mark parent node as dirty */
|
||||
bt2_flags |= H5AC__DIRTIED_FLAG;
|
||||
/* Mark B-tree header as dirty */
|
||||
if(H5B2_hdr_dirty(bt2) < 0)
|
||||
HGOTO_ERROR(H5E_BTREE, H5E_CANTMARKDIRTY, FAIL, "unable to mark B-tree header dirty")
|
||||
|
||||
done:
|
||||
/* Release the B-tree header info */
|
||||
if(bt2) {
|
||||
bt2->f = NULL;
|
||||
if(H5AC_unprotect(f, dxpl_id, H5AC_BT2_HDR, addr, bt2, bt2_flags) < 0)
|
||||
HDONE_ERROR(H5E_BTREE, H5E_CANTUNPROTECT, FAIL, "unable to release B-tree header info")
|
||||
} /* end if */
|
||||
/* Close the B-tree */
|
||||
if(bt2 && H5B2_close(bt2, dxpl_id) < 0)
|
||||
HDONE_ERROR(H5E_BTREE, H5E_CANTCLOSEOBJ, FAIL, "unable to close B-tree")
|
||||
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* H5B2_remove() */
|
||||
@ -703,7 +729,6 @@ H5B2_remove_by_idx(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type,
|
||||
void *op_data)
|
||||
{
|
||||
H5B2_t *bt2 = NULL; /* Pointer to the B-tree header */
|
||||
unsigned bt2_flags = H5AC__NO_FLAGS_SET; /* Flags for unprotecting B-tree header */
|
||||
herr_t ret_value = SUCCEED; /* Return value */
|
||||
|
||||
FUNC_ENTER_NOAPI(H5B2_remove_by_idx, FAIL)
|
||||
@ -713,12 +738,9 @@ H5B2_remove_by_idx(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type,
|
||||
HDassert(type);
|
||||
HDassert(H5F_addr_defined(addr));
|
||||
|
||||
/* Look up the b-tree header */
|
||||
if(NULL == (bt2 = (H5B2_t *)H5AC_protect(f, dxpl_id, H5AC_BT2_HDR, addr, type, NULL, H5AC_WRITE)))
|
||||
HGOTO_ERROR(H5E_BTREE, H5E_CANTPROTECT, FAIL, "unable to load B-tree header")
|
||||
|
||||
/* Set file pointer for this B-tree operation */
|
||||
bt2->f = f;
|
||||
/* Open the B-tree header */
|
||||
if(NULL == (bt2 = H5B2_open(f, dxpl_id, type, addr, H5AC_WRITE)))
|
||||
HGOTO_ERROR(H5E_BTREE, H5E_CANTOPENOBJ, FAIL, "unable to open B-tree")
|
||||
|
||||
/* Check for empty B-tree */
|
||||
if(0 == bt2->root.all_nrec)
|
||||
@ -737,7 +759,7 @@ H5B2_remove_by_idx(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type,
|
||||
hbool_t depth_decreased = FALSE; /* Flag to indicate whether the depth of the B-tree decreased */
|
||||
|
||||
if(H5B2_remove_internal_by_idx(f, dxpl_id, bt2, &depth_decreased, NULL, bt2->depth,
|
||||
&(bt2->cache_info), &bt2_flags, &bt2->root, idx, op, op_data) < 0)
|
||||
&(bt2->cache_info), NULL, &bt2->root, idx, op, op_data) < 0)
|
||||
HGOTO_ERROR(H5E_BTREE, H5E_CANTDELETE, FAIL, "unable to remove record from B-tree internal node")
|
||||
|
||||
/* Check for decreasing the depth of the B-tree */
|
||||
@ -761,16 +783,14 @@ H5B2_remove_by_idx(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type,
|
||||
/* Decrement # of records in B-tree */
|
||||
bt2->root.all_nrec--;
|
||||
|
||||
/* Mark parent node as dirty */
|
||||
bt2_flags |= H5AC__DIRTIED_FLAG;
|
||||
/* Mark B-tree header as dirty */
|
||||
if(H5B2_hdr_dirty(bt2) < 0)
|
||||
HGOTO_ERROR(H5E_BTREE, H5E_CANTMARKDIRTY, FAIL, "unable to mark B-tree header dirty")
|
||||
|
||||
done:
|
||||
/* Release the B-tree header info */
|
||||
if(bt2) {
|
||||
bt2->f = NULL;
|
||||
if(H5AC_unprotect(f, dxpl_id, H5AC_BT2_HDR, addr, bt2, bt2_flags) < 0)
|
||||
HDONE_ERROR(H5E_BTREE, H5E_CANTUNPROTECT, FAIL, "unable to release B-tree header info")
|
||||
} /* end if */
|
||||
/* Close the B-tree */
|
||||
if(bt2 && H5B2_close(bt2, dxpl_id) < 0)
|
||||
HDONE_ERROR(H5E_BTREE, H5E_CANTCLOSEOBJ, FAIL, "unable to close B-tree")
|
||||
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* H5B2_remove_by_idx() */
|
||||
@ -804,23 +824,17 @@ H5B2_get_nrec(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type, haddr_t addr,
|
||||
HDassert(H5F_addr_defined(addr));
|
||||
HDassert(nrec);
|
||||
|
||||
/* Look up the B-tree header */
|
||||
if(NULL == (bt2 = (H5B2_t *)H5AC_protect(f, dxpl_id, H5AC_BT2_HDR, addr, type, NULL, H5AC_READ)))
|
||||
HGOTO_ERROR(H5E_BTREE, H5E_CANTPROTECT, FAIL, "unable to load B-tree header")
|
||||
|
||||
/* Set file pointer for this B-tree operation */
|
||||
bt2->f = f;
|
||||
/* Open the B-tree header */
|
||||
if(NULL == (bt2 = H5B2_open(f, dxpl_id, type, addr, H5AC_READ)))
|
||||
HGOTO_ERROR(H5E_BTREE, H5E_CANTOPENOBJ, FAIL, "unable to open B-tree")
|
||||
|
||||
/* Get B-tree number of records */
|
||||
*nrec = bt2->root.all_nrec;
|
||||
|
||||
done:
|
||||
/* Release B-tree header node */
|
||||
if(bt2) {
|
||||
bt2->f = NULL;
|
||||
if(H5AC_unprotect(f, dxpl_id, H5AC_BT2_HDR, addr, bt2, H5AC__NO_FLAGS_SET) < 0)
|
||||
HDONE_ERROR(H5E_BTREE, H5E_CANTUNPROTECT, FAIL, "unable to release B-tree header info")
|
||||
} /* end if */
|
||||
/* Close the B-tree */
|
||||
if(bt2 && H5B2_close(bt2, dxpl_id) < 0)
|
||||
HDONE_ERROR(H5E_BTREE, H5E_CANTCLOSEOBJ, FAIL, "unable to close B-tree")
|
||||
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* H5B2_get_nrec() */
|
||||
@ -866,12 +880,9 @@ H5B2_neighbor(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type, haddr_t addr,
|
||||
HDassert(H5F_addr_defined(addr));
|
||||
HDassert(op);
|
||||
|
||||
/* Look up the B-tree header */
|
||||
if(NULL == (bt2 = (H5B2_t *)H5AC_protect(f, dxpl_id, H5AC_BT2_HDR, addr, type, NULL, H5AC_READ)))
|
||||
HGOTO_ERROR(H5E_BTREE, H5E_CANTPROTECT, FAIL, "unable to load B-tree header")
|
||||
|
||||
/* Set file pointer for this B-tree operation */
|
||||
bt2->f = f;
|
||||
/* Open the B-tree header */
|
||||
if(NULL == (bt2 = H5B2_open(f, dxpl_id, type, addr, H5AC_READ)))
|
||||
HGOTO_ERROR(H5E_BTREE, H5E_CANTOPENOBJ, FAIL, "unable to open B-tree")
|
||||
|
||||
/* Check for empty tree */
|
||||
if(!H5F_addr_defined(bt2->root.addr))
|
||||
@ -888,12 +899,9 @@ H5B2_neighbor(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type, haddr_t addr,
|
||||
} /* end else */
|
||||
|
||||
done:
|
||||
/* Release the B-tree header info */
|
||||
if(bt2) {
|
||||
bt2->f = NULL;
|
||||
if(H5AC_unprotect(f, dxpl_id, H5AC_BT2_HDR, addr, bt2, H5AC__NO_FLAGS_SET) < 0)
|
||||
HDONE_ERROR(H5E_BTREE, H5E_CANTUNPROTECT, FAIL, "unable to release B-tree header info")
|
||||
} /* end if */
|
||||
/* Close the B-tree */
|
||||
if(bt2 && H5B2_close(bt2, dxpl_id) < 0)
|
||||
HDONE_ERROR(H5E_BTREE, H5E_CANTCLOSEOBJ, FAIL, "unable to close B-tree")
|
||||
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* H5B2_neighbor() */
|
||||
@ -935,25 +943,23 @@ H5B2_delete(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type, haddr_t addr,
|
||||
HDassert(type);
|
||||
HDassert(H5F_addr_defined(addr));
|
||||
|
||||
/* Look up the B-tree header */
|
||||
if(NULL == (bt2 = (H5B2_t *)H5AC_protect(f, dxpl_id, H5AC_BT2_HDR, addr, type, NULL, H5AC_WRITE)))
|
||||
HGOTO_ERROR(H5E_BTREE, H5E_CANTPROTECT, FAIL, "unable to load B-tree header")
|
||||
|
||||
/* Set file pointer for this B-tree operation */
|
||||
bt2->f = f;
|
||||
/* Open the B-tree header */
|
||||
if(NULL == (bt2 = H5B2_open(f, dxpl_id, type, addr, H5AC_WRITE)))
|
||||
HGOTO_ERROR(H5E_BTREE, H5E_CANTOPENOBJ, FAIL, "unable to open B-tree")
|
||||
|
||||
/* Delete all nodes in B-tree */
|
||||
if(H5F_addr_defined(bt2->root.addr))
|
||||
if(H5B2_delete_node(f, dxpl_id, bt2, bt2->depth, &bt2->root, op, op_data) < 0)
|
||||
HGOTO_ERROR(H5E_BTREE, H5E_CANTDELETE, FAIL, "unable to delete B-tree nodes")
|
||||
|
||||
/* Mark B-tree header for deletion */
|
||||
if(H5B2_hdr_delete(bt2) < 0)
|
||||
HGOTO_ERROR(H5E_BTREE, H5E_CANTDELETE, FAIL, "unable to mark B-tree header for deletion")
|
||||
|
||||
done:
|
||||
/* Release the B-tree header info */
|
||||
if(bt2) {
|
||||
bt2->f = NULL;
|
||||
if(H5AC_unprotect(f, dxpl_id, H5AC_BT2_HDR, addr, bt2, H5AC__DELETED_FLAG | H5AC__FREE_FILE_SPACE_FLAG) < 0)
|
||||
HDONE_ERROR(H5E_BTREE, H5E_CANTUNPROTECT, FAIL, "unable to delete B-tree header info")
|
||||
} /* end if */
|
||||
/* Close the B-tree */
|
||||
if(bt2 && H5B2_close(bt2, dxpl_id) < 0)
|
||||
HDONE_ERROR(H5E_BTREE, H5E_CANTCLOSEOBJ, FAIL, "unable to close B-tree")
|
||||
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* H5B2_delete() */
|
||||
@ -998,12 +1004,9 @@ H5B2_modify(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type, haddr_t addr,
|
||||
HDassert(H5F_addr_defined(addr));
|
||||
HDassert(op);
|
||||
|
||||
/* Look up the B-tree header */
|
||||
if(NULL == (bt2 = (H5B2_t *)H5AC_protect(f, dxpl_id, H5AC_BT2_HDR, addr, type, NULL, H5AC_READ)))
|
||||
HGOTO_ERROR(H5E_BTREE, H5E_CANTPROTECT, FAIL, "unable to load B-tree header")
|
||||
|
||||
/* Set file pointer for this B-tree operation */
|
||||
bt2->f = f;
|
||||
/* Open the B-tree header */
|
||||
if(NULL == (bt2 = H5B2_open(f, dxpl_id, type, addr, H5AC_READ)))
|
||||
HGOTO_ERROR(H5E_BTREE, H5E_CANTOPENOBJ, FAIL, "unable to open B-tree")
|
||||
|
||||
/* Make copy of the root node pointer to start search with */
|
||||
curr_node_ptr = bt2->root;
|
||||
@ -1121,12 +1124,9 @@ H5B2_modify(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type, haddr_t addr,
|
||||
}
|
||||
|
||||
done:
|
||||
/* Release header */
|
||||
if(bt2) {
|
||||
bt2->f = NULL;
|
||||
if(H5AC_unprotect(f, dxpl_id, H5AC_BT2_HDR, addr, bt2, H5AC__NO_FLAGS_SET) < 0)
|
||||
HDONE_ERROR(H5E_BTREE, H5E_CANTUNPROTECT, FAIL, "unable to release B-tree header info")
|
||||
} /* end if */
|
||||
/* Close the B-tree */
|
||||
if(bt2 && H5B2_close(bt2, dxpl_id) < 0)
|
||||
HDONE_ERROR(H5E_BTREE, H5E_CANTCLOSEOBJ, FAIL, "unable to close B-tree")
|
||||
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* H5B2_modify() */
|
||||
@ -1159,12 +1159,9 @@ H5B2_iterate_size(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type, haddr_t add
|
||||
HDassert(H5F_addr_defined(addr));
|
||||
HDassert(btree_size);
|
||||
|
||||
/* Look up the B-tree header */
|
||||
if(NULL == (bt2 = (H5B2_t *)H5AC_protect(f, dxpl_id, H5AC_BT2_HDR, addr, type, NULL, H5AC_READ)))
|
||||
HGOTO_ERROR(H5E_BTREE, H5E_CANTPROTECT, FAIL, "unable to load B-tree header")
|
||||
|
||||
/* Set file pointer for this B-tree operation */
|
||||
bt2->f = f;
|
||||
/* Open the B-tree header */
|
||||
if(NULL == (bt2 = H5B2_open(f, dxpl_id, type, addr, H5AC_READ)))
|
||||
HGOTO_ERROR(H5E_BTREE, H5E_CANTOPENOBJ, FAIL, "unable to open B-tree")
|
||||
|
||||
/* Add size of header to B-tree metadata total */
|
||||
*btree_size += H5B2_HEADER_SIZE(f);
|
||||
@ -1181,13 +1178,49 @@ H5B2_iterate_size(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type, haddr_t add
|
||||
} /* end if */
|
||||
|
||||
done:
|
||||
/* Release header */
|
||||
if(bt2) {
|
||||
bt2->f = NULL;
|
||||
if(H5AC_unprotect(f, dxpl_id, H5AC_BT2_HDR, addr, bt2, H5AC__NO_FLAGS_SET) < 0)
|
||||
HDONE_ERROR(H5E_BTREE, H5E_CANTUNPROTECT, FAIL, "unable to release B-tree header info")
|
||||
} /* end if */
|
||||
/* Close the B-tree */
|
||||
if(bt2 && H5B2_close(bt2, dxpl_id) < 0)
|
||||
HDONE_ERROR(H5E_BTREE, H5E_CANTCLOSEOBJ, FAIL, "unable to close B-tree")
|
||||
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* H5B2_iterate_size() */
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5B2_close
|
||||
*
|
||||
* Purpose: Close a v2 B-tree
|
||||
*
|
||||
* Return: Non-negative on success/Negative on failure
|
||||
*
|
||||
* Programmer: Quincey Koziol
|
||||
* koziol@hdfgroup.org
|
||||
* Oct 15 2009
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
static herr_t
|
||||
H5B2_close(H5B2_t *bt2, hid_t dxpl_id)
|
||||
{
|
||||
unsigned bt2_flags = H5AC__NO_FLAGS_SET; /* Metadata cache flags for unprotecting header */
|
||||
herr_t ret_value = SUCCEED; /* Return value */
|
||||
|
||||
FUNC_ENTER_NOAPI_NOINIT(H5B2_close)
|
||||
|
||||
/* Check arguments. */
|
||||
HDassert(bt2);
|
||||
HDassert(bt2->f);
|
||||
HDassert(H5F_addr_defined(bt2->addr));
|
||||
|
||||
/* Check if we are supposed to delete the header */
|
||||
if(bt2->pending_delete)
|
||||
bt2_flags = H5AC__DIRTIED_FLAG | H5AC__DELETED_FLAG | H5AC__FREE_FILE_SPACE_FLAG;
|
||||
|
||||
/* Release the B-tree header info */
|
||||
if(H5AC_unprotect(bt2->f, dxpl_id, H5AC_BT2_HDR, bt2->addr, bt2, bt2_flags) < 0)
|
||||
HGOTO_ERROR(H5E_BTREE, H5E_CANTUNPROTECT, FAIL, "unable to release B-tree header")
|
||||
|
||||
done:
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* H5B2_close() */
|
||||
|
||||
|
@ -241,6 +241,9 @@ H5B2_cache_hdr_load(H5F_t *f, hid_t dxpl_id, haddr_t addr, const void *_type, vo
|
||||
if(H5B2_hdr_init(f, bt2, type, depth, node_size, rrec_size, split_percent, merge_percent) < 0)
|
||||
HGOTO_ERROR(H5E_BTREE, H5E_CANTINIT, NULL, "can't initialize B-tree header info")
|
||||
|
||||
/* Set the B-tree header's address */
|
||||
bt2->addr = addr;
|
||||
|
||||
/* Set return value */
|
||||
ret_value = bt2;
|
||||
|
||||
|
@ -118,6 +118,7 @@ H5B2_hdr_init(H5F_t *f, H5B2_t *bt2, const H5B2_class_t *type,
|
||||
/* Initialize basic information */
|
||||
bt2->f = f;
|
||||
bt2->rc = 0;
|
||||
bt2->pending_delete = FALSE;
|
||||
|
||||
/* Assign dynamic information */
|
||||
bt2->depth = depth;
|
||||
@ -361,3 +362,31 @@ done:
|
||||
FUNC_LEAVE_NOAPI(ret_value)
|
||||
} /* end H5B2_hdr_dirty() */
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: H5B2_hdr_delete
|
||||
*
|
||||
* Purpose: Mark B-tree header for deletion
|
||||
*
|
||||
* Return: Non-negative on success/Negative on failure
|
||||
*
|
||||
* Programmer: Quincey Koziol
|
||||
* koziol@hdfgroup.org
|
||||
* Oct 15 2009
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
herr_t
|
||||
H5B2_hdr_delete(H5B2_t *bt2)
|
||||
{
|
||||
FUNC_ENTER_NOAPI_NOINIT_NOFUNC(H5B2_hdr_delete)
|
||||
|
||||
/* Sanity check */
|
||||
HDassert(bt2);
|
||||
|
||||
/* Mark B-tree header as pending deletion */
|
||||
bt2->pending_delete = TRUE;
|
||||
|
||||
FUNC_LEAVE_NOAPI(SUCCEED)
|
||||
} /* end H5B2_hdr_delete() */
|
||||
|
||||
|
@ -190,7 +190,6 @@ H5B2_split1(H5F_t *f, hid_t dxpl_id, unsigned depth, H5B2_node_ptr_t *curr_node_
|
||||
FUNC_ENTER_NOAPI_NOINIT(H5B2_split1)
|
||||
|
||||
HDassert(f);
|
||||
HDassert(parent_cache_info_flags_ptr);
|
||||
HDassert(internal);
|
||||
HDassert(internal_flags_ptr);
|
||||
|
||||
@ -317,8 +316,9 @@ H5B2_split1(H5F_t *f, hid_t dxpl_id, unsigned depth, H5B2_node_ptr_t *curr_node_
|
||||
/* Update grandparent info */
|
||||
curr_node_ptr->node_nrec++;
|
||||
|
||||
/* Mark grandparent as dirty */
|
||||
*parent_cache_info_flags_ptr |= H5AC__DIRTIED_FLAG;
|
||||
/* Mark grandparent as dirty, if given */
|
||||
if(parent_cache_info_flags_ptr)
|
||||
*parent_cache_info_flags_ptr |= H5AC__DIRTIED_FLAG;
|
||||
|
||||
#ifdef H5B2_DEBUG
|
||||
H5B2_assert_internal((hsize_t)0, bt2, internal);
|
||||
@ -349,7 +349,6 @@ done:
|
||||
* Purpose: Split the root node
|
||||
*
|
||||
* Return: Success: Non-negative
|
||||
*
|
||||
* Failure: Negative
|
||||
*
|
||||
* Programmer: Quincey Koziol
|
||||
@ -359,7 +358,7 @@ done:
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
herr_t
|
||||
H5B2_split_root(H5F_t *f, hid_t dxpl_id, H5B2_t *bt2, unsigned *bt2_flags_ptr)
|
||||
H5B2_split_root(H5F_t *f, hid_t dxpl_id, H5B2_t *bt2)
|
||||
{
|
||||
H5B2_internal_t *new_root; /* Pointer to new root node */
|
||||
unsigned new_root_flags = H5AC__NO_FLAGS_SET; /* Cache flags for new root node */
|
||||
@ -372,7 +371,6 @@ H5B2_split_root(H5F_t *f, hid_t dxpl_id, H5B2_t *bt2, unsigned *bt2_flags_ptr)
|
||||
|
||||
HDassert(f);
|
||||
HDassert(bt2);
|
||||
HDassert(bt2_flags_ptr);
|
||||
|
||||
/* Update depth of B-tree */
|
||||
bt2->depth++;
|
||||
@ -411,7 +409,7 @@ H5B2_split_root(H5F_t *f, hid_t dxpl_id, H5B2_t *bt2, unsigned *bt2_flags_ptr)
|
||||
new_root->node_ptrs[0] = old_root_ptr;
|
||||
|
||||
/* Split original root node */
|
||||
if(H5B2_split1(f, dxpl_id, bt2->depth, &(bt2->root), bt2_flags_ptr, new_root, &new_root_flags, 0) < 0)
|
||||
if(H5B2_split1(f, dxpl_id, bt2->depth, &(bt2->root), NULL, new_root, &new_root_flags, 0) < 0)
|
||||
HGOTO_ERROR(H5E_BTREE, H5E_CANTSPLIT, FAIL, "unable to split old root node")
|
||||
|
||||
/* Release new root node (marked as dirty) */
|
||||
@ -1050,7 +1048,6 @@ H5B2_merge2(H5F_t *f, hid_t dxpl_id, unsigned depth,
|
||||
|
||||
HDassert(f);
|
||||
HDassert(curr_node_ptr);
|
||||
HDassert(parent_cache_info_flags_ptr);
|
||||
HDassert(internal);
|
||||
HDassert(internal_flags_ptr);
|
||||
|
||||
@ -1145,8 +1142,9 @@ H5B2_merge2(H5F_t *f, hid_t dxpl_id, unsigned depth,
|
||||
/* Update grandparent info */
|
||||
curr_node_ptr->node_nrec--;
|
||||
|
||||
/* Mark grandparent as dirty */
|
||||
*parent_cache_info_flags_ptr |= H5AC__DIRTIED_FLAG;
|
||||
/* Mark grandparent as dirty, if given */
|
||||
if(parent_cache_info_flags_ptr)
|
||||
*parent_cache_info_flags_ptr |= H5AC__DIRTIED_FLAG;
|
||||
|
||||
#ifdef H5B2_DEBUG
|
||||
H5B2_assert_internal((hsize_t)0, bt2, internal);
|
||||
@ -1208,7 +1206,6 @@ H5B2_merge3(H5F_t *f, hid_t dxpl_id, unsigned depth,
|
||||
|
||||
HDassert(f);
|
||||
HDassert(curr_node_ptr);
|
||||
HDassert(parent_cache_info_flags_ptr);
|
||||
HDassert(internal);
|
||||
HDassert(internal_flags_ptr);
|
||||
|
||||
@ -1361,8 +1358,9 @@ H5B2_merge3(H5F_t *f, hid_t dxpl_id, unsigned depth,
|
||||
/* Update grandparent info */
|
||||
curr_node_ptr->node_nrec--;
|
||||
|
||||
/* Mark grandparent as dirty */
|
||||
*parent_cache_info_flags_ptr |= H5AC__DIRTIED_FLAG;
|
||||
/* Mark grandparent as dirty, if given */
|
||||
if(parent_cache_info_flags_ptr)
|
||||
*parent_cache_info_flags_ptr |= H5AC__DIRTIED_FLAG;
|
||||
|
||||
#ifdef H5B2_DEBUG
|
||||
H5B2_assert_internal((hsize_t)0, bt2, internal);
|
||||
@ -1591,7 +1589,6 @@ H5B2_insert_internal(H5F_t *f, hid_t dxpl_id, H5B2_t *bt2, unsigned depth,
|
||||
HDassert(f);
|
||||
HDassert(bt2);
|
||||
HDassert(depth > 0);
|
||||
HDassert(parent_cache_info_flags_ptr);
|
||||
HDassert(curr_node_ptr);
|
||||
HDassert(H5F_addr_defined(curr_node_ptr->addr));
|
||||
|
||||
@ -2119,7 +2116,6 @@ H5B2_remove_internal(H5F_t *f, hid_t dxpl_id, H5B2_t *bt2,
|
||||
HDassert(bt2);
|
||||
HDassert(depth > 0);
|
||||
HDassert(parent_cache_info);
|
||||
HDassert(parent_cache_info_flags_ptr);
|
||||
HDassert(curr_node_ptr);
|
||||
HDassert(H5F_addr_defined(curr_node_ptr->addr));
|
||||
|
||||
@ -2402,7 +2398,6 @@ H5B2_remove_internal_by_idx(H5F_t *f, hid_t dxpl_id, H5B2_t *bt2,
|
||||
HDassert(bt2);
|
||||
HDassert(depth > 0);
|
||||
HDassert(parent_cache_info);
|
||||
HDassert(parent_cache_info_flags_ptr);
|
||||
HDassert(curr_node_ptr);
|
||||
HDassert(H5F_addr_defined(curr_node_ptr->addr));
|
||||
|
||||
|
@ -156,7 +156,9 @@ typedef struct H5B2_t {
|
||||
|
||||
/* Shared internal data structures (not stored) */
|
||||
H5F_t *f; /* Pointer to the file that the B-tree is in */
|
||||
haddr_t addr; /* Address of B-tree header in the file */
|
||||
size_t rc; /* Reference count of nodes using this header */
|
||||
hbool_t pending_delete; /* B-tree is pending deletion */
|
||||
const H5B2_class_t *type; /* Type of tree */
|
||||
uint8_t *page; /* Common disk page for I/O */
|
||||
size_t *nat_off; /* Array of offsets of native records */
|
||||
@ -239,6 +241,7 @@ H5_DLLVAR const H5B2_class_t H5B2_TEST[1];
|
||||
H5_DLL herr_t H5B2_hdr_incr(H5B2_t *bt2);
|
||||
H5_DLL herr_t H5B2_hdr_decr(H5B2_t *bt2);
|
||||
H5_DLL herr_t H5B2_hdr_dirty(H5B2_t *bt2);
|
||||
H5_DLL herr_t H5B2_hdr_delete(H5B2_t *bt2);
|
||||
H5_DLL herr_t H5B2_hdr_init(H5F_t *f, H5B2_t *bt2, const H5B2_class_t *type,
|
||||
unsigned depth, size_t node_size, size_t rrec_size,
|
||||
unsigned split_percent, unsigned merge_percent);
|
||||
@ -249,8 +252,7 @@ H5_DLL H5B2_internal_t *H5B2_protect_internal(H5F_t *f, hid_t dxpl_id,
|
||||
H5B2_t *bt2, haddr_t addr, unsigned nrec, unsigned depth, H5AC_protect_t rw);
|
||||
|
||||
/* Routines for allocating nodes */
|
||||
H5_DLL herr_t H5B2_split_root(H5F_t *f, hid_t dxpl_id, H5B2_t *bt2,
|
||||
unsigned *bt2_flags_ptr);
|
||||
H5_DLL herr_t H5B2_split_root(H5F_t *f, hid_t dxpl_id, H5B2_t *bt2);
|
||||
H5_DLL herr_t H5B2_create_leaf(H5F_t *f, hid_t dxpl_id, H5B2_t *bt2,
|
||||
H5B2_node_ptr_t *node_ptr);
|
||||
|
||||
|
@ -110,13 +110,13 @@ typedef struct H5B2_stat_t {
|
||||
/* Library-private Variables */
|
||||
/*****************************/
|
||||
|
||||
|
||||
/***************************************/
|
||||
/* Library-private Function Prototypes */
|
||||
/***************************************/
|
||||
H5_DLL herr_t H5B2_create(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type,
|
||||
size_t node_size, size_t rrec_size,
|
||||
unsigned split_percent, unsigned merge_percent,
|
||||
haddr_t *addr_p);
|
||||
size_t node_size, size_t rrec_size, unsigned split_percent,
|
||||
unsigned merge_percent, haddr_t *addr_p);
|
||||
H5_DLL herr_t H5B2_insert(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type,
|
||||
haddr_t addr, void *udata);
|
||||
H5_DLL herr_t H5B2_iterate(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type,
|
||||
|
@ -245,7 +245,7 @@ test_insert_basic(hid_t fapl)
|
||||
* Test v2 B-tree creation
|
||||
*/
|
||||
TESTING("B-tree creation");
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
if(!H5F_addr_defined(bt2_addr))
|
||||
FAIL_STACK_ERROR
|
||||
@ -436,7 +436,7 @@ test_insert_split_root(hid_t fapl)
|
||||
/*
|
||||
* Test v2 B-tree creation
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Insert records to fill root leaf node */
|
||||
@ -610,7 +610,7 @@ test_insert_level1_2leaf_redistrib(hid_t fapl)
|
||||
/*
|
||||
* Create v2 B-tree
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Insert enough records to force root to split into 2 leaves */
|
||||
@ -663,7 +663,7 @@ test_insert_level1_2leaf_redistrib(hid_t fapl)
|
||||
/*
|
||||
* Create v2 B-tree
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Insert enough records to force root to split into 2 leaves */
|
||||
@ -770,7 +770,7 @@ test_insert_level1_side_split(hid_t fapl)
|
||||
/*
|
||||
* Create v2 B-tree
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Insert enough records to force root to split into 2 leaves */
|
||||
@ -828,7 +828,7 @@ test_insert_level1_side_split(hid_t fapl)
|
||||
/*
|
||||
* Create v2 B-tree
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Insert enough records to force root to split into 2 leaves */
|
||||
@ -942,7 +942,7 @@ test_insert_level1_3leaf_redistrib(hid_t fapl)
|
||||
/*
|
||||
* Create v2 B-tree
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Insert enough records to force root to split into 2 leaves */
|
||||
@ -1090,7 +1090,7 @@ test_insert_level1_middle_split(hid_t fapl)
|
||||
/*
|
||||
* Create v2 B-tree
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Insert enough records to force root to split into 2 leaves */
|
||||
@ -1215,7 +1215,7 @@ test_insert_make_level2(hid_t fapl)
|
||||
/*
|
||||
* Create v2 B-tree
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Insert enough records to force root to split into 2 internal nodes */
|
||||
@ -1398,7 +1398,7 @@ test_insert_level2_leaf_redistrib(hid_t fapl)
|
||||
/*
|
||||
* Create v2 B-tree
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Insert enough records to force root to split into 2 internal nodes */
|
||||
@ -1663,7 +1663,7 @@ test_insert_level2_leaf_split(hid_t fapl)
|
||||
/*
|
||||
* Create v2 B-tree
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Insert enough records to force root to split into 2 internal nodes */
|
||||
@ -1939,7 +1939,7 @@ test_insert_level2_2internal_redistrib(hid_t fapl)
|
||||
/*
|
||||
* Create v2 B-tree
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Insert enough records to force root to split into 2 internal nodes */
|
||||
@ -2132,7 +2132,7 @@ test_insert_level2_2internal_split(hid_t fapl)
|
||||
/*
|
||||
* Create v2 B-tree
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Insert enough records to force root to split into 2 internal nodes */
|
||||
@ -2335,7 +2335,7 @@ test_insert_level2_3internal_redistrib(hid_t fapl)
|
||||
/*
|
||||
* Create v2 B-tree
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Insert enough records to force root to split into 3 internal nodes */
|
||||
@ -2537,7 +2537,7 @@ test_insert_level2_3internal_split(hid_t fapl)
|
||||
/*
|
||||
* Create v2 B-tree
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Insert enough records to force root to split into 3 internal nodes */
|
||||
@ -2771,7 +2771,7 @@ HDfprintf(stderr,"curr_time=%lu\n",(unsigned long)curr_time);
|
||||
/*
|
||||
* Create v2 B-tree
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Insert random records */
|
||||
@ -2946,7 +2946,7 @@ test_remove_basic(hid_t fapl)
|
||||
/*
|
||||
* Test v2 B-tree creation
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Query the number of records in the B-tree */
|
||||
@ -3233,7 +3233,7 @@ test_remove_level1_noredistrib(hid_t fapl)
|
||||
/*
|
||||
* Test v2 B-tree creation
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Create level-1 B-tree with 3 leaves */
|
||||
@ -3455,7 +3455,7 @@ test_remove_level1_redistrib(hid_t fapl)
|
||||
/*
|
||||
* Test v2 B-tree creation
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Create level-1 B-tree with 3 leaves */
|
||||
@ -3655,7 +3655,7 @@ test_remove_level1_2leaf_merge(hid_t fapl)
|
||||
/*
|
||||
* Test v2 B-tree creation
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Create level-1 B-tree with 3 leaves */
|
||||
@ -3839,7 +3839,7 @@ test_remove_level1_3leaf_merge(hid_t fapl)
|
||||
/*
|
||||
* v2 B-tree creation
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Create level-1 B-tree with 3 leaves */
|
||||
@ -3967,7 +3967,7 @@ test_remove_level1_promote(hid_t fapl)
|
||||
/*
|
||||
* v2 B-tree creation
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Create level-1 B-tree with 5 leaves */
|
||||
@ -4211,7 +4211,7 @@ test_remove_level1_promote_2leaf_redistrib(hid_t fapl)
|
||||
/*
|
||||
* v2 B-tree creation
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Create level-1 B-tree with 3 leaves */
|
||||
@ -4364,7 +4364,7 @@ test_remove_level1_promote_3leaf_redistrib(hid_t fapl)
|
||||
/*
|
||||
* v2 B-tree creation
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Create level-1 B-tree with 3 leaves */
|
||||
@ -4517,7 +4517,7 @@ test_remove_level1_promote_2leaf_merge(hid_t fapl)
|
||||
/*
|
||||
* v2 B-tree creation
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Create level-1 B-tree with 3 leaves */
|
||||
@ -4665,7 +4665,7 @@ test_remove_level1_promote_3leaf_merge(hid_t fapl)
|
||||
/*
|
||||
* v2 B-tree creation
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Create level-2 B-tree with 3 leaves */
|
||||
@ -4812,7 +4812,7 @@ test_remove_level1_collapse(hid_t fapl)
|
||||
/*
|
||||
* v2 B-tree creation
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Create level-1 B-tree with 2 leaves */
|
||||
@ -4952,7 +4952,7 @@ test_remove_level2_promote(hid_t fapl)
|
||||
/*
|
||||
* v2 B-tree creation
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Create level-2 B-tree with 3 internal nodes */
|
||||
@ -5243,7 +5243,7 @@ test_remove_level2_promote_2internal_redistrib(hid_t fapl)
|
||||
/*
|
||||
* v2 B-tree creation
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Create level-2 B-tree with 3 internal nodes */
|
||||
@ -5396,7 +5396,7 @@ test_remove_level2_promote_3internal_redistrib(hid_t fapl)
|
||||
/*
|
||||
* v2 B-tree creation
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Create level-2 B-tree with 3 internal nodes */
|
||||
@ -5549,7 +5549,7 @@ test_remove_level2_promote_2internal_merge(hid_t fapl)
|
||||
/*
|
||||
* v2 B-tree creation
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Create level-2 B-tree with 3 internal nodes */
|
||||
@ -5705,7 +5705,7 @@ test_remove_level2_promote_3internal_merge(hid_t fapl)
|
||||
/*
|
||||
* v2 B-tree creation
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Create level-2 B-tree with 3 internal nodes */
|
||||
@ -5861,7 +5861,7 @@ test_remove_level2_2internal_merge_left(hid_t fapl)
|
||||
/*
|
||||
* v2 B-tree creation
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Create level-2 B-tree with 3 internal nodes */
|
||||
@ -5989,7 +5989,7 @@ test_remove_level2_2internal_merge_right(hid_t fapl)
|
||||
/*
|
||||
* v2 B-tree creation
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Create level-2 B-tree with 3 internal nodes */
|
||||
@ -6117,7 +6117,7 @@ test_remove_level2_3internal_merge(hid_t fapl)
|
||||
/*
|
||||
* v2 B-tree creation
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Create level-2 B-tree with 3 internal nodes */
|
||||
@ -6246,7 +6246,7 @@ test_remove_level2_collapse_right(hid_t fapl)
|
||||
/*
|
||||
* v2 B-tree creation
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Create level-2 B-tree with 3 internal nodes */
|
||||
@ -6362,7 +6362,7 @@ gen_l4_btree2(const char *filename, hid_t fapl, haddr_t *bt2_addr,
|
||||
/*
|
||||
* Create v2 B-tree
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Insert random records */
|
||||
@ -6844,7 +6844,7 @@ test_find_neighbor(hid_t fapl)
|
||||
/*
|
||||
* Create v2 B-tree
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Insert records */
|
||||
@ -7068,7 +7068,7 @@ test_delete(hid_t fapl)
|
||||
/*
|
||||
* Create v2 B-tree
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/*
|
||||
@ -7105,7 +7105,7 @@ test_delete(hid_t fapl)
|
||||
/*
|
||||
* Create v2 B-tree
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Insert records */
|
||||
@ -7155,7 +7155,7 @@ test_delete(hid_t fapl)
|
||||
/*
|
||||
* Create v2 B-tree
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Insert records */
|
||||
@ -7205,7 +7205,7 @@ test_delete(hid_t fapl)
|
||||
/*
|
||||
* Create v2 B-tree
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Insert records */
|
||||
@ -7299,7 +7299,7 @@ test_modify(hid_t fapl)
|
||||
/*
|
||||
* Create v2 B-tree
|
||||
*/
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, 512, 8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
if(H5B2_create(f, H5P_DATASET_XFER_DEFAULT, H5B2_TEST, (size_t)512, (size_t)8, 100, 40, &bt2_addr/*out*/) < 0)
|
||||
FAIL_STACK_ERROR
|
||||
|
||||
/* Create level-2 B-tree with 3 internal nodes */
|
||||
|
Loading…
Reference in New Issue
Block a user