Skip to content

Commit 01ae0c2

Browse files
committed
fs/ime: fix compilation errors due to missing header inclusion
OpenMPI doesn't compile anymore with IME because the header file "ompi/mca/fs/base/base.h" needs to be include in every file where mca_fs_base_get_mpi_err() is used. Signed-off-by: Sylvain Didelot <[email protected]>
1 parent e6a344b commit 01ae0c2

File tree

5 files changed

+5
-0
lines changed

5 files changed

+5
-0
lines changed

ompi/mca/fs/ime/fs_ime_file_close.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
#include "mpi.h"
1616
#include "ompi/constants.h"
17+
#include "ompi/mca/fs/base/base.h"
1718
#include "ompi/mca/fs/fs.h"
1819

1920
/*

ompi/mca/fs/ime/fs_ime_file_delete.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
#include "mpi.h"
1616
#include "ompi/constants.h"
17+
#include "ompi/mca/fs/base/base.h"
1718
#include "ompi/mca/fs/fs.h"
1819

1920
/*

ompi/mca/fs/ime/fs_ime_file_get_size.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
#include "mpi.h"
1616
#include "ompi/constants.h"
17+
#include "ompi/mca/fs/base/base.h"
1718
#include "ompi/mca/fs/fs.h"
1819

1920
/*

ompi/mca/fs/ime/fs_ime_file_set_size.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
#include "mpi.h"
1616
#include "ompi/constants.h"
17+
#include "ompi/mca/fs/base/base.h"
1718
#include "ompi/mca/fs/fs.h"
1819

1920
/*

ompi/mca/fs/ime/fs_ime_file_sync.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
#include "mpi.h"
1616
#include "ompi/constants.h"
17+
#include "ompi/mca/fs/base/base.h"
1718
#include "ompi/mca/fs/fs.h"
1819

1920
int mca_fs_ime_file_sync (ompio_file_t *fh)

0 commit comments

Comments
 (0)