diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2005-05-24 21:00:16 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2005-05-24 21:00:16 (GMT) |
commit | 38b33b83308d00f6d882bba87069e2b77fd95443 (patch) | |
tree | 0f7eb0729558ce54c03b29b3b9c33bdbe4853ce2 /src/H5F.c | |
parent | f1aa157f580efc4328cf8b194822b7229a738bee (diff) | |
download | hdf5-38b33b83308d00f6d882bba87069e2b77fd95443.zip hdf5-38b33b83308d00f6d882bba87069e2b77fd95443.tar.gz hdf5-38b33b83308d00f6d882bba87069e2b77fd95443.tar.bz2 |
[svn-r10795] Purpose: Bug fix
Description: See details from Bug #213. Family member file size wasn't saved
anywhere in file. When family file is opened, the first member size determine
the member size.
Solution: This is the third step of checkin. h5repart has been modified. If h5repart is used
to change the size of family member file, the new size(actual member size) is saved in the superblock.
In the second step of checkin, multi driver is checked against the driver
name saved in superblock. Wrong driver will result in a failure with an error message indicating
multi driver should be used. This change includes split driver because it's a special case for multi
driver.
In the first step of checkin. Family member size and name template(unused at this stage) are saved
in file superblock. When file is reopened,the size passed in thrin superblock. A different size
will trigger a failure with an error message indicating the right size. Wrong driver to open family
file will cause a failure, too.
Platforms tested: h5committest and fuss
Misc. update: RELEASE.txt
Diffstat (limited to 'src/H5F.c')
-rw-r--r-- | src/H5F.c | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -2310,7 +2310,12 @@ done: * Sept 12, 2003 * * Modifications: - * + * Raymond Lu + * May 24, 2005 + * Started to check if driver(only family and multi drivers) + * matches driver information saved in the superblock. Wrong + * driver will result in a failure. + * *------------------------------------------------------------------------- */ static herr_t |