Accepting request 946105 from science:HPC
OBS-URL: https://build.opensuse.org/request/show/946105 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/openucx?expand=0&rev=21
This commit is contained in:
commit
98063d874c
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 13 08:42:05 UTC 2022 - Nicolas Morey-Chaisemartin <nmoreychaisemartin@suse.com>
|
||||||
|
|
||||||
|
- Fix UCM bistro support on non s390x archs
|
||||||
|
- Add ucm-fix-UCX_MEM_MALLOC_RELOC.patch to disable malloc relocations by default (bsc#1194369)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Sep 23 07:35:57 UTC 2021 - Nicolas Morey-Chaisemartin <nmoreychaisemartin@suse.com>
|
Thu Sep 23 07:35:57 UTC 2021 - Nicolas Morey-Chaisemartin <nmoreychaisemartin@suse.com>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package openucx
|
# spec file for package openucx
|
||||||
#
|
#
|
||||||
# Copyright (c) 2021 SUSE LLC
|
# Copyright (c) 2022 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -29,6 +29,7 @@ URL: http://openucx.org/
|
|||||||
Source: https://github.com/openucx/ucx/releases/download/v%version/ucx-%version.tar.gz
|
Source: https://github.com/openucx/ucx/releases/download/v%version/ucx-%version.tar.gz
|
||||||
Source1: baselibs.conf
|
Source1: baselibs.conf
|
||||||
Patch1: openucx-s390x-support.patch
|
Patch1: openucx-s390x-support.patch
|
||||||
|
Patch2: ucm-fix-UCX_MEM_MALLOC_RELOC.patch
|
||||||
BuildRequires: autoconf >= 2.63
|
BuildRequires: autoconf >= 2.63
|
||||||
BuildRequires: automake >= 1.10
|
BuildRequires: automake >= 1.10
|
||||||
BuildRequires: binutils-devel
|
BuildRequires: binutils-devel
|
||||||
@ -133,7 +134,10 @@ hardware.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -qn ucx-%version
|
%setup -qn ucx-%version
|
||||||
|
%ifarch s390x
|
||||||
%patch1
|
%patch1
|
||||||
|
%endif
|
||||||
|
%patch2
|
||||||
|
|
||||||
%build
|
%build
|
||||||
autoreconf -fi
|
autoreconf -fi
|
||||||
|
23
ucm-fix-UCX_MEM_MALLOC_RELOC.patch
Normal file
23
ucm-fix-UCX_MEM_MALLOC_RELOC.patch
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
commit 57ca2c53bcef6de7ca33767cedab120afd9a7601
|
||||||
|
Author: Nicolas Morey-Chaisemartin <nmoreychaisemartin@suse.com>
|
||||||
|
Date: Thu Jan 13 12:00:19 2022 +0100
|
||||||
|
|
||||||
|
ucm: fix UCX_MEM_MALLOC_RELOC
|
||||||
|
|
||||||
|
Should be disabled by default but is enabled by the parser default value
|
||||||
|
|
||||||
|
Signed-off-by: Nicolas Morey-Chaisemartin <nmoreychaisemartin@suse.com>
|
||||||
|
|
||||||
|
diff --git src/ucs/config/ucm_opts.c src/ucs/config/ucm_opts.c
|
||||||
|
index 89cccc487231..b13360980793 100644
|
||||||
|
--- src/ucs/config/ucm_opts.c
|
||||||
|
+++ src/ucs/config/ucm_opts.c
|
||||||
|
@@ -62,7 +62,7 @@ static ucs_config_field_t ucm_global_config_table[] = {
|
||||||
|
ucs_offsetof(ucm_global_config_t, enable_malloc_hooks),
|
||||||
|
UCS_CONFIG_TYPE_BOOL},
|
||||||
|
|
||||||
|
- {"MALLOC_RELOC", "yes",
|
||||||
|
+ {"MALLOC_RELOC", "no",
|
||||||
|
"Enable installing malloc symbols in the relocation table.\n"
|
||||||
|
"This is unsafe and off by default, because sometimes glibc\n"
|
||||||
|
"calls malloc/free without going through the relocation table,\n"
|
Loading…
Reference in New Issue
Block a user