summaryrefslogtreecommitdiffstats
path: root/src/H5FDfphdf5.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2003-10-28 15:33:56 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2003-10-28 15:33:56 (GMT)
commit10b6bab2abbf239495fa59f459ce0134c9a03bb0 (patch)
tree1f669dcf90a899587fbaf10d4f3bc946115a13f8 /src/H5FDfphdf5.c
parentf4240b2639ccdd5f0444f7a8892afb6759da9989 (diff)
downloadhdf5-10b6bab2abbf239495fa59f459ce0134c9a03bb0.zip
hdf5-10b6bab2abbf239495fa59f459ce0134c9a03bb0.tar.gz
hdf5-10b6bab2abbf239495fa59f459ce0134c9a03bb0.tar.bz2
[svn-r7767] Purpose:
Code cleanup Description: Untwist the last few sections of code before starting on fixing the problems with reading off the end of the file in earnest. Platforms tested: FreeBSD 4.9 (sleipnir) FreeBSD 4.9 (sleipnir) w/parallel h5committest not necessary - parallel only changes
Diffstat (limited to 'src/H5FDfphdf5.c')
-rw-r--r--src/H5FDfphdf5.c28
1 files changed, 13 insertions, 15 deletions
diff --git a/src/H5FDfphdf5.c b/src/H5FDfphdf5.c
index 842e941..d43c71f 100644
--- a/src/H5FDfphdf5.c
+++ b/src/H5FDfphdf5.c
@@ -1240,6 +1240,11 @@ H5FD_fphdf5_read(H5FD_t *_file, H5FD_mem_t mem_type, hid_t dxpl_id,
* MPI_File_set_view and reset the address for the read to zero
*/
mpi_off = 0;
+
+ /* Read the data. */
+ if ((mrc = MPI_File_read_at_all(file->f, mpi_off, buf, size_i,
+ buf_type, &status)) != MPI_SUCCESS)
+ HMPI_GOTO_ERROR(FAIL, "MPI_File_read_at_all failed", mrc)
} else {
/* Sanity check that independent I/O must be occuring */
assert(xfer_mode==H5FD_MPIO_INDEPENDENT);
@@ -1249,17 +1254,11 @@ H5FD_fphdf5_read(H5FD_t *_file, H5FD_mem_t mem_type, hid_t dxpl_id,
* btype, ftype, and disp fields are not used.
*/
buf_type = MPI_BYTE;
- }
- /* Read the data. */
- if (!use_view_this_time) {
+ /* Read the data. */
if ((mrc = MPI_File_read_at(file->f, mpi_off, buf, size_i,
buf_type, &status)) != MPI_SUCCESS)
HMPI_GOTO_ERROR(FAIL, "MPI_File_read_at failed", mrc)
- } else {
- if ((mrc = MPI_File_read_at_all(file->f, mpi_off, buf, size_i,
- buf_type, &status)) != MPI_SUCCESS)
- HMPI_GOTO_ERROR(FAIL, "MPI_File_read_at_all failed", mrc)
}
/*
@@ -1503,25 +1502,24 @@ H5FD_fphdf5_write_real(H5FD_t *_file, hid_t dxpl_id, haddr_t addr, int size,
* MPI_File_set_view and reset the address for the read to zero
*/
mpi_off = 0;
+
+ /* Write the data. */
+ /*OKAY: CAST DISCARDS CONST QUALIFIER*/
+ if ((mrc = MPI_File_write_at_all(file->f, mpi_off, (void*)buf,
+ size, buf_type, &status)) != MPI_SUCCESS)
+ HMPI_GOTO_ERROR(FAIL, "MPI_File_write_at_all failed", mrc)
} else {
/*
* Prepare for a simple xfer of a contiguous block of bytes. The
* btype and ftype.
*/
buf_type = MPI_BYTE;
- }
- /* Write the data. */
- if (!use_view_this_time) {
+ /* Write the data. */
/*OKAY: CAST DISCARDS CONST QUALIFIER*/
if ((mrc = MPI_File_write_at(file->f, mpi_off, (void*)buf,
size, buf_type, &status)) != MPI_SUCCESS)
HMPI_GOTO_ERROR(FAIL, "MPI_File_write_at failed", mrc)
- } else {
- /*OKAY: CAST DISCARDS CONST QUALIFIER*/
- if ((mrc = MPI_File_write_at_all(file->f, mpi_off, (void*)buf,
- size, buf_type, &status)) != MPI_SUCCESS)
- HMPI_GOTO_ERROR(FAIL, "MPI_File_write_at_all failed", mrc)
}
/* Reset the file view when we used MPI derived types */