Skip to content

Commit c2abd57

Browse files
markalleggouaillardet
authored andcommitted
[mpich romio e1d42af] making romio GPFS able to build
> Pulled in from mpich romio, branch "main". > Their commit message is below. > > This is part of a batch of commits from the > following set of PRs: > * pmodels/mpich#4943 > -- darray fix which contains a flatten fix > 73a3eba > c4b5762 > * pmodels/mpich#4995 > -- write strided fix > bbb5210 > * pmodels/mpich#5100 > -- build fix for -Wpedantic > ad0e435 > * pmodels/mpich#5099 > -- build fix, they had let file-system=...gpfs bit rot > e1d42af > 313289a > 83bbb82 > * pmodels/mpich#5150 > -- build fix, configure-related _GNU_SOURCE > a712b56 > 5a036e7 > * pmodels/mpich#5184 > -- build fix, continuation of _GNU_SOURCE fix > d97c4ee Configuring mpich with --with-file-system=nfs+ufs+gpfs it wouldn't build because the last arg of ADIOI_OneSidedWriteAggregation() changed, so this PR adds an & to it Signed-off-by: Mark Allen <markalle@us.ibm.com>
1 parent 995944e commit c2abd57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

3rd-party/romio341/adio/ad_gpfs/ad_gpfs_wrcoll.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ void ADIOI_GPFS_WriteStridedColl(ADIO_File fd, const void *buf, int count,
360360
ADIOI_OneSidedWriteAggregation(fd, offset_list, len_list, contig_access_count, buf,
361361
datatype, error_code, firstFileOffset, lastFileOffset,
362362
currentValidDataIndex, fd_start, fd_end, &holeFound,
363-
noStripeParms);
363+
&noStripeParms);
364364
romio_onesided_no_rmw = prev_romio_onesided_no_rmw;
365365
GPFSMPIO_T_CIO_REPORT(1, fd, myrank, nprocs);
366366
ADIOI_Free(offset_list);

0 commit comments

Comments
 (0)