summaryrefslogtreecommitdiff
path: root/sci-libs/h5part/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2017-10-09 18:53:29 +0100
committerV3n3RiX <venerix@redcorelinux.org>2017-10-09 18:53:29 +0100
commit4f2d7949f03e1c198bc888f2d05f421d35c57e21 (patch)
treeba5f07bf3f9d22d82e54a462313f5d244036c768 /sci-libs/h5part/files
reinit the tree, so we can have metadata
Diffstat (limited to 'sci-libs/h5part/files')
-rw-r--r--sci-libs/h5part/files/h5part-1.6.6-mpio.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/sci-libs/h5part/files/h5part-1.6.6-mpio.patch b/sci-libs/h5part/files/h5part-1.6.6-mpio.patch
new file mode 100644
index 000000000000..152cfec34985
--- /dev/null
+++ b/sci-libs/h5part/files/h5part-1.6.6-mpio.patch
@@ -0,0 +1,26 @@
+https://github.com/quinoacomputing/H5Part/commit/b8b106c368c3400b4df3d38e97ae2943d37d3c7d.patch
+
+From b8b106c368c3400b4df3d38e97ae2943d37d3c7d Mon Sep 17 00:00:00 2001
+From: Jozsef Bakosi <jbakosi@lanl.gov>
+Date: Thu, 28 Jul 2016 08:37:24 -0600
+Subject: [PATCH] Replace H5Pset_fapl_mpiposix with H5Pset_fapl_mpio
+
+Based on the advice at
+http://www.unidata.ucar.edu/mailing_lists/archives/netcdfgroup/2014/msg00188.html.
+---
+ src/H5Part.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/H5Part.c b/src/H5Part.c
+index 433a574..8a1b893 100644
+--- a/src/H5Part.c
++++ b/src/H5Part.c
+@@ -246,7 +246,7 @@ _H5Part_open_file (
+ /* select the HDF5 VFD */
+ if (flags & H5PART_VFD_MPIPOSIX) {
+ _H5Part_print_info ( "Selecting MPI-POSIX VFD" );
+- if (H5Pset_fapl_mpiposix ( f->access_prop, comm, 0 ) < 0) {
++ if (H5Pset_fapl_mpio ( f->access_prop, comm, 0 ) < 0) {
+ HANDLE_H5P_SET_FAPL_ERR;
+ goto error_cleanup;
+ }