summaryrefslogtreecommitdiff
path: root/sys-fabric/infinipath-psm/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-12-14 13:26:14 +0000
committerV3n3RiX <venerix@redcorelinux.org>2020-12-14 13:26:14 +0000
commit6abbf81ef2f298e3221ff5e67a1f3c5f23958212 (patch)
tree25413d1cb3a0cbfe36029db32398c0f333609215 /sys-fabric/infinipath-psm/files
parent9c417bacd51da6d8b57fa9f37425161d30d4b95b (diff)
gentoo resync : 14.12.2020
Diffstat (limited to 'sys-fabric/infinipath-psm/files')
-rw-r--r--sys-fabric/infinipath-psm/files/infinipath-psm-3.2-fno-common.patch79
1 files changed, 79 insertions, 0 deletions
diff --git a/sys-fabric/infinipath-psm/files/infinipath-psm-3.2-fno-common.patch b/sys-fabric/infinipath-psm/files/infinipath-psm-3.2-fno-common.patch
new file mode 100644
index 000000000000..7f376f009e75
--- /dev/null
+++ b/sys-fabric/infinipath-psm/files/infinipath-psm-3.2-fno-common.patch
@@ -0,0 +1,79 @@
+Taken From: https://build.opensuse.org/package/view_file/science:HPC:Head/infinipath-psm/Add-missing-extern-keywords.patch?expand=1
+Author: Nicolas Morey-Chaisemartin <nmoreychaisemartin@suse.com>
+
+--- psm_error.h
++++ psm_error.h
+@@ -42,7 +42,7 @@
+ #define PSMI_EP_NORETURN ((psm_ep_t) -2)
+ #define PSMI_EP_LOGEVENT ((psm_ep_t) -3)
+
+-psm_ep_errhandler_t psmi_errhandler_global;
++extern psm_ep_errhandler_t psmi_errhandler_global;
+
+ psm_error_t psmi_handle_error(psm_ep_t ep, psm_error_t error,
+ const char *buf, ...)
+--- psm_user.h
++++ psm_user.h
+@@ -100,7 +100,7 @@ psm_error_t psmi_mq_wait_internal(psm_mq_req_t *ireq);
+ #endif
+
+ #ifdef PSMI_PLOCK_IS_SPINLOCK
+- psmi_spinlock_t psmi_progress_lock;
++ extern psmi_spinlock_t psmi_progress_lock;
+ #define PSMI_PLOCK_INIT() psmi_spin_init(&psmi_progress_lock)
+ #define PSMI_PLOCK_TRY() psmi_spin_trylock(&psmi_progress_lock)
+ #define PSMI_PLOCK() psmi_spin_lock(&psmi_progress_lock)
+@@ -109,8 +109,8 @@ psm_error_t psmi_mq_wait_internal(psm_mq_req_t *ireq);
+ #define PSMI_PUNLOCK_ASSERT()
+ #define PSMI_PLOCK_DISABLED 0
+ #elif defined(PSMI_PLOCK_IS_MUTEXLOCK_DEBUG)
+- pthread_mutex_t psmi_progress_lock;
+- pthread_t psmi_progress_lock_owner;
++ extern pthread_mutex_t psmi_progress_lock;
++ extern pthread_t psmi_progress_lock_owner;
+ #define PSMI_PLOCK_NO_OWNER ((pthread_t)(-1))
+
+ PSMI_ALWAYS_INLINE(
+--- psm_utils.h
++++ psm_utils.h
+@@ -254,7 +254,7 @@ int psmi_diags(void);
+ * Fault injection
+ */
+ struct psmi_faultinj_spec;
+-int psmi_faultinj_enabled; /* use macro to test */
++extern int psmi_faultinj_enabled; /* use macro to test */
+ #if 1 /* possible to disable at compile time */
+ #define PSMI_FAULTINJ_ENABLED() (!!psmi_faultinj_enabled)
+ #else
+--- ptl_am/ptl_fwd.h
++++ ptl_am/ptl_fwd.h
+@@ -47,7 +47,7 @@
+ #endif
+
+ /* Symbol in am ptl */
+-struct ptl_ctl_init psmi_ptl_amsh;
++extern struct ptl_ctl_init psmi_ptl_amsh;
+
+ /* Special non-ptl function exposed to pre-attach to shm segment */
+ psm_error_t psmi_shm_attach(psm_ep_t ep, int *shmidx_o);
+--- ptl_ips/ptl_fwd.h
++++ ptl_ips/ptl_fwd.h
+@@ -38,5 +38,5 @@
+ typedef struct ptl_epaddr ips_epaddr_t;
+
+ /* Symbol in ips ptl */
+-struct ptl_ctl_init psmi_ptl_ips;
++extern struct ptl_ctl_init psmi_ptl_ips;
+ #endif /* _PTL_FWD_IPS_H */
+--- ptl_self/ptl_fwd.h
++++ ptl_self/ptl_fwd.h
+@@ -35,7 +35,7 @@
+ #define _PTL_FWD_SELF_H
+
+ /* Symbol in am ptl */
+-struct ptl_ctl_init psmi_ptl_self;
++extern struct ptl_ctl_init psmi_ptl_self;
+
+ #endif
+
+