2006-01-29 10:34:14 +08:00
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
2007-02-07 22:56:24 +08:00
|
|
|
* Copyright by The HDF Group. *
|
2006-01-29 10:34:14 +08:00
|
|
|
* Copyright by the Board of Trustees of the University of Illinois. *
|
|
|
|
* All rights reserved. *
|
|
|
|
* *
|
|
|
|
* This file is part of HDF5. The full HDF5 copyright notice, including *
|
|
|
|
* terms governing use, modification, and redistribution, is contained in *
|
2017-04-18 03:32:16 +08:00
|
|
|
* the COPYING file, which can be found at the root of the source code *
|
2021-02-17 22:52:04 +08:00
|
|
|
* distribution tree, or in https://www.hdfgroup.org/licenses. *
|
2017-04-18 03:32:16 +08:00
|
|
|
* If you do not have access to either file, you may request a copy from *
|
|
|
|
* help@hdfgroup.org. *
|
2006-01-29 10:34:14 +08:00
|
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
|
|
|
|
/* Programmer: John Mainzer
|
|
|
|
* 10/27/05
|
|
|
|
*
|
2019-12-12 05:58:59 +08:00
|
|
|
* This file contains common #defines, type definitions, and
|
|
|
|
* externs for tests of the cache implemented in H5C.c
|
2006-01-29 10:34:14 +08:00
|
|
|
*/
|
2021-03-04 20:29:10 +08:00
|
|
|
#ifndef CACHE_COMMON_H
|
|
|
|
#define CACHE_COMMON_H
|
2006-01-29 10:34:14 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
#define H5C_FRIEND /*suppress error about including H5Cpkg */
|
|
|
|
#define H5F_FRIEND /*suppress error about including H5Fpkg */
|
2006-01-29 10:34:14 +08:00
|
|
|
|
[svn-r16587] Description:
Add infrastructure & tests for "flush dependencies" in metadata cache,
which allow relationships that specify which order to flush metadata entries in.
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/C++ & FORTRAN, w/threadsafe,
in debug 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 production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
Mac OS X/32 10.5.6 (amazon) in debug mode
Mac OS X/32 10.5.6 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
2009-03-18 01:08:12 +08:00
|
|
|
/* Include library header files */
|
|
|
|
#include "H5ACprivate.h"
|
2020-01-30 01:43:55 +08:00
|
|
|
#include "H5MFprivate.h"
|
2006-01-29 10:34:14 +08:00
|
|
|
#include "H5Cpkg.h"
|
[svn-r16587] Description:
Add infrastructure & tests for "flush dependencies" in metadata cache,
which allow relationships that specify which order to flush metadata entries in.
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/C++ & FORTRAN, w/threadsafe,
in debug 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 production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
Mac OS X/32 10.5.6 (amazon) in debug mode
Mac OS X/32 10.5.6 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
2009-03-18 01:08:12 +08:00
|
|
|
#include "H5Fpkg.h"
|
|
|
|
#include "H5Iprivate.h"
|
2020-09-30 22:27:10 +08:00
|
|
|
#include "H5VLprivate.h" /* Virtual Object Layer */
|
2006-01-29 10:34:14 +08:00
|
|
|
|
[svn-r16587] Description:
Add infrastructure & tests for "flush dependencies" in metadata cache,
which allow relationships that specify which order to flush metadata entries in.
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/C++ & FORTRAN, w/threadsafe,
in debug 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 production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
Mac OS X/32 10.5.6 (amazon) in debug mode
Mac OS X/32 10.5.6 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
2009-03-18 01:08:12 +08:00
|
|
|
/* Include test header files */
|
|
|
|
#include "h5test.h"
|
2006-01-29 10:34:14 +08:00
|
|
|
|
[svn-r16587] Description:
Add infrastructure & tests for "flush dependencies" in metadata cache,
which allow relationships that specify which order to flush metadata entries in.
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/C++ & FORTRAN, w/threadsafe,
in debug 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 production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
Mac OS X/32 10.5.6 (amazon) in debug mode
Mac OS X/32 10.5.6 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
2009-03-18 01:08:12 +08:00
|
|
|
/* Macro to make error reporting easier */
|
2020-09-30 22:27:10 +08:00
|
|
|
#define CACHE_ERROR(s) \
|
|
|
|
{ \
|
|
|
|
failure_mssg = "Line #" H5_TOSTRING(__LINE__) ": " s; \
|
|
|
|
pass = FALSE; \
|
|
|
|
goto done; \
|
|
|
|
}
|
2006-01-29 10:34:14 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
#define NO_CHANGE -1
|
2006-01-29 10:34:14 +08:00
|
|
|
|
|
|
|
/* with apologies for the abuse of terminology... */
|
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
#define PICO_ENTRY_TYPE 0
|
|
|
|
#define NANO_ENTRY_TYPE 1
|
2019-12-12 05:58:59 +08:00
|
|
|
#define MICRO_ENTRY_TYPE 2
|
2020-09-30 22:27:10 +08:00
|
|
|
#define TINY_ENTRY_TYPE 3
|
2019-12-12 05:58:59 +08:00
|
|
|
#define SMALL_ENTRY_TYPE 4
|
2020-09-30 22:27:10 +08:00
|
|
|
#define MEDIUM_ENTRY_TYPE 5
|
2019-12-12 05:58:59 +08:00
|
|
|
#define LARGE_ENTRY_TYPE 6
|
2020-09-30 22:27:10 +08:00
|
|
|
#define HUGE_ENTRY_TYPE 7
|
|
|
|
#define MONSTER_ENTRY_TYPE 8
|
|
|
|
#define VARIABLE_ENTRY_TYPE 9
|
|
|
|
#define NOTIFY_ENTRY_TYPE 10
|
2006-01-29 10:34:14 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
#define NUMBER_OF_ENTRY_TYPES 11
|
2006-01-29 10:34:14 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
#define PICO_ENTRY_SIZE (size_t)1
|
|
|
|
#define NANO_ENTRY_SIZE (size_t)4
|
2019-12-12 05:58:59 +08:00
|
|
|
#define MICRO_ENTRY_SIZE (size_t)16
|
2020-09-30 22:27:10 +08:00
|
|
|
#define TINY_ENTRY_SIZE (size_t)64
|
2019-12-12 05:58:59 +08:00
|
|
|
#define SMALL_ENTRY_SIZE (size_t)256
|
2020-09-30 22:27:10 +08:00
|
|
|
#define MEDIUM_ENTRY_SIZE (size_t)1024
|
2019-12-12 05:58:59 +08:00
|
|
|
#define LARGE_ENTRY_SIZE (size_t)(4 * 1024)
|
2020-09-30 22:27:10 +08:00
|
|
|
#define HUGE_ENTRY_SIZE (size_t)(16 * 1024)
|
|
|
|
#define MONSTER_ENTRY_SIZE (size_t)(64 * 1024)
|
|
|
|
#define VARIABLE_ENTRY_SIZE (size_t)(10 * 1024)
|
|
|
|
#define NOTIFY_ENTRY_SIZE (size_t)1
|
2019-12-12 05:58:59 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
#define NUM_PICO_ENTRIES (10 * 1024)
|
|
|
|
#define NUM_NANO_ENTRIES (10 * 1024)
|
2019-12-12 05:58:59 +08:00
|
|
|
#define NUM_MICRO_ENTRIES (10 * 1024)
|
2020-09-30 22:27:10 +08:00
|
|
|
#define NUM_TINY_ENTRIES (10 * 1024)
|
2019-12-12 05:58:59 +08:00
|
|
|
#define NUM_SMALL_ENTRIES (10 * 1024)
|
2020-09-30 22:27:10 +08:00
|
|
|
#define NUM_MEDIUM_ENTRIES (10 * 1024)
|
2019-12-12 05:58:59 +08:00
|
|
|
#define NUM_LARGE_ENTRIES (10 * 1024)
|
2020-09-30 22:27:10 +08:00
|
|
|
#define NUM_HUGE_ENTRIES (10 * 1024)
|
|
|
|
#define NUM_MONSTER_ENTRIES (10 * 1024)
|
|
|
|
#define NUM_VARIABLE_ENTRIES (10 * 1024)
|
|
|
|
#define NUM_NOTIFY_ENTRIES (10 * 1024)
|
2006-01-29 10:34:14 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
#define MAX_ENTRIES (10 * 1024)
|
[svn-r18702] Description:
Bring r18672 from metadata journaling "merging" branch to trunk:
Mostly changes to move to only using one 'user data' parameter for
calls to H5AC_protect(), along with some minor reformatting code cleanups.
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 (amani) 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-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
Mac OS X/32 10.6.3 (amazon) in debug mode
Mac OS X/32 10.6.3 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
2010-05-05 21:39:56 +08:00
|
|
|
|
2010-01-30 12:29:13 +08:00
|
|
|
/* The choice of the BASE_ADDR below is arbitrary -- it just has to be
|
[svn-r18171] Description:
Bring r18169 from 'merge_metadata_journaling' branch back to trunk:
Converge changes on metadata_journaling branch and trunk:
- Remove H5F_t* parameter from H5HL_unprotect()
- Remove H5F_t* parameter from H5HL_dirty()
- Remove H5F_t* parameter from H5O_unprotect()
- Bring changes to metadata caching routines back:
- H5AC_pin_protected_entry()
- H5AC_resize_pinned_entry()
- H5AC_unpin_entry()
- H5AC_mark_pinned_entry_dirty()
- H5AC_mark_pinned_or_protected_entry_dirty()
- Revise internal H5C routines to drop H5F_t* and/or H5C_t* as
parameter where possible
- Revise tests to follow internal routine changes
Also, drop file/cache pointer parameter from create/destroy flush
dependency internal cache calls.
Also, other minor changes to speedup the 'cache' test.
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 (amani) 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.2 (amazon) in debug mode
Mac OS X/32 10.6.2 (amazon) w/C++ & FORTRAN, w/threadsafe,
2010-01-27 23:07:42 +08:00
|
|
|
* larger than the superblock.
|
|
|
|
*/
|
2020-09-30 22:27:10 +08:00
|
|
|
#define BASE_ADDR (haddr_t)1024
|
|
|
|
#define PICO_BASE_ADDR BASE_ADDR
|
|
|
|
#define NANO_BASE_ADDR (haddr_t)(PICO_BASE_ADDR + (PICO_ENTRY_SIZE * NUM_PICO_ENTRIES))
|
|
|
|
#define MICRO_BASE_ADDR (haddr_t)(NANO_BASE_ADDR + (NANO_ENTRY_SIZE * NUM_NANO_ENTRIES))
|
|
|
|
#define TINY_BASE_ADDR (haddr_t)(MICRO_BASE_ADDR + (MICRO_ENTRY_SIZE * NUM_MICRO_ENTRIES))
|
|
|
|
#define SMALL_BASE_ADDR (haddr_t)(TINY_BASE_ADDR + (TINY_ENTRY_SIZE * NUM_TINY_ENTRIES))
|
|
|
|
#define MEDIUM_BASE_ADDR (haddr_t)(SMALL_BASE_ADDR + (SMALL_ENTRY_SIZE * NUM_SMALL_ENTRIES))
|
|
|
|
#define LARGE_BASE_ADDR (haddr_t)(MEDIUM_BASE_ADDR + (MEDIUM_ENTRY_SIZE * NUM_MEDIUM_ENTRIES))
|
|
|
|
#define HUGE_BASE_ADDR (haddr_t)(LARGE_BASE_ADDR + (LARGE_ENTRY_SIZE * NUM_LARGE_ENTRIES))
|
|
|
|
#define MONSTER_BASE_ADDR (haddr_t)(HUGE_BASE_ADDR + (HUGE_ENTRY_SIZE * NUM_HUGE_ENTRIES))
|
|
|
|
#define VARIABLE_BASE_ADDR (haddr_t)(MONSTER_BASE_ADDR + (MONSTER_ENTRY_SIZE * NUM_MONSTER_ENTRIES))
|
|
|
|
#define NOTIFY_BASE_ADDR (haddr_t)(VARIABLE_BASE_ADDR + (VARIABLE_ENTRY_SIZE * NUM_VARIABLE_ENTRIES))
|
|
|
|
|
|
|
|
#define PICO_ALT_BASE_ADDR (haddr_t)(NOTIFY_BASE_ADDR + (NOTIFY_ENTRY_SIZE * NUM_NOTIFY_ENTRIES))
|
|
|
|
#define NANO_ALT_BASE_ADDR (haddr_t)(PICO_ALT_BASE_ADDR + (PICO_ENTRY_SIZE * NUM_PICO_ENTRIES))
|
|
|
|
#define MICRO_ALT_BASE_ADDR (haddr_t)(NANO_ALT_BASE_ADDR + (NANO_ENTRY_SIZE * NUM_NANO_ENTRIES))
|
|
|
|
#define TINY_ALT_BASE_ADDR (haddr_t)(MICRO_ALT_BASE_ADDR + (MICRO_ENTRY_SIZE * NUM_MICRO_ENTRIES))
|
|
|
|
#define SMALL_ALT_BASE_ADDR (haddr_t)(TINY_ALT_BASE_ADDR + (TINY_ENTRY_SIZE * NUM_TINY_ENTRIES))
|
|
|
|
#define MEDIUM_ALT_BASE_ADDR (haddr_t)(SMALL_ALT_BASE_ADDR + (SMALL_ENTRY_SIZE * NUM_SMALL_ENTRIES))
|
|
|
|
#define LARGE_ALT_BASE_ADDR (haddr_t)(MEDIUM_ALT_BASE_ADDR + (MEDIUM_ENTRY_SIZE * NUM_MEDIUM_ENTRIES))
|
|
|
|
#define HUGE_ALT_BASE_ADDR (haddr_t)(LARGE_ALT_BASE_ADDR + (LARGE_ENTRY_SIZE * NUM_LARGE_ENTRIES))
|
|
|
|
#define MONSTER_ALT_BASE_ADDR (haddr_t)(HUGE_ALT_BASE_ADDR + (HUGE_ENTRY_SIZE * NUM_HUGE_ENTRIES))
|
|
|
|
#define VARIABLE_ALT_BASE_ADDR (haddr_t)(MONSTER_ALT_BASE_ADDR + (MONSTER_ENTRY_SIZE * NUM_MONSTER_ENTRIES))
|
|
|
|
#define NOTIFY_ALT_BASE_ADDR (haddr_t)(VARIABLE_ALT_BASE_ADDR + (VARIABLE_ENTRY_SIZE * NUM_VARIABLE_ENTRIES))
|
|
|
|
#define MAX_ADDR (haddr_t)(NOTIFY_ALT_BASE_ADDR + (NOTIFY_ENTRY_SIZE * NUM_NOTIFY_ENTRIES))
|
2019-12-12 05:58:59 +08:00
|
|
|
#define ADDR_SPACE_SIZE (haddr_t)(MAX_ADDR - BASE_ADDR)
|
|
|
|
|
2020-08-06 04:39:49 +08:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* Macro: H5C_FLUSH_CACHE
|
|
|
|
*
|
2020-09-30 22:27:10 +08:00
|
|
|
* Purpose: Wrap a call to H5C_flush_cache() in calls to
|
2020-08-06 04:39:49 +08:00
|
|
|
* H5C_set_slist_enabled() to setup and take down the slist.
|
|
|
|
*
|
|
|
|
* This is necessary, as H5C_flush_cache() needs the
|
2020-09-30 22:27:10 +08:00
|
|
|
* slist to be active. Further, since it is called
|
|
|
|
* repeatedly during file flush, it would be inefficient
|
2020-08-06 04:39:49 +08:00
|
|
|
* for it to setup the slist on entry, and take it down
|
2020-09-30 22:27:10 +08:00
|
|
|
* on exit.
|
2020-08-06 04:39:49 +08:00
|
|
|
*
|
|
|
|
* Note that the slist need not be empty if the flags
|
2020-09-30 22:27:10 +08:00
|
|
|
* indicate a partial flush (i.e.
|
2020-08-06 04:39:49 +08:00
|
|
|
* H5C__FLUSH_MARKED_ENTRIES_FLAG). Compute clear_slist
|
|
|
|
* and pass it into H5C_set_slist_enabled as appropriate.
|
|
|
|
*
|
|
|
|
* On error, set pass to FALSE, and set failure_mssg
|
|
|
|
* to the supplied error message.
|
|
|
|
*
|
|
|
|
* Return: N/A
|
|
|
|
*
|
|
|
|
* Programmer: John Mainzer
|
|
|
|
* 5/14/20
|
|
|
|
*
|
|
|
|
* Changes: None.
|
|
|
|
*
|
|
|
|
***********************************************************************/
|
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
#define H5C_FLUSH_CACHE(file, flags, fail_mssg) \
|
|
|
|
{ \
|
|
|
|
hbool_t clear_slist; \
|
|
|
|
herr_t rslt; \
|
|
|
|
\
|
|
|
|
clear_slist = ((flags & H5C__FLUSH_MARKED_ENTRIES_FLAG) != 0); \
|
|
|
|
\
|
|
|
|
rslt = H5C_set_slist_enabled((file)->shared->cache, TRUE, FALSE); \
|
|
|
|
\
|
|
|
|
if (rslt >= 0) { \
|
|
|
|
\
|
|
|
|
rslt = H5C_flush_cache((file), (flags)); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
if (rslt >= 0) { \
|
|
|
|
\
|
|
|
|
rslt = H5C_set_slist_enabled((file)->shared->cache, FALSE, clear_slist); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
if (rslt < 0) { \
|
|
|
|
\
|
|
|
|
pass = FALSE; \
|
|
|
|
failure_mssg = (fail_mssg); \
|
|
|
|
} \
|
|
|
|
} /* H5C_FLUSH_CACHE */
|
|
|
|
|
|
|
|
#define MAX_PINS \
|
|
|
|
8 /* Maximum number of entries that can be \
|
|
|
|
* directly pinned by a single entry. \
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define FLUSH_OP__NO_OP 0
|
|
|
|
#define FLUSH_OP__DIRTY 1
|
|
|
|
#define FLUSH_OP__RESIZE 2
|
|
|
|
#define FLUSH_OP__MOVE 3
|
|
|
|
#define FLUSH_OP__ORDER 4
|
2019-12-12 05:58:59 +08:00
|
|
|
#define FLUSH_OP__EXPUNGE 5
|
2020-09-30 22:27:10 +08:00
|
|
|
#define FLUSH_OP__DEST_FLUSH_DEP 6
|
|
|
|
#define FLUSH_OP__MAX_OP 6
|
|
|
|
|
|
|
|
#define MAX_FLUSH_OPS \
|
|
|
|
10 /* Maximum number of flush operations \
|
|
|
|
* that can be associated with a \
|
|
|
|
* cache entry. \
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define MAX_FLUSH_DEP_PARS \
|
|
|
|
8 /* Maximum number of flush dependency \
|
|
|
|
* parents in the test */
|
|
|
|
|
|
|
|
typedef struct flush_op {
|
|
|
|
int op_code; /* integer op code indicating the
|
|
|
|
* operation to be performed. At
|
|
|
|
* present it must be one of:
|
|
|
|
*
|
|
|
|
* FLUSH_OP__NO_OP
|
|
|
|
* FLUSH_OP__DIRTY
|
|
|
|
* FLUSH_OP__RESIZE
|
|
|
|
* FLUSH_OP__MOVE
|
|
|
|
* FLUSH_OP__ORDER
|
|
|
|
*/
|
|
|
|
int type; /* type code of the cache entry that
|
|
|
|
* is the target of the operation.
|
|
|
|
* This value is passed into the
|
|
|
|
* function implementing the flush
|
|
|
|
* operation.
|
|
|
|
*/
|
|
|
|
int idx; /* index of the cache entry that
|
|
|
|
* is the target of the operation.
|
|
|
|
* This value is passed into the
|
|
|
|
* function implementing the flush
|
|
|
|
* operation.
|
|
|
|
*/
|
|
|
|
hbool_t flag; /* boolean flag passed into the
|
|
|
|
* function implementing the flush
|
|
|
|
* operation. The meaning of the
|
|
|
|
* flag is dependent upon the flush
|
|
|
|
* operation:
|
|
|
|
*
|
|
|
|
* FLUSH_OP__DIRTY: TRUE iff the
|
|
|
|
* target is pinned, and is to
|
|
|
|
* be dirtied via the
|
|
|
|
* H5C_mark_entry_dirty()
|
|
|
|
* call.
|
|
|
|
*
|
|
|
|
* FLUSH_OP__RESIZE: TRUE iff the
|
|
|
|
* target is pinned, and is to
|
|
|
|
* be resized via the
|
|
|
|
* H5C_resize_entry()
|
|
|
|
* call.
|
|
|
|
*
|
|
|
|
* FLUSH_OP__MOVE: TRUE iff the
|
|
|
|
* target is to be moved to
|
|
|
|
* its main address.
|
|
|
|
*/
|
|
|
|
size_t size; /* New target size in the
|
|
|
|
* FLUSH_OP__MOVE operation.
|
|
|
|
* Unused elsewhere.
|
|
|
|
*/
|
|
|
|
unsigned *order_ptr; /* Pointer to outside counter for
|
|
|
|
* recording the order of entries
|
|
|
|
* flushed.
|
|
|
|
*/
|
2006-10-18 18:51:26 +08:00
|
|
|
} flush_op;
|
|
|
|
|
2016-11-13 06:01:30 +08:00
|
|
|
typedef enum test_entry_action_t {
|
2020-09-30 22:27:10 +08:00
|
|
|
TEST_ENTRY_ACTION_NUL = 0, /* No action on entry */
|
2022-08-11 04:57:26 +08:00
|
|
|
TEST_ENTRY_ACTION_MOVE /* Entry is being moved */
|
2016-11-13 06:01:30 +08:00
|
|
|
} test_entry_action_t;
|
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
typedef struct test_entry_t {
|
|
|
|
H5C_cache_entry_t header; /* entry data used by the cache
|
|
|
|
* -- must be first
|
|
|
|
*/
|
|
|
|
struct test_entry_t *self; /* pointer to this entry -- used for
|
|
|
|
* sanity checking.
|
|
|
|
*/
|
|
|
|
test_entry_action_t action; /* Action being performed on a test entry */
|
2022-07-27 05:45:46 +08:00
|
|
|
H5F_t *file_ptr; /* pointer to the file in which the
|
2020-09-30 22:27:10 +08:00
|
|
|
* entry resides, or NULL if the entry
|
|
|
|
* is not in a file.
|
|
|
|
*/
|
|
|
|
H5C_t *cache_ptr; /* pointer to the cache in which
|
|
|
|
* the entry resides, or NULL if the
|
|
|
|
* entry is not in cache.
|
|
|
|
*/
|
|
|
|
hbool_t written_to_main_addr;
|
|
|
|
/* Flag indicating whether an image
|
|
|
|
* of the entry has been written to
|
|
|
|
* its main address. Since we no
|
|
|
|
* longer have a flush callback, we
|
|
|
|
* set this field to true whenever the
|
|
|
|
* entry is serialized while at its
|
|
|
|
* main address.
|
|
|
|
*/
|
|
|
|
hbool_t written_to_alt_addr;
|
|
|
|
/* Flag indicating whether an image
|
|
|
|
* of the entry has been written to
|
|
|
|
* its alternate address. Since we no
|
|
|
|
* longer have a flush callback, we
|
|
|
|
* set this field to true whenever the
|
|
|
|
* entry is serialized while at its
|
|
|
|
* alternate address.
|
|
|
|
*/
|
|
|
|
haddr_t addr; /* where the cache thinks this entry
|
|
|
|
* is located
|
|
|
|
*/
|
|
|
|
hbool_t at_main_addr; /* boolean flag indicating whether
|
|
|
|
* the entry is supposed to be at
|
|
|
|
* either its main or alternate
|
|
|
|
* address.
|
|
|
|
*/
|
|
|
|
haddr_t main_addr; /* initial location of the entry
|
|
|
|
*/
|
|
|
|
haddr_t alt_addr; /* location to which the entry
|
|
|
|
* can be relocated or "moved"
|
|
|
|
*/
|
|
|
|
size_t size; /* how big the cache thinks this
|
|
|
|
* entry is
|
|
|
|
*/
|
|
|
|
int32_t type; /* indicates which entry array this
|
|
|
|
* entry is in
|
|
|
|
*/
|
|
|
|
int32_t index; /* index in its entry array
|
|
|
|
*/
|
|
|
|
int32_t serializes; /* number of times this entry has
|
|
|
|
* been serialized.
|
|
|
|
*/
|
|
|
|
int32_t deserializes; /* number of times this entry has
|
|
|
|
* been deserialized
|
|
|
|
*/
|
|
|
|
hbool_t is_dirty; /* entry has been modified since
|
|
|
|
* last write
|
|
|
|
*/
|
|
|
|
hbool_t is_protected; /* entry should currently be on
|
|
|
|
* the cache's protected list.
|
|
|
|
*/
|
|
|
|
hbool_t is_read_only; /* TRUE iff the entry should be
|
|
|
|
* protected read only.
|
|
|
|
*/
|
|
|
|
int ro_ref_count; /* Number of outstanding read only
|
|
|
|
* protects on the entry.
|
|
|
|
*/
|
|
|
|
hbool_t is_pinned; /* entry is currently pinned in
|
|
|
|
* the cache.
|
|
|
|
*/
|
|
|
|
haddr_t tag; /* the base_addr as tag for corking entries */
|
|
|
|
hbool_t is_corked; /* entry is currently corked or not */
|
|
|
|
int pinning_ref_count; /* Number of entries that
|
|
|
|
* pin this entry in the cache.
|
|
|
|
* When this count drops to zero,
|
|
|
|
* this entry should be unpinned.
|
|
|
|
*/
|
|
|
|
int num_pins; /* Number of entries that this
|
|
|
|
* entry pins in the cache. This
|
|
|
|
* value must be in the range
|
|
|
|
* [0, MAX_PINS].
|
|
|
|
*/
|
|
|
|
int pin_type[MAX_PINS]; /* array of the types of entries
|
|
|
|
* pinned by this entry.
|
|
|
|
*/
|
2021-12-07 22:27:29 +08:00
|
|
|
int pin_idx[MAX_PINS]; /* array of the indices of
|
2020-09-30 22:27:10 +08:00
|
|
|
* entries pinned by this entry.
|
|
|
|
*/
|
|
|
|
int num_flush_ops; /* integer field containing the
|
|
|
|
* number of flush operations to
|
|
|
|
* be executed when the entry is
|
|
|
|
* flushed. This value must lie in
|
|
|
|
* the closed interval
|
|
|
|
* [0, MAX_FLUSH_OPS].
|
|
|
|
*/
|
|
|
|
struct flush_op flush_ops[MAX_FLUSH_OPS]; /* Array of instances
|
|
|
|
* of struct flush_op detailing the
|
|
|
|
* flush operations (if any) that
|
|
|
|
* are to be executed when the entry
|
|
|
|
* is flushed from the cache.
|
|
|
|
*
|
|
|
|
* num_flush_ops contains the number
|
|
|
|
* of valid entries in this array.
|
|
|
|
*/
|
|
|
|
hbool_t flush_op_self_resize_in_progress; /* Boolean flag
|
|
|
|
* that is set to TRUE iff this
|
|
|
|
* entry is being flushed, it has
|
|
|
|
* been resized by a resize flush
|
|
|
|
* op, and the flush function has
|
|
|
|
* not yet returned, This field is
|
2022-08-11 04:57:26 +08:00
|
|
|
* used to turn off overactive sanity
|
2020-09-30 22:27:10 +08:00
|
|
|
* checking code that would otherwise
|
|
|
|
* cause a false test failure.
|
|
|
|
*/
|
|
|
|
hbool_t deserialized; /* entry has been deserialized since
|
|
|
|
* the last time it was reset.
|
|
|
|
*/
|
|
|
|
hbool_t serialized; /* entry has been serialized since the
|
|
|
|
* last time it was reset.
|
|
|
|
*/
|
|
|
|
hbool_t destroyed; /* entry has been destroyed since the
|
|
|
|
* last time it was reset.
|
|
|
|
*/
|
|
|
|
hbool_t expunged; /* entry has been expunged since the
|
|
|
|
* last time it was reset.
|
|
|
|
*/
|
|
|
|
int flush_dep_par_type[MAX_FLUSH_DEP_PARS]; /* Entry types of flush dependency parents */
|
|
|
|
int flush_dep_par_idx[MAX_FLUSH_DEP_PARS]; /* Indices of flush dependency parents */
|
|
|
|
unsigned flush_dep_npar; /* Number of flush dependency parents */
|
|
|
|
unsigned flush_dep_nchd; /* Number of flush dependency children */
|
Bring async branch to develop (#166)
* Add H5Fwait, H5Dwait, and other changes for async vol connector
* Revert temporary testing changes
* Add H5Fwait to header file
* Add H5VLreset_lib_state() routine.
* Correct VOL wrap context when retrieving library state for file open & create.
* Manage the API context's VOL connector state as part of the library state.
* Set the 'VOL connector property valid' flag when restoring the library state.
* Don't push new API context on stack when retrieving "current" one.
* Check for NULL VOL wrap context before decrementing refcount on it, when
freeing the API context state.
* Manage recount of underlying connector for VOL wrap context.
* Add H5TSmutex_acquire() and H5TSmutex_release() routines to acquire and
release the global lock on the HDF5 library.
* Update library with new functions related to library global lock
* Add asynchronous token API
* Add new lightweight FUNC_ENTER / LEAVE macros for helping to structure the
threadsafety (H5TS*) routines.
* Sync w/develop
* Initial event set code framework.
* Elaborate on the H5ES routines, starting to add API routines.
Update the "close ID" callbacks to allow asynchronous request tokens to be
passed in from an asynchronous close API call.
Refactor current asynchronous API routines (H5Fopen/H5Fclose and
H5Dread/H5Dread) to use event sets instead of directly working with request
tokens from the application.
Clean up a few other minor warnings & code style issues.
* Implement H5EScreate, H5ESget_count, and H5ESclose.
It should be possible to write a simple application that creates an event
set and uses it with H5Fopen_async, H5Dread_async, H5Dwrite_async, and
H5Fclose_async, then calls H5ESclose (which waits for all async events to
complete).
* Add source file for event set test.
* Refactor sync & async API routines to call common routine.
Move dataset API read / write routines to src/H5D.c, along with all the other
API routines.
Progress on "fake" async VOL connector, for testing.
* Modify async implementation to wrap async requests in a H5VL_object_t
struct so the VOL layer can find the connector when accessing the
request at a later point.
* Free the requests is H5ESclose. Remove comments implying that request
wait, notify, and cancel callbacks should free the request.
* Fix bug in error handling in H5Fclose.
* Fix bugs in async file routines. Rename H5VL_create_object_generic to
H5VL_create_object.
* Add explicit async version of H5Fcreate.
* Add more _async routines
* Correct typo for return value from H5Awrite changes
* Add H5EStest and H5ESwait routines
* Updated with API tracing info
* Fix NULL pointer dereference in H5ES__wait
* Add H5is_library_terminating() routine, so that VOL connectors can detect
when the library is shutting down.
* Fix typo
* Remove event from event set's linked list
* Move block of code so that vol_obj is valid
* Avoid setting properties in the DXPL when reseting the library state (and in
the test code).
* Refactor argument tracing to implement new capability for tracing arguments
of non-API routines, with the H5ARG_TRACE macro. This macro is updated
automatically with the bin/trace script that runs as part of the autogen.sh
process. Major changes were in src/H5trace.c and bin/trace, with the other
changes being cleanups to the argument lists, to improve their presentation
in the tracing output.
Also - added the "managed string" routines, which can dynamically allocate
strings, appending printf-formatted output to the string efficiently.
* Release memory for managed strings
* Fix printf() formats.
* More printf() format fixes.
* Add H5Eappend_stack routine and regression tests
* Clean up a few missed merge conflicts and update the error stacks.
* Remove unnecessary fork() operations and ten second sleep().
* Restore commented out attribute out, to better enable tracking down the previous failure
* Allow multiple H5ARG_TRACE macros within a routine to be updated
* Switch to using "new" H5ES_insert (which takes the arguments for the caller routine) for all event set operations. Renames H5ES_insert_new to H5ES_insert and removes the previous H5ES_insert.
* Merge "managed" string routines into "ref-counted" strings, and refactor code to use them.
* Add missing file.
* Add caller's name and arguments to event, for error reporting
* Refactor event set setup for "API common" internal routines
* Checkin async API routines for H5A* and H5G* modules as listed in ID-283.
Fix couple h5dump expected output files due to the changes.
* Add some of the error query routines needed for event sets.
* Refactor to make async setup / teardown and "common" routines cleaner
* (1) Add async APIs to H5L, H5F, and H5D modules
(2) Fix errors in previous checkins of async APIs in H5A and H5G modules
(3) h5dump expected output changes
* Enhance event info, for better error handling
* Change name of temporary vol_obj variable, to help reduce coding errors
* Fix oversight with vol_obj pointer
* Minor code cleanup
* Add missing \'valid\' flag for VOL wrapper context, when restoring the library\'s state
* Run source formatter
* Change H5TSmutex lock and release to include a lock count
* Update error reporting ideas
* Minor updates to improve sanity checking for retrieving / restoring library state
* Updated with feedback from h5py team members
* Refactor internal event set list and event handling, add implementation for H5ESget_err_info
* Change the VOL request subclass callbacks that switch from using "H5ES_status_t" to "H5VL_request_status_t", and also add a H5VL_request_status_t* parameter to the 'cancel' callback in the request subclass. Also more code quality cleanups to add iterator callbacks to internal event set routines.
* Update API tracing for new H5VL_request_status_t typedef
* Finish converting internal event set operations to use list iterator callbacks, instead of directly accessing the list structure
* Add H5VL_REQUEST_GET_ERR_STACK operation to request subclass, for retrieving a copy of the error stack for a failed asynchronous operation
* Remove 'canceled' event status from Java constants
* Be safer about releasing resources when inserting a newly opened/created object or file into an event set
* Remove H5EStest, add H5ES_WAIT_NONE for 0 timeout, and revise parameters to H5ESwait, to make it more "aggregate".
* Remove H5ES_STATUS_CANCELED from Java wrappers also
* (a) Add async APIs for H5O module as listed in jira issue ID-283.
(b) Remove verification of name parameter in async related routines for H55A and H5L modules
because it is checked in H5VL_setup* routine.
(c) Modify h5dump expected output due to the async changes.
* Corrections based on PR feedback.
* Further changes to make based on PR feedback.
* Fix missed merge marker, and reformatted line
* Clean up some warnings
* Correct level of indirection
* Relocate prototype (and doxygen info) for H5Aclose
* Change non-static function declarations to be static
* Ensure that H5TSpublic.h header gets installed (#129)
* Add 'wrapper' versions of async calls, to allow language wrappers and layers on top of HDF5 to pass in their application information.
* Switch H5Aexists\*_async and H5Lexists\*_async to use flag to return status, instead of return value. Make the corresponding changes through most of the v1 and v2 B-tree code. Clean up warnings in H5public.h and cmpd_dtransform.c.
* Add H5Iregister_future routine and tests.
* Correct return value for H5Lexists_async
* Add H5_DLL macro to public H5ES API routines
* Update supported -> flags parameter for introspect_query callback
* Remove my email address. Update passthrough VOL connector ID.
* Fix comment for post_open_api_common
* Remove unused non-blocking VOL connector
* Minor cleanup in async branch in preparation for merge to develop
* Update CMake and the Autotools to use the new pass-through VOL ID
* Fix for SWMR daily test failures (#160)
The H5I_register_using_existing_id() call did not initialize the future
ID callbacks, causing the library to segfault when it tried to
resolve those function pointers.
* Added selective async APIs (#150)
* Added selective async APIs
Description:
Added the following APIs:
H5Ropen_attr_async
H5Ropen_object_async
H5Ropen_region_async
H5Mcreate_async
H5Mopen_async
H5Mput_async
H5Mget_async
H5Mclose_async
H5Tcommit_async
H5Topen_async
H5Tcopy_async
H5Tclose_async
- Updated an expected output file to include a new internal function
in the error stack for the failure case.
* Updated async APIs per reviews, including removing async version of
H5Tcopy.
* Removed statements that were added by mistake in the previous commit.
* Fix compile issues in H5M and warnings elsewhere
* Reformat code
* Brings VOL_LIST changes from develop. (#163)
Co-authored-by: Houjun Tang <htang4@lbl.gov>
Co-authored-by: Neil Fortner <nfortne2@hdfgroup.org>
Co-authored-by: vchoi <vchoi@jelly.ad.hdfgroup.org>
Co-authored-by: vchoi-hdfgroup <55293060+vchoi-hdfgroup@users.noreply.github.com>
Co-authored-by: jhendersonHDF <jhenderson@hdfgroup.org>
Co-authored-by: Dana Robinson <derobins@hdfgroup.org>
Co-authored-by: Dana Robinson <43805+derobins@users.noreply.github.com>
Co-authored-by: bmribler <39579120+bmribler@users.noreply.github.com>
2020-12-14 08:02:17 +08:00
|
|
|
unsigned
|
2022-07-27 05:45:46 +08:00
|
|
|
flush_dep_ndirty_chd; /* Number of dirty flush dependency children (including grandchildren, etc.) */
|
2020-09-30 22:27:10 +08:00
|
|
|
hbool_t pinned_from_client; /* entry was pinned by client call */
|
|
|
|
hbool_t pinned_from_cache; /* entry was pinned by cache internally */
|
|
|
|
unsigned flush_order; /* Order that entry was flushed in */
|
|
|
|
|
|
|
|
unsigned notify_after_insert_count; /* Count of times that entry was inserted in cache */
|
|
|
|
unsigned notify_before_evict_count; /* Count of times that entry was removed in cache */
|
|
|
|
size_t actual_len; /* Simulate the entry's actual size for a speculative load */
|
|
|
|
unsigned max_verify_ct; /* Maximum # of times to verify an entry's checksum */
|
|
|
|
unsigned verify_ct; /* Count the # of checksum verification for an entry */
|
2006-01-29 10:34:14 +08:00
|
|
|
} test_entry_t;
|
|
|
|
|
[svn-r18917] Description:
Bring r18911 (plus some adaptions to match the code on the trunk)
from the metadata journaling "merging" branch to the trunk:
More general changes to align trunk with eventual changes from
metadata journaling branch.
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 (amani) 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-amd64 2.6 (abe) w/parallel, w/FORTRAN, in debug mode
Mac OS X/32 10.6.3 (amazon) in debug mode
Mac OS X/32 10.6.3 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
2010-05-28 04:27:13 +08:00
|
|
|
/* The following are cut down test versions of the hash table manipulation
|
|
|
|
* macros from H5Cpkg.h, which have been further modified to avoid references
|
2006-01-29 10:34:14 +08:00
|
|
|
* to the error reporting macros. Needless to say, these macros must be
|
|
|
|
* updated as necessary.
|
|
|
|
*/
|
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
#define H5C__HASH_MASK ((size_t)(H5C__HASH_TABLE_LEN - 1) << 3)
|
|
|
|
|
|
|
|
#define H5C_TEST__PRE_HT_SEARCH_SC(cache_ptr, Addr) \
|
|
|
|
if (((cache_ptr) == NULL) || ((cache_ptr)->magic != H5C__H5C_T_MAGIC) || \
|
|
|
|
((cache_ptr)->index_size != ((cache_ptr)->clean_index_size + (cache_ptr)->dirty_index_size)) || \
|
|
|
|
(!H5F_addr_defined(Addr)) || (H5C__HASH_FCN(Addr) < 0) || \
|
|
|
|
(H5C__HASH_FCN(Addr) >= H5C__HASH_TABLE_LEN)) { \
|
|
|
|
HDfprintf(stdout, "Pre HT search SC failed.\n"); \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define H5C_TEST__POST_SUC_HT_SEARCH_SC(cache_ptr, entry_ptr, k) \
|
|
|
|
if (((cache_ptr) == NULL) || ((cache_ptr)->magic != H5C__H5C_T_MAGIC) || ((cache_ptr)->index_len < 1) || \
|
|
|
|
((entry_ptr) == NULL) || ((cache_ptr)->index_size < (entry_ptr)->size) || \
|
|
|
|
((cache_ptr)->index_size != ((cache_ptr)->clean_index_size + (cache_ptr)->dirty_index_size)) || \
|
|
|
|
((entry_ptr)->size <= 0) || (((cache_ptr)->index)[k] == NULL) || \
|
|
|
|
((((cache_ptr)->index)[k] != (entry_ptr)) && ((entry_ptr)->ht_prev == NULL)) || \
|
|
|
|
((((cache_ptr)->index)[k] == (entry_ptr)) && ((entry_ptr)->ht_prev != NULL)) || \
|
|
|
|
(((entry_ptr)->ht_prev != NULL) && ((entry_ptr)->ht_prev->ht_next != (entry_ptr))) || \
|
|
|
|
(((entry_ptr)->ht_next != NULL) && ((entry_ptr)->ht_next->ht_prev != (entry_ptr)))) { \
|
|
|
|
HDfprintf(stdout, "Post successful HT search SC failed.\n"); \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define H5C_TEST__POST_HT_SHIFT_TO_FRONT(cache_ptr, entry_ptr, k) \
|
|
|
|
if (((cache_ptr) == NULL) || (((cache_ptr)->index)[k] != (entry_ptr)) || \
|
|
|
|
((entry_ptr)->ht_prev != NULL)) { \
|
|
|
|
HDfprintf(stdout, "Post HT shift to front failed.\n"); \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define H5C_TEST__SEARCH_INDEX(cache_ptr, Addr, entry_ptr) \
|
|
|
|
{ \
|
|
|
|
int k; \
|
|
|
|
H5C_TEST__PRE_HT_SEARCH_SC(cache_ptr, Addr) \
|
|
|
|
k = H5C__HASH_FCN(Addr); \
|
|
|
|
entry_ptr = ((cache_ptr)->index)[k]; \
|
|
|
|
while (entry_ptr) { \
|
|
|
|
if (H5F_addr_eq(Addr, (entry_ptr)->addr)) { \
|
|
|
|
H5C_TEST__POST_SUC_HT_SEARCH_SC(cache_ptr, entry_ptr, k) \
|
|
|
|
if (entry_ptr != ((cache_ptr)->index)[k]) { \
|
|
|
|
if ((entry_ptr)->ht_next) \
|
|
|
|
(entry_ptr)->ht_next->ht_prev = (entry_ptr)->ht_prev; \
|
|
|
|
HDassert((entry_ptr)->ht_prev != NULL); \
|
|
|
|
(entry_ptr)->ht_prev->ht_next = (entry_ptr)->ht_next; \
|
|
|
|
((cache_ptr)->index)[k]->ht_prev = (entry_ptr); \
|
|
|
|
(entry_ptr)->ht_next = ((cache_ptr)->index)[k]; \
|
|
|
|
(entry_ptr)->ht_prev = NULL; \
|
|
|
|
((cache_ptr)->index)[k] = (entry_ptr); \
|
|
|
|
H5C_TEST__POST_HT_SHIFT_TO_FRONT(cache_ptr, entry_ptr, k) \
|
|
|
|
} \
|
|
|
|
break; \
|
|
|
|
} \
|
|
|
|
(entry_ptr) = (entry_ptr)->ht_next; \
|
|
|
|
} \
|
|
|
|
}
|
2015-05-15 10:16:09 +08:00
|
|
|
|
[svn-r18917] Description:
Bring r18911 (plus some adaptions to match the code on the trunk)
from the metadata journaling "merging" branch to the trunk:
More general changes to align trunk with eventual changes from
metadata journaling branch.
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 (amani) 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-amd64 2.6 (abe) w/parallel, w/FORTRAN, in debug mode
Mac OS X/32 10.6.3 (amazon) in debug mode
Mac OS X/32 10.6.3 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
2010-05-28 04:27:13 +08:00
|
|
|
/* Macros used in H5AC level tests */
|
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
#define CACHE_CONFIGS_EQUAL(a, b, cmp_set_init, cmp_init_size) \
|
|
|
|
(((a).version == (b).version) && ((a).rpt_fcn_enabled == (b).rpt_fcn_enabled) && \
|
|
|
|
((a).open_trace_file == (b).open_trace_file) && ((a).close_trace_file == (b).close_trace_file) && \
|
|
|
|
(((a).open_trace_file == FALSE) || (strcmp((a).trace_file_name, (b).trace_file_name) == 0)) && \
|
|
|
|
((a).evictions_enabled == (b).evictions_enabled) && \
|
|
|
|
((!cmp_set_init) || ((a).set_initial_size == (b).set_initial_size)) && \
|
|
|
|
((!cmp_init_size) || ((a).initial_size == (b).initial_size)) && \
|
|
|
|
(H5_DBL_ABS_EQUAL((a).min_clean_fraction, (b).min_clean_fraction)) && ((a).max_size == (b).max_size) && \
|
|
|
|
((a).min_size == (b).min_size) && ((a).epoch_length == (b).epoch_length) && \
|
|
|
|
((a).incr_mode == (b).incr_mode) && \
|
|
|
|
(H5_DBL_ABS_EQUAL((a).lower_hr_threshold, (b).lower_hr_threshold)) && \
|
|
|
|
(H5_DBL_ABS_EQUAL((a).increment, (b).increment)) && \
|
|
|
|
((a).apply_max_increment == (b).apply_max_increment) && ((a).max_increment == (b).max_increment) && \
|
|
|
|
((a).flash_incr_mode == (b).flash_incr_mode) && \
|
|
|
|
(H5_DBL_ABS_EQUAL((a).flash_multiple, (b).flash_multiple)) && \
|
|
|
|
(H5_DBL_ABS_EQUAL((a).flash_threshold, (b).flash_threshold)) && ((a).decr_mode == (b).decr_mode) && \
|
|
|
|
(H5_DBL_ABS_EQUAL((a).upper_hr_threshold, (b).upper_hr_threshold)) && \
|
|
|
|
(H5_DBL_ABS_EQUAL((a).decrement, (b).decrement)) && \
|
|
|
|
((a).apply_max_decrement == (b).apply_max_decrement) && ((a).max_decrement == (b).max_decrement) && \
|
|
|
|
((a).epochs_before_eviction == (b).epochs_before_eviction) && \
|
|
|
|
((a).apply_empty_reserve == (b).apply_empty_reserve) && \
|
|
|
|
(H5_DBL_ABS_EQUAL((a).empty_reserve, (b).empty_reserve)) && \
|
|
|
|
((a).dirty_bytes_threshold == (b).dirty_bytes_threshold) && \
|
|
|
|
((a).metadata_write_strategy == (b).metadata_write_strategy))
|
|
|
|
|
|
|
|
#define XLATE_EXT_TO_INT_MDC_CONFIG(i, e) \
|
|
|
|
{ \
|
|
|
|
(i).version = H5C__CURR_AUTO_SIZE_CTL_VER; \
|
|
|
|
if ((e).rpt_fcn_enabled) \
|
|
|
|
(i).rpt_fcn = H5C_def_auto_resize_rpt_fcn; \
|
|
|
|
else \
|
|
|
|
(i).rpt_fcn = NULL; \
|
|
|
|
(i).set_initial_size = (e).set_initial_size; \
|
|
|
|
(i).initial_size = (e).initial_size; \
|
|
|
|
(i).min_clean_fraction = (e).min_clean_fraction; \
|
|
|
|
(i).max_size = (e).max_size; \
|
|
|
|
(i).min_size = (e).min_size; \
|
|
|
|
(i).epoch_length = (long int)((e).epoch_length); \
|
|
|
|
(i).incr_mode = (e).incr_mode; \
|
|
|
|
(i).lower_hr_threshold = (e).lower_hr_threshold; \
|
|
|
|
(i).increment = (e).increment; \
|
|
|
|
(i).apply_max_increment = (e).apply_max_increment; \
|
|
|
|
(i).max_increment = (e).max_increment; \
|
|
|
|
(i).flash_incr_mode = (e).flash_incr_mode; \
|
|
|
|
(i).flash_multiple = (e).flash_multiple; \
|
|
|
|
(i).flash_threshold = (e).flash_threshold; \
|
|
|
|
(i).decr_mode = (e).decr_mode; \
|
|
|
|
(i).upper_hr_threshold = (e).upper_hr_threshold; \
|
|
|
|
(i).decrement = (e).decrement; \
|
|
|
|
(i).apply_max_decrement = (e).apply_max_decrement; \
|
|
|
|
(i).max_decrement = (e).max_decrement; \
|
|
|
|
(i).epochs_before_eviction = (int)((e).epochs_before_eviction); \
|
|
|
|
(i).apply_empty_reserve = (e).apply_empty_reserve; \
|
|
|
|
(i).empty_reserve = (e).empty_reserve; \
|
|
|
|
}
|
2019-12-12 05:58:59 +08:00
|
|
|
|
2006-01-29 10:34:14 +08:00
|
|
|
/* misc type definitions */
|
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
struct expected_entry_status {
|
|
|
|
int entry_type;
|
|
|
|
int entry_index;
|
|
|
|
size_t size;
|
|
|
|
hbool_t in_cache;
|
|
|
|
hbool_t at_main_addr;
|
|
|
|
hbool_t is_dirty;
|
|
|
|
hbool_t is_protected;
|
|
|
|
hbool_t is_pinned;
|
|
|
|
hbool_t deserialized;
|
|
|
|
hbool_t serialized;
|
|
|
|
hbool_t destroyed;
|
|
|
|
int flush_dep_par_type[MAX_FLUSH_DEP_PARS]; /* Entry types of flush dependency parents */
|
|
|
|
int flush_dep_par_idx[MAX_FLUSH_DEP_PARS]; /* Indices of flush dependency parents */
|
|
|
|
unsigned flush_dep_npar; /* Number of flush dependency parents */
|
|
|
|
unsigned flush_dep_nchd; /* Number of flush dependency children */
|
|
|
|
unsigned flush_dep_ndirty_chd; /* Number of dirty flush dependency children */
|
|
|
|
int flush_order; /* flush order of entry */
|
|
|
|
unsigned char is_corked; /* cork status of entry */
|
2006-10-18 18:51:26 +08:00
|
|
|
};
|
|
|
|
|
2006-01-29 10:34:14 +08:00
|
|
|
/* global variable externs: */
|
2020-09-30 22:27:10 +08:00
|
|
|
H5TEST_DLLVAR hbool_t pass; /* set to false on error */
|
2016-05-05 00:29:52 +08:00
|
|
|
H5TEST_DLLVAR const char *failure_mssg;
|
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
H5TEST_DLLVAR test_entry_t *entries[NUMBER_OF_ENTRY_TYPES];
|
2016-05-05 00:29:52 +08:00
|
|
|
H5TEST_DLLVAR const int32_t max_indices[NUMBER_OF_ENTRY_TYPES];
|
2020-09-30 22:27:10 +08:00
|
|
|
H5TEST_DLLVAR const size_t entry_sizes[NUMBER_OF_ENTRY_TYPES];
|
2016-05-05 00:29:52 +08:00
|
|
|
H5TEST_DLLVAR const haddr_t base_addrs[NUMBER_OF_ENTRY_TYPES];
|
|
|
|
H5TEST_DLLVAR const haddr_t alt_base_addrs[NUMBER_OF_ENTRY_TYPES];
|
2006-01-29 10:34:14 +08:00
|
|
|
|
|
|
|
/* callback table extern */
|
|
|
|
|
2017-01-28 15:18:47 +08:00
|
|
|
H5TEST_DLLVAR const H5C_class_t *types[NUMBER_OF_ENTRY_TYPES];
|
2006-01-29 10:34:14 +08:00
|
|
|
|
2016-05-05 00:29:52 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2006-01-29 10:34:14 +08:00
|
|
|
/* function declarations: */
|
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
H5TEST_DLL void add_flush_op(int target_type, int target_idx, int op_code, int type, int idx, hbool_t flag,
|
|
|
|
size_t size, unsigned *order);
|
2006-10-18 18:51:26 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
H5TEST_DLL void addr_to_type_and_index(haddr_t addr, int32_t *type_ptr, int32_t *index_ptr);
|
2006-01-29 10:34:14 +08:00
|
|
|
|
|
|
|
#if 0 /* keep this for a while -- it may be useful */
|
2016-05-05 00:29:52 +08:00
|
|
|
H5TEST_DLL haddr_t type_and_index_to_addr(int32_t type,
|
2006-01-29 10:34:14 +08:00
|
|
|
int32_t idx);
|
|
|
|
#endif
|
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
H5TEST_DLL void dirty_entry(H5F_t *file_ptr, int32_t type, int32_t idx, hbool_t dirty_pin);
|
2006-10-18 18:51:26 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
H5TEST_DLL void expunge_entry(H5F_t *file_ptr, int32_t type, int32_t idx);
|
2006-07-14 01:59:39 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
H5TEST_DLL void insert_entry(H5F_t *file_ptr, int32_t type, int32_t idx, unsigned int flags);
|
2006-01-29 10:34:14 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
H5TEST_DLL void mark_entry_dirty(int32_t type, int32_t idx);
|
2006-05-24 15:36:28 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
H5TEST_DLL void move_entry(H5C_t *cache_ptr, int32_t type, int32_t idx, hbool_t main_addr);
|
2006-01-29 10:34:14 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
H5TEST_DLL void protect_entry(H5F_t *file_ptr, int32_t type, int32_t idx);
|
2006-01-29 10:34:14 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
H5TEST_DLL void protect_entry_ro(H5F_t *file_ptr, int32_t type, int32_t idx);
|
2007-04-10 02:58:42 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
H5TEST_DLL void pin_entry(int32_t type, int32_t idx);
|
[svn-r16587] Description:
Add infrastructure & tests for "flush dependencies" in metadata cache,
which allow relationships that specify which order to flush metadata entries in.
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/C++ & FORTRAN, w/threadsafe,
in debug 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 production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
Mac OS X/32 10.5.6 (amazon) in debug mode
Mac OS X/32 10.5.6 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
2009-03-18 01:08:12 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
H5TEST_DLL hbool_t entry_in_cache(H5C_t *cache_ptr, int32_t type, int32_t idx);
|
2006-01-29 10:34:14 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
H5TEST_DLL void create_pinned_entry_dependency(H5F_t *file_ptr, int pinning_type, int pinning_idx,
|
|
|
|
int pinned_type, int pinned_idx);
|
2006-04-28 21:27:54 +08:00
|
|
|
|
2016-06-02 01:02:30 +08:00
|
|
|
H5TEST_DLL herr_t create_entry_arrays(void);
|
|
|
|
|
|
|
|
H5TEST_DLL void free_entry_arrays(void);
|
|
|
|
|
2016-05-05 00:29:52 +08:00
|
|
|
H5TEST_DLL void reset_entries(void);
|
2006-01-29 10:34:14 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
H5TEST_DLL void cork_entry_type(H5F_t *file_ptr, int32_t type);
|
|
|
|
|
|
|
|
H5TEST_DLL void uncork_entry_type(H5F_t *file_ptr, int32_t type);
|
|
|
|
|
|
|
|
H5TEST_DLL void resize_entry(H5F_t *file_ptr, int32_t type, int32_t idx, size_t new_size, hbool_t in_cache);
|
|
|
|
|
|
|
|
H5TEST_DLL void row_major_scan_forward(H5F_t *file_ptr, int32_t max_index, int32_t lag, hbool_t verbose,
|
|
|
|
hbool_t reset_stats, hbool_t display_stats,
|
|
|
|
hbool_t display_detailed_stats, hbool_t do_inserts, hbool_t do_moves,
|
|
|
|
hbool_t move_to_main_addr, hbool_t do_destroys,
|
|
|
|
hbool_t do_mult_ro_protects, int dirty_destroys, int dirty_unprotects);
|
|
|
|
|
|
|
|
H5TEST_DLL void hl_row_major_scan_forward(H5F_t *file_ptr, int32_t max_index, hbool_t verbose,
|
|
|
|
hbool_t reset_stats, hbool_t display_stats,
|
|
|
|
hbool_t display_detailed_stats, hbool_t do_inserts);
|
|
|
|
|
|
|
|
H5TEST_DLL void row_major_scan_backward(H5F_t *file_ptr, int32_t max_index, int32_t lag, hbool_t verbose,
|
|
|
|
hbool_t reset_stats, hbool_t display_stats,
|
|
|
|
hbool_t display_detailed_stats, hbool_t do_inserts, hbool_t do_moves,
|
|
|
|
hbool_t move_to_main_addr, hbool_t do_destroys,
|
|
|
|
hbool_t do_mult_ro_protects, int dirty_destroys,
|
|
|
|
int dirty_unprotects);
|
|
|
|
|
|
|
|
H5TEST_DLL void hl_row_major_scan_backward(H5F_t *file_ptr, int32_t max_index, hbool_t verbose,
|
|
|
|
hbool_t reset_stats, hbool_t display_stats,
|
|
|
|
hbool_t display_detailed_stats, hbool_t do_inserts);
|
|
|
|
|
|
|
|
H5TEST_DLL void col_major_scan_forward(H5F_t *file_ptr, int32_t max_index, int32_t lag, hbool_t verbose,
|
|
|
|
hbool_t reset_stats, hbool_t display_stats,
|
|
|
|
hbool_t display_detailed_stats, hbool_t do_inserts,
|
|
|
|
int dirty_unprotects);
|
|
|
|
|
|
|
|
H5TEST_DLL void hl_col_major_scan_forward(H5F_t *file_ptr, int32_t max_index, hbool_t verbose,
|
|
|
|
hbool_t reset_stats, hbool_t display_stats,
|
|
|
|
hbool_t display_detailed_stats, hbool_t do_inserts,
|
|
|
|
int dirty_unprotects);
|
|
|
|
|
|
|
|
H5TEST_DLL void col_major_scan_backward(H5F_t *file_ptr, int32_t max_index, int32_t lag, hbool_t verbose,
|
|
|
|
hbool_t reset_stats, hbool_t display_stats,
|
|
|
|
hbool_t display_detailed_stats, hbool_t do_inserts,
|
|
|
|
int dirty_unprotects);
|
|
|
|
|
|
|
|
H5TEST_DLL void hl_col_major_scan_backward(H5F_t *file_ptr, int32_t max_index, hbool_t verbose,
|
|
|
|
hbool_t reset_stats, hbool_t display_stats,
|
|
|
|
hbool_t display_detailed_stats, hbool_t do_inserts,
|
|
|
|
int dirty_unprotects);
|
|
|
|
|
|
|
|
H5TEST_DLL void flush_cache(H5F_t *file_ptr, hbool_t destroy_entries, hbool_t dump_stats,
|
|
|
|
hbool_t dump_detailed_stats);
|
|
|
|
|
|
|
|
H5TEST_DLL void unpin_entry(int32_t type, int32_t idx);
|
|
|
|
|
|
|
|
H5TEST_DLL void unprotect_entry(H5F_t *file_ptr, int32_t type, int32_t idx, unsigned int flags);
|
2006-01-29 10:34:14 +08:00
|
|
|
|
2016-05-05 00:29:52 +08:00
|
|
|
H5TEST_DLL void verify_clean(void);
|
2006-01-29 10:34:14 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
H5TEST_DLL void verify_entry_status(H5C_t *cache_ptr, int tag, int num_entries,
|
|
|
|
struct expected_entry_status expected[]);
|
2006-10-18 18:51:26 +08:00
|
|
|
|
2016-05-05 00:29:52 +08:00
|
|
|
H5TEST_DLL void verify_unprotected(void);
|
2006-01-29 10:34:14 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
H5TEST_DLL void create_flush_dependency(int32_t parent_type, int32_t parent_idx, int32_t child_type,
|
|
|
|
int32_t child_idx);
|
[svn-r16587] Description:
Add infrastructure & tests for "flush dependencies" in metadata cache,
which allow relationships that specify which order to flush metadata entries in.
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/C++ & FORTRAN, w/threadsafe,
in debug 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 production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
Mac OS X/32 10.5.6 (amazon) in debug mode
Mac OS X/32 10.5.6 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
2009-03-18 01:08:12 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
H5TEST_DLL void destroy_flush_dependency(int32_t parent_type, int32_t parent_idx, int32_t child_type,
|
|
|
|
int32_t child_idx);
|
[svn-r16587] Description:
Add infrastructure & tests for "flush dependencies" in metadata cache,
which allow relationships that specify which order to flush metadata entries in.
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/C++ & FORTRAN, w/threadsafe,
in debug 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 production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
Mac OS X/32 10.5.6 (amazon) in debug mode
Mac OS X/32 10.5.6 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
2009-03-18 01:08:12 +08:00
|
|
|
|
[svn-r18917] Description:
Bring r18911 (plus some adaptions to match the code on the trunk)
from the metadata journaling "merging" branch to the trunk:
More general changes to align trunk with eventual changes from
metadata journaling branch.
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 (amani) 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-amd64 2.6 (abe) w/parallel, w/FORTRAN, in debug mode
Mac OS X/32 10.6.3 (amazon) in debug mode
Mac OS X/32 10.6.3 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
2010-05-28 04:27:13 +08:00
|
|
|
/*** H5AC level utility functions ***/
|
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
H5TEST_DLL hbool_t resize_configs_are_equal(const H5C_auto_size_ctl_t *a, const H5C_auto_size_ctl_t *b,
|
|
|
|
hbool_t compare_init);
|
2010-06-01 02:27:33 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
H5TEST_DLL void check_and_validate_cache_hit_rate(hid_t file_id, double *hit_rate_ptr, hbool_t dump_data,
|
|
|
|
int64_t min_accesses, double min_hit_rate);
|
[svn-r18917] Description:
Bring r18911 (plus some adaptions to match the code on the trunk)
from the metadata journaling "merging" branch to the trunk:
More general changes to align trunk with eventual changes from
metadata journaling branch.
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 (amani) 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-amd64 2.6 (abe) w/parallel, w/FORTRAN, in debug mode
Mac OS X/32 10.6.3 (amazon) in debug mode
Mac OS X/32 10.6.3 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
2010-05-28 04:27:13 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
H5TEST_DLL void check_and_validate_cache_size(hid_t file_id, size_t *max_size_ptr, size_t *min_clean_size_ptr,
|
|
|
|
size_t *cur_size_ptr, int32_t *cur_num_entries_ptr,
|
|
|
|
hbool_t dump_data);
|
[svn-r18917] Description:
Bring r18911 (plus some adaptions to match the code on the trunk)
from the metadata journaling "merging" branch to the trunk:
More general changes to align trunk with eventual changes from
metadata journaling branch.
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 (amani) 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-amd64 2.6 (abe) w/parallel, w/FORTRAN, in debug mode
Mac OS X/32 10.6.3 (amazon) in debug mode
Mac OS X/32 10.6.3 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
2010-05-28 04:27:13 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
H5TEST_DLL void validate_mdc_config(hid_t file_id, H5AC_cache_config_t *ext_config_ptr, hbool_t compare_init,
|
|
|
|
int test_num);
|
[svn-r18917] Description:
Bring r18911 (plus some adaptions to match the code on the trunk)
from the metadata journaling "merging" branch to the trunk:
More general changes to align trunk with eventual changes from
metadata journaling branch.
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 (amani) 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-amd64 2.6 (abe) w/parallel, w/FORTRAN, in debug mode
Mac OS X/32 10.6.3 (amazon) in debug mode
Mac OS X/32 10.6.3 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
2010-05-28 04:27:13 +08:00
|
|
|
|
2015-06-18 08:58:49 +08:00
|
|
|
/** Debugging functions -- normally commented out ***/
|
|
|
|
#if 0
|
2016-05-05 00:29:52 +08:00
|
|
|
H5TEST_DLL void dump_LRU(H5F_t * file_ptr);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2015-06-18 08:58:49 +08:00
|
|
|
|
2021-03-04 20:29:10 +08:00
|
|
|
#endif /* CACHE_COMMON_H */
|