diff options
author | Neil Fortner <nfortne2@hdfgroup.org> | 2009-02-27 17:01:00 (GMT) |
---|---|---|
committer | Neil Fortner <nfortne2@hdfgroup.org> | 2009-02-27 17:01:00 (GMT) |
commit | ef425724f749705c76b43c17f8da5d2aa066cb00 (patch) | |
tree | f9e36f23d301725e5d447dcc970c15d3997d2632 /src/H5Dpkg.h | |
parent | d75cd486e1394f023f0cc5d8ddfec63f96b8763b (diff) | |
download | hdf5-ef425724f749705c76b43c17f8da5d2aa066cb00.zip hdf5-ef425724f749705c76b43c17f8da5d2aa066cb00.tar.gz hdf5-ef425724f749705c76b43c17f8da5d2aa066cb00.tar.bz2 |
[svn-r16523] Purpose: Fix bugs related to H5Dset_extent and fill values
Description:
In some situations it was possible for the fill value to not be written to parts
of a chunked dataset, particularly when extending and/or shrinking. Prior to
the fix for the chunk cache (1015) these bugs would have been exceedingly rare.
Tested: jam, smirom, linew (h5committest)
Diffstat (limited to 'src/H5Dpkg.h')
-rw-r--r-- | src/H5Dpkg.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5Dpkg.h b/src/H5Dpkg.h index 3aa425b..7c94906 100644 --- a/src/H5Dpkg.h +++ b/src/H5Dpkg.h @@ -572,7 +572,8 @@ H5_DLL herr_t H5D_contig_copy(H5F_t *f_src, const H5O_layout_t *layout_src, H5F_ H5O_layout_t *layout_dst, H5T_t *src_dtype, H5O_copy_t *cpy_info, hid_t dxpl_id); /* Functions that operate on chunked dataset storage */ -H5_DLL hbool_t H5D_chunk_cacheable(const H5D_io_info_t *io_info); +H5_DLL htri_t H5D_chunk_cacheable(const H5D_io_info_t *io_info, haddr_t caddr, + hbool_t write_op); H5_DLL herr_t H5D_chunk_cinfo_cache_reset(H5D_chunk_cached_t *last); H5_DLL herr_t H5D_chunk_create(H5D_t *dset /*in,out*/, hid_t dxpl_id); H5_DLL herr_t H5D_chunk_init(H5F_t *f, hid_t dapl_id, hid_t dxpl_id, const H5D_t *dset); |