summarylogtreecommitdiffstats
path: root/0005-Fix-missing-macros-32.patch
diff options
context:
space:
mode:
Diffstat (limited to '0005-Fix-missing-macros-32.patch')
-rw-r--r--0005-Fix-missing-macros-32.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/0005-Fix-missing-macros-32.patch b/0005-Fix-missing-macros-32.patch
deleted file mode 100644
index ea007e7204eb..000000000000
--- a/0005-Fix-missing-macros-32.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- a/opal/mca/memory/patcher/memory_patcher_component.c
-+++ b/opal/mca/memory/patcher/memory_patcher_component.c
-@@ -276,14 +276,17 @@
- {
- int result = 0;
-
-- if (advice == MADV_DONTNEED ||
-+ if (
-+#ifdef POSIX_MADV_DONTNEED
-+ advice == POSIX_MADV_DONTNEED ||
-+#endif
- #ifdef MADV_FREE
- advice == MADV_FREE ||
- #endif
- #ifdef MADV_REMOVE
- advice == MADV_REMOVE ||
- #endif
-- advice == POSIX_MADV_DONTNEED)
-+ advice == MADV_DONTNEED)
- {
- opal_mem_hooks_release_hook (start, length, true);
- }