Accepting request 763762 from home:NMoreyChaisemartin:branches:science:HPC
- Update to v27.0 (bsc#1160338) - No release notes available - Dropped patches merged upstream: - bnxt_re-lib-Add-remaining-pci-ids-for-gen-P5-devices.patch - bnxt_re-lib-Recognize-additional-5750x-device-ID-s.patch - Add patches to support older HW (nes, cxgb3) that was dropped upstream - Revert-Update-kernel-headers.patch - Revert-libcxgb3-Remove-libcxgb3-from-rdma-core.patch - Revert-libnes-Remove-libnes-from-rdma-core.patch OBS-URL: https://build.opensuse.org/request/show/763762 OBS-URL: https://build.opensuse.org/package/show/science:HPC/rdma-core?expand=0&rev=126
This commit is contained in:
parent
a48a7fa925
commit
53b40e150c
252
Revert-Update-kernel-headers.patch
Normal file
252
Revert-Update-kernel-headers.patch
Normal file
@ -0,0 +1,252 @@
|
||||
commit a53161ed3b4ed1502c9fa47e82bd79dec29714ad
|
||||
Author: Nicolas Morey-Chaisemartin <nmoreychaisemartin@suse.com>
|
||||
Date: Fri Jan 10 09:24:53 2020 +0100
|
||||
|
||||
Revert "Update kernel headers"
|
||||
|
||||
This reverts commit c21a3cf5d9e4cef0904b4d47f1cb43be9efdbf90.
|
||||
|
||||
diff --git kernel-headers/CMakeLists.txt kernel-headers/CMakeLists.txt
|
||||
index 2d0766dd1280..13624b22d81b 100644
|
||||
--- kernel-headers/CMakeLists.txt
|
||||
+++ kernel-headers/CMakeLists.txt
|
||||
@@ -1,5 +1,6 @@
|
||||
publish_internal_headers(rdma
|
||||
rdma/bnxt_re-abi.h
|
||||
+ rdma/cxgb3-abi.h
|
||||
rdma/cxgb4-abi.h
|
||||
rdma/efa-abi.h
|
||||
rdma/hns-abi.h
|
||||
@@ -14,6 +15,7 @@ publish_internal_headers(rdma
|
||||
rdma/mlx5_user_ioctl_cmds.h
|
||||
rdma/mlx5_user_ioctl_verbs.h
|
||||
rdma/mthca-abi.h
|
||||
+ rdma/nes-abi.h
|
||||
rdma/ocrdma-abi.h
|
||||
rdma/qedr-abi.h
|
||||
rdma/rdma_netlink.h
|
||||
@@ -58,6 +60,7 @@ endfunction()
|
||||
# Transform the kernel ABIs used by the providers
|
||||
rdma_kernel_provider_abi(
|
||||
rdma/bnxt_re-abi.h
|
||||
+ rdma/cxgb3-abi.h
|
||||
rdma/cxgb4-abi.h
|
||||
rdma/efa-abi.h
|
||||
rdma/hns-abi.h
|
||||
@@ -66,6 +69,7 @@ rdma_kernel_provider_abi(
|
||||
rdma/mlx4-abi.h
|
||||
rdma/mlx5-abi.h
|
||||
rdma/mthca-abi.h
|
||||
+ rdma/nes-abi.h
|
||||
rdma/ocrdma-abi.h
|
||||
rdma/qedr-abi.h
|
||||
rdma/rdma_user_rxe.h
|
||||
diff --git kernel-headers/rdma/cxgb3-abi.h kernel-headers/rdma/cxgb3-abi.h
|
||||
new file mode 100644
|
||||
index 000000000000..85aed672f43e
|
||||
--- /dev/null
|
||||
+++ kernel-headers/rdma/cxgb3-abi.h
|
||||
@@ -0,0 +1,82 @@
|
||||
+/* SPDX-License-Identifier: ((GPL-2.0 WITH Linux-syscall-note) OR Linux-OpenIB) */
|
||||
+/*
|
||||
+ * Copyright (c) 2006 Chelsio, Inc. All rights reserved.
|
||||
+ *
|
||||
+ * This software is available to you under a choice of one of two
|
||||
+ * licenses. You may choose to be licensed under the terms of the GNU
|
||||
+ * General Public License (GPL) Version 2, available from the file
|
||||
+ * COPYING in the main directory of this source tree, or the
|
||||
+ * OpenIB.org BSD license below:
|
||||
+ *
|
||||
+ * Redistribution and use in source and binary forms, with or
|
||||
+ * without modification, are permitted provided that the following
|
||||
+ * conditions are met:
|
||||
+ *
|
||||
+ * - Redistributions of source code must retain the above
|
||||
+ * copyright notice, this list of conditions and the following
|
||||
+ * disclaimer.
|
||||
+ *
|
||||
+ * - Redistributions in binary form must reproduce the above
|
||||
+ * copyright notice, this list of conditions and the following
|
||||
+ * disclaimer in the documentation and/or other materials
|
||||
+ * provided with the distribution.
|
||||
+ *
|
||||
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
||||
+ * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
||||
+ * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
+ * SOFTWARE.
|
||||
+ */
|
||||
+#ifndef CXGB3_ABI_USER_H
|
||||
+#define CXGB3_ABI_USER_H
|
||||
+
|
||||
+#include <linux/types.h>
|
||||
+
|
||||
+#define IWCH_UVERBS_ABI_VERSION 1
|
||||
+
|
||||
+/*
|
||||
+ * Make sure that all structs defined in this file remain laid out so
|
||||
+ * that they pack the same way on 32-bit and 64-bit architectures (to
|
||||
+ * avoid incompatibility between 32-bit userspace and 64-bit kernels).
|
||||
+ * In particular do not use pointer types -- pass pointers in __aligned_u64
|
||||
+ * instead.
|
||||
+ */
|
||||
+struct iwch_create_cq_req {
|
||||
+ __aligned_u64 user_rptr_addr;
|
||||
+};
|
||||
+
|
||||
+struct iwch_create_cq_resp_v0 {
|
||||
+ __aligned_u64 key;
|
||||
+ __u32 cqid;
|
||||
+ __u32 size_log2;
|
||||
+};
|
||||
+
|
||||
+struct iwch_create_cq_resp {
|
||||
+ __aligned_u64 key;
|
||||
+ __u32 cqid;
|
||||
+ __u32 size_log2;
|
||||
+ __u32 memsize;
|
||||
+ __u32 reserved;
|
||||
+};
|
||||
+
|
||||
+struct iwch_create_qp_resp {
|
||||
+ __aligned_u64 key;
|
||||
+ __aligned_u64 db_key;
|
||||
+ __u32 qpid;
|
||||
+ __u32 size_log2;
|
||||
+ __u32 sq_size_log2;
|
||||
+ __u32 rq_size_log2;
|
||||
+};
|
||||
+
|
||||
+struct iwch_reg_user_mr_resp {
|
||||
+ __u32 pbl_addr;
|
||||
+};
|
||||
+
|
||||
+struct iwch_alloc_pd_resp {
|
||||
+ __u32 pdid;
|
||||
+};
|
||||
+
|
||||
+#endif /* CXGB3_ABI_USER_H */
|
||||
diff --git kernel-headers/rdma/nes-abi.h kernel-headers/rdma/nes-abi.h
|
||||
new file mode 100644
|
||||
index 000000000000..f80495baa969
|
||||
--- /dev/null
|
||||
+++ kernel-headers/rdma/nes-abi.h
|
||||
@@ -0,0 +1,115 @@
|
||||
+/* SPDX-License-Identifier: ((GPL-2.0 WITH Linux-syscall-note) OR Linux-OpenIB) */
|
||||
+/*
|
||||
+ * Copyright (c) 2006 - 2011 Intel Corporation. All rights reserved.
|
||||
+ * Copyright (c) 2005 Topspin Communications. All rights reserved.
|
||||
+ * Copyright (c) 2005 Cisco Systems. All rights reserved.
|
||||
+ * Copyright (c) 2005 Open Grid Computing, Inc. All rights reserved.
|
||||
+ *
|
||||
+ * This software is available to you under a choice of one of two
|
||||
+ * licenses. You may choose to be licensed under the terms of the GNU
|
||||
+ * General Public License (GPL) Version 2, available from the file
|
||||
+ * COPYING in the main directory of this source tree, or the
|
||||
+ * OpenIB.org BSD license below:
|
||||
+ *
|
||||
+ * Redistribution and use in source and binary forms, with or
|
||||
+ * without modification, are permitted provided that the following
|
||||
+ * conditions are met:
|
||||
+ *
|
||||
+ * - Redistributions of source code must retain the above
|
||||
+ * copyright notice, this list of conditions and the following
|
||||
+ * disclaimer.
|
||||
+ *
|
||||
+ * - Redistributions in binary form must reproduce the above
|
||||
+ * copyright notice, this list of conditions and the following
|
||||
+ * disclaimer in the documentation and/or other materials
|
||||
+ * provided with the distribution.
|
||||
+ *
|
||||
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
||||
+ * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
||||
+ * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
+ * SOFTWARE.
|
||||
+ *
|
||||
+ */
|
||||
+
|
||||
+#ifndef NES_ABI_USER_H
|
||||
+#define NES_ABI_USER_H
|
||||
+
|
||||
+#include <linux/types.h>
|
||||
+
|
||||
+#define NES_ABI_USERSPACE_VER 2
|
||||
+#define NES_ABI_KERNEL_VER 2
|
||||
+
|
||||
+/*
|
||||
+ * Make sure that all structs defined in this file remain laid out so
|
||||
+ * that they pack the same way on 32-bit and 64-bit architectures (to
|
||||
+ * avoid incompatibility between 32-bit userspace and 64-bit kernels).
|
||||
+ * In particular do not use pointer types -- pass pointers in __u64
|
||||
+ * instead.
|
||||
+ */
|
||||
+
|
||||
+struct nes_alloc_ucontext_req {
|
||||
+ __u32 reserved32;
|
||||
+ __u8 userspace_ver;
|
||||
+ __u8 reserved8[3];
|
||||
+};
|
||||
+
|
||||
+struct nes_alloc_ucontext_resp {
|
||||
+ __u32 max_pds; /* maximum pds allowed for this user process */
|
||||
+ __u32 max_qps; /* maximum qps allowed for this user process */
|
||||
+ __u32 wq_size; /* size of the WQs (sq+rq) allocated to the mmaped area */
|
||||
+ __u8 virtwq; /* flag to indicate if virtual WQ are to be used or not */
|
||||
+ __u8 kernel_ver;
|
||||
+ __u8 reserved[2];
|
||||
+};
|
||||
+
|
||||
+struct nes_alloc_pd_resp {
|
||||
+ __u32 pd_id;
|
||||
+ __u32 mmap_db_index;
|
||||
+};
|
||||
+
|
||||
+struct nes_create_cq_req {
|
||||
+ __aligned_u64 user_cq_buffer;
|
||||
+ __u32 mcrqf;
|
||||
+ __u8 reserved[4];
|
||||
+};
|
||||
+
|
||||
+struct nes_create_qp_req {
|
||||
+ __aligned_u64 user_wqe_buffers;
|
||||
+ __aligned_u64 user_qp_buffer;
|
||||
+};
|
||||
+
|
||||
+enum iwnes_memreg_type {
|
||||
+ IWNES_MEMREG_TYPE_MEM = 0x0000,
|
||||
+ IWNES_MEMREG_TYPE_QP = 0x0001,
|
||||
+ IWNES_MEMREG_TYPE_CQ = 0x0002,
|
||||
+ IWNES_MEMREG_TYPE_MW = 0x0003,
|
||||
+ IWNES_MEMREG_TYPE_FMR = 0x0004,
|
||||
+ IWNES_MEMREG_TYPE_FMEM = 0x0005,
|
||||
+};
|
||||
+
|
||||
+struct nes_mem_reg_req {
|
||||
+ __u32 reg_type; /* indicates if id is memory, QP or CQ */
|
||||
+ __u32 reserved;
|
||||
+};
|
||||
+
|
||||
+struct nes_create_cq_resp {
|
||||
+ __u32 cq_id;
|
||||
+ __u32 cq_size;
|
||||
+ __u32 mmap_db_index;
|
||||
+ __u32 reserved;
|
||||
+};
|
||||
+
|
||||
+struct nes_create_qp_resp {
|
||||
+ __u32 qp_id;
|
||||
+ __u32 actual_sq_size;
|
||||
+ __u32 actual_rq_size;
|
||||
+ __u32 mmap_sq_db_index;
|
||||
+ __u32 mmap_rq_db_index;
|
||||
+ __u32 nes_drv_opt;
|
||||
+};
|
||||
+
|
||||
+#endif /* NES_ABI_USER_H */
|
3148
Revert-libcxgb3-Remove-libcxgb3-from-rdma-core.patch
Normal file
3148
Revert-libcxgb3-Remove-libcxgb3-from-rdma-core.patch
Normal file
File diff suppressed because it is too large
Load Diff
2376
Revert-libnes-Remove-libnes-from-rdma-core.patch
Normal file
2376
Revert-libnes-Remove-libnes-from-rdma-core.patch
Normal file
File diff suppressed because it is too large
Load Diff
2
_service
2
_service
@ -8,7 +8,7 @@
|
||||
<param name="versionformat">@PARENT_TAG@.@TAG_OFFSET@.%h</param>
|
||||
<param name="versionrewrite-pattern">v(.*)</param>
|
||||
<param name="versionrewrite-replacement">\1</param>
|
||||
<param name="revision">9f820de9ca7d6e315be92bc830d354afad3e7960</param>
|
||||
<param name="revision">84caf035ae6123e2296b72006cd2cf698c65eb46</param>
|
||||
<param name="extract">suse/rdma-core.spec</param>
|
||||
</service>
|
||||
<service name="recompress" mode="disabled">
|
||||
|
@ -1,32 +0,0 @@
|
||||
commit 73d13d40ce6ccd62b9e2e3ea24d5cb702b2262db
|
||||
Author: Naresh Kumar PBS <nareshkumar.pbs@broadcom.com>
|
||||
Date: Tue Nov 26 04:05:21 2019 -0500
|
||||
|
||||
bnxt_re/lib: Add remaining pci ids for gen P5 devices
|
||||
|
||||
Making a change to add pci ids for VF and NPAR devices.
|
||||
|
||||
Signed-off-by: Naresh Kumar PBS <nareshkumar.pbs@broadcom.com>
|
||||
Signed-off-by: Devesh Sharma <devesh.sharma@broadcom.com>
|
||||
|
||||
diff --git providers/bnxt_re/main.c providers/bnxt_re/main.c
|
||||
index b1194db78c18..e290a07bc502 100644
|
||||
--- providers/bnxt_re/main.c
|
||||
+++ providers/bnxt_re/main.c
|
||||
@@ -76,9 +76,15 @@ static const struct verbs_match_ent cna_table[] = {
|
||||
CNA(BROADCOM, 0x16F0), /* BCM58730 */
|
||||
CNA(BROADCOM, 0x16F1), /* BCM57452 */
|
||||
CNA(BROADCOM, 0x1750), /* BCM57500 */
|
||||
+ CNA(BROADCOM, 0x1751), /* BCM57504 */
|
||||
+ CNA(BROADCOM, 0x1752), /* BCM57502 */
|
||||
+ CNA(BROADCOM, 0x1803), /* BCM57508 NPAR */
|
||||
+ CNA(BROADCOM, 0x1804), /* BCM57504 NPAR */
|
||||
+ CNA(BROADCOM, 0x1805), /* BCM57502 NPAR */
|
||||
+ CNA(BROADCOM, 0x1807), /* BCM5750x VF */
|
||||
CNA(BROADCOM, 0xD800), /* BCM880xx VF */
|
||||
CNA(BROADCOM, 0xD802), /* BCM58802 */
|
||||
- CNA(BROADCOM, 0xD804), /* BCM8804 SR */
|
||||
+ CNA(BROADCOM, 0xD804), /* BCM8804 SR */
|
||||
{}
|
||||
};
|
||||
|
@ -1,54 +0,0 @@
|
||||
commit 92ce9e33ee89f2c853b47e004a31bd1cebe010c2
|
||||
Author: Luke Starrett <luke.starrett@broadcom.com>
|
||||
Date: Tue Nov 26 04:11:28 2019 -0500
|
||||
|
||||
bnxt_re/lib: Recognize additional 5750x device ID's
|
||||
|
||||
BCM5750x family includes 57504 and 57502. Until recently the chip_num
|
||||
register always conveyed 0x1750 (57508). Recent devices properly
|
||||
reflect the SKU in the chip_num register. Update Phase5 checks to
|
||||
reflect this.
|
||||
|
||||
Signed-off-by: Luke Starrett <luke.starrett@broadcom.com>
|
||||
Signed-off-by: Devesh Sharma <devesh.sharma@broadcom.com>
|
||||
|
||||
diff --git providers/bnxt_re/main.c providers/bnxt_re/main.c
|
||||
index e290a07bc502..803eff79e73a 100644
|
||||
--- providers/bnxt_re/main.c
|
||||
+++ providers/bnxt_re/main.c
|
||||
@@ -75,7 +75,7 @@ static const struct verbs_match_ent cna_table[] = {
|
||||
CNA(BROADCOM, 0x16EF), /* BCM57416 NPAR */
|
||||
CNA(BROADCOM, 0x16F0), /* BCM58730 */
|
||||
CNA(BROADCOM, 0x16F1), /* BCM57452 */
|
||||
- CNA(BROADCOM, 0x1750), /* BCM57500 */
|
||||
+ CNA(BROADCOM, 0x1750), /* BCM57508 */
|
||||
CNA(BROADCOM, 0x1751), /* BCM57504 */
|
||||
CNA(BROADCOM, 0x1752), /* BCM57502 */
|
||||
CNA(BROADCOM, 0x1803), /* BCM57508 NPAR */
|
||||
@@ -118,7 +118,9 @@ static const struct verbs_context_ops bnxt_re_cntx_ops = {
|
||||
|
||||
bool bnxt_re_is_chip_gen_p5(struct bnxt_re_chip_ctx *cctx)
|
||||
{
|
||||
- return cctx->chip_num == CHIP_NUM_57500;
|
||||
+ return (cctx->chip_num == CHIP_NUM_57508 ||
|
||||
+ cctx->chip_num == CHIP_NUM_57504 ||
|
||||
+ cctx->chip_num == CHIP_NUM_57502);
|
||||
}
|
||||
|
||||
/* Context Init functions */
|
||||
diff --git providers/bnxt_re/main.h providers/bnxt_re/main.h
|
||||
index be5734960475..368297e68b7a 100644
|
||||
--- providers/bnxt_re/main.h
|
||||
+++ providers/bnxt_re/main.h
|
||||
@@ -56,7 +56,10 @@
|
||||
|
||||
#define BNXT_RE_UD_QP_HW_STALL 0x400000
|
||||
|
||||
-#define CHIP_NUM_57500 0x1750
|
||||
+#define CHIP_NUM_57508 0x1750
|
||||
+#define CHIP_NUM_57504 0x1751
|
||||
+#define CHIP_NUM_57502 0x1752
|
||||
+
|
||||
struct bnxt_re_chip_ctx {
|
||||
__u16 chip_num;
|
||||
__u8 chip_rev;
|
27
gen-pandoc.sh
Normal file
27
gen-pandoc.sh
Normal file
@ -0,0 +1,27 @@
|
||||
#!/bin/bash -x
|
||||
|
||||
TARBALL=$(rpmspec --parse rdma-core.spec | grep Source: | awk '{ print $NF}')
|
||||
OUTDIR=$(tar tf $TARBALL | head -n 1)
|
||||
PATCHES=$(rpmspec --parse rdma-core.spec | egrep '^Patch[0-9]+:' | awk '{ print $NF}')
|
||||
BUILD_CMDS=$(python -c "
|
||||
import rpm
|
||||
|
||||
spec = rpm.spec(\"rdma-core.spec\")
|
||||
print '%s' % (getattr(spec, \"build\"),)
|
||||
")
|
||||
|
||||
CMAKE_CMD=$(echo "$BUILD_CMDS" | sed -e :a -e '/\\$/N; s/\\\n//; ta' | grep /bin/cmake | sed -e 's/-GNinja//' -e 's/$OLDPWD\/./../')
|
||||
|
||||
|
||||
rm -Rf $OUTDIR
|
||||
tar xf $TARBALL
|
||||
cd $OUTDIR
|
||||
for patch in $PATCHES; do
|
||||
patch -p0 < ../$patch || exit 1
|
||||
done
|
||||
mkdir build
|
||||
cd build
|
||||
eval $CMAKE_CMD || exit 1
|
||||
make docs -j4 || exit 1
|
||||
tar czf ../../prebuilt-pandoc.tgz pandoc-prebuilt
|
||||
cd ../..
|
6
get_build.py
Normal file
6
get_build.py
Normal file
@ -0,0 +1,6 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
import rpm
|
||||
|
||||
spec = rpm.spec("rdma-core.spec")
|
||||
print '%s' % (getattr(spec, "build"),)
|
@ -2,25 +2,14 @@
|
||||
# Script to be run after updating the spec file from a newer release
|
||||
|
||||
# Enable pyverbs by default
|
||||
sed -i -e 's/^%define with_pyverbs .*$/%define with_pyverbs 1/' rdma-core.spec
|
||||
sed -i -e 's/^%define with_pyverbs .*$/%if 0%{?sle_version} > 120400\n%define with_pyverbs 1\n%else\n%define with_pyverbs 0\n%endif/' rdma-core.spec
|
||||
# Disable static
|
||||
sed -i -e 's/^%define with_static .*$/%define with_static 0/' rdma-core.spec
|
||||
|
||||
# Fixup pandoc
|
||||
# To remove a build dependency to pandoc in the core rings, prebuild the pandoc
|
||||
# tarball and patch the spec file
|
||||
TARBALL=$(rpmspec --parse rdma-core.spec | grep Source: | awk '{ print $NF}')
|
||||
OUTDIR=$(tar tf $TARBALL | head -n 1)
|
||||
|
||||
rm -Rf $OUTDIR
|
||||
tar xf $TARBALL
|
||||
cd $OUTDIR
|
||||
mkdir build
|
||||
cd build
|
||||
cmake ..
|
||||
make docs
|
||||
tar czf ../../prebuilt-pandoc.tgz pandoc-prebuilt
|
||||
cd ../..
|
||||
bash gen-pandoc.sh || exit 1
|
||||
|
||||
EXTRA_SOURCES="Source2: post_download.sh\nSource3: prebuilt-pandoc.tgz\nSource4: rdma-core-rpmlintrc"
|
||||
PANDOC_SETUP="#Extract prebuilt pandoc file in the buildlib directory\n(cd buildlib && tar xf %{S:3})"
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:001320adbcd87e409f2118a70f706da80b49cd1e7dcd3ef976d5d555e4efc1c6
|
||||
size 65568
|
||||
oid sha256:71c0b75bdc08658eb63f41fe4a5ea35785be7ae8faaf10815d7a9fecd96da37d
|
||||
size 64408
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8d13f4b9ad4d2d82b2e3e77064f23316a34dcc096112ea431b390dc17da47e8e
|
||||
size 1650037
|
3
rdma-core-27.0.0.84caf035ae61.tar.gz
Normal file
3
rdma-core-27.0.0.84caf035ae61.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3b3b421d3c02b626aadb9bc253a1637ad53629b19a8a55dad5bd6648c3d55b5e
|
||||
size 1495987
|
@ -1,3 +1,16 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 10 07:40:35 UTC 2020 - Nicolas Morey-Chaisemartin <nmoreychaisemartin@suse.com>
|
||||
|
||||
- Update to v27.0 (bsc#1160338)
|
||||
- No release notes available
|
||||
- Dropped patches merged upstream:
|
||||
- bnxt_re-lib-Add-remaining-pci-ids-for-gen-P5-devices.patch
|
||||
- bnxt_re-lib-Recognize-additional-5750x-device-ID-s.patch
|
||||
- Add patches to support older HW (nes, cxgb3) that was dropped upstream
|
||||
- Revert-Update-kernel-headers.patch
|
||||
- Revert-libcxgb3-Remove-libcxgb3-from-rdma-core.patch
|
||||
- Revert-libnes-Remove-libnes-from-rdma-core.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 13 14:10:15 UTC 2019 - Dominique Leuenberger <dimstar@opensuse.org>
|
||||
|
||||
|
864
rdma-core.new
Normal file
864
rdma-core.new
Normal file
@ -0,0 +1,864 @@
|
||||
#
|
||||
# spec file for package rdma-core
|
||||
#
|
||||
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
# upon. The license for this file, and modifications and additions to the
|
||||
# file, is the same license as for the pristine package itself (unless the
|
||||
# license for the pristine package is not an Open Source License, in which
|
||||
# case the license is the MIT License). An "Open Source License" is a
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
%bcond_without systemd
|
||||
# Do not build static libs by default.
|
||||
%define with_static %{?_with_static: 1} %{?!_with_static: 0}
|
||||
%define with_pyverbs %{?_with_pyverbs: 1} %{?!_with_pyverbs: 0}
|
||||
|
||||
%define git_ver .0.84caf035ae61
|
||||
Name: rdma-core
|
||||
Version: 27.0
|
||||
Release: 0
|
||||
Summary: RDMA core userspace libraries and daemons
|
||||
License: GPL-2.0-only OR BSD-2-Clause
|
||||
Group: Productivity/Networking/Other
|
||||
|
||||
%define efa_so_major 1
|
||||
%define verbs_so_major 1
|
||||
%define rdmacm_so_major 1
|
||||
%define umad_so_major 3
|
||||
%define mlx4_so_major 1
|
||||
%define mlx5_so_major 1
|
||||
%define ibnetdisc_major 5
|
||||
%define mad_major 5
|
||||
|
||||
%define efa_lname libefa%{efa_so_major}
|
||||
%define verbs_lname libibverbs%{verbs_so_major}
|
||||
%define rdmacm_lname librdmacm%{rdmacm_so_major}
|
||||
%define umad_lname libibumad%{umad_so_major}
|
||||
%define mlx4_lname libmlx4-%{mlx4_so_major}
|
||||
%define mlx5_lname libmlx5-%{mlx5_so_major}
|
||||
|
||||
%ifnarch s390 %arm
|
||||
%define dma_coherent 1
|
||||
%endif
|
||||
|
||||
# Almost everything is licensed under the OFA dual GPLv2, 2 Clause BSD license
|
||||
# providers/ipathverbs/ Dual licensed using a BSD license with an extra patent clause
|
||||
# providers/rxe/ Incorporates code from ipathverbs and contains the patent clause
|
||||
# providers/hfi1verbs Uses the 3 Clause BSD license
|
||||
Url: https://github.com/linux-rdma/rdma-core
|
||||
Source: rdma-core-%{version}%{git_ver}.tar.gz
|
||||
Source1: baselibs.conf
|
||||
BuildRequires: binutils
|
||||
BuildRequires: cmake >= 2.8.11
|
||||
BuildRequires: gcc
|
||||
BuildRequires: pandoc
|
||||
BuildRequires: pkgconfig
|
||||
BuildRequires: python3-base
|
||||
BuildRequires: python3-docutils
|
||||
BuildRequires: pkgconfig(libsystemd)
|
||||
BuildRequires: pkgconfig(libudev)
|
||||
BuildRequires: pkgconfig(systemd)
|
||||
BuildRequires: pkgconfig(udev)
|
||||
%if %{with_pyverbs}
|
||||
BuildRequires: python3-Cython
|
||||
BuildRequires: python3-devel
|
||||
%endif
|
||||
%ifnarch s390 s390x
|
||||
%if 0%{?suse_version} >= 1550
|
||||
BuildRequires: valgrind-client-headers
|
||||
%else
|
||||
BuildRequires: valgrind-devel
|
||||
%endif
|
||||
%endif
|
||||
BuildRequires: systemd-rpm-macros
|
||||
BuildRequires: pkgconfig(libnl-3.0)
|
||||
BuildRequires: pkgconfig(libnl-route-3.0)
|
||||
BuildRequires: pkgconfig(systemd)
|
||||
Requires: kmod
|
||||
Requires: systemd
|
||||
Requires: udev
|
||||
|
||||
# SUSE previously shipped rdma as a stand-alone
|
||||
# package which we're supplanting here.
|
||||
|
||||
Provides: rdma = %{version}
|
||||
Obsoletes: rdma < %{version}
|
||||
Provides: ofed = %{version}
|
||||
Obsoletes: ofed < %{version}
|
||||
|
||||
# Trickery to handle both SUSE OpenBuild System and Manual build
|
||||
# In OBS, rdma-core must use curl-mini instead of curl to avoid
|
||||
# a build dependency loop:
|
||||
# rdma-core -> cmake -> curl -> ... -> boost -> rdma-core
|
||||
# Thus we force a BuildRequires to curl-mini which as no impact
|
||||
# as it is not used during the build.
|
||||
# However curl-mini is not a published RPM. This would prevent any build
|
||||
# outside of OBS. Thus we add a bcond to allow manual build.
|
||||
# To force build without the use of curl-mini, --without=curlmini
|
||||
# should be passed to rpmbuild
|
||||
%bcond_without curlmini
|
||||
%if 0%{?suse_version} >= 1330
|
||||
%if %{with curlmini}
|
||||
BuildRequires: curl-mini
|
||||
%endif
|
||||
%endif
|
||||
|
||||
# Tumbleweed's cmake RPM macro adds -Wl,--no-undefined to the module flags
|
||||
# which is totally inappropriate and breaks building 'ENABLE_EXPORTS' style
|
||||
# module libraries (eg ibacmp).
|
||||
#%%define CMAKE_FLAGS -DCMAKE_MODULE_LINKER_FLAGS=""
|
||||
|
||||
# Since we recommend developers use Ninja, so should packagers, for consistency.
|
||||
%define CMAKE_FLAGS %{nil}
|
||||
%if 0%{?suse_version} >= 1300
|
||||
BuildRequires: ninja
|
||||
%define CMAKE_FLAGS -GNinja
|
||||
%define make_jobs ninja -v %{?_smp_mflags}
|
||||
%define cmake_install DESTDIR=%{buildroot} ninja install
|
||||
%else
|
||||
# Fallback to make otherwise
|
||||
BuildRequires: make
|
||||
%define make_jobs make -v %{?_smp_mflags}
|
||||
%define cmake_install DESTDIR=%{buildroot} make install
|
||||
%endif
|
||||
|
||||
%description
|
||||
RDMA core userspace infrastructure and documentation, including initialization
|
||||
scripts, kernel driver-specific modprobe override configs, IPoIB network
|
||||
scripts, dracut rules, and the rdma-ndd utility.
|
||||
|
||||
%package devel
|
||||
Summary: RDMA core development libraries and headers
|
||||
Group: Development/Libraries/C and C++
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
|
||||
Requires: %{rdmacm_lname} = %{version}-%{release}
|
||||
Requires: %{umad_lname} = %{version}-%{release}
|
||||
Requires: %{verbs_lname} = %{version}-%{release}
|
||||
%if 0%{?dma_coherent}
|
||||
Requires: %{efa_lname} = %{version}-%{release}
|
||||
Requires: %{mlx4_lname} = %{version}-%{release}
|
||||
Requires: %{mlx5_lname} = %{version}-%{release}
|
||||
%endif
|
||||
Requires: rsocket = %{version}-%{release}
|
||||
|
||||
Provides: libibverbs-devel = %{version}-%{release}
|
||||
Obsoletes: libibverbs-devel < %{version}-%{release}
|
||||
|
||||
Provides: libibumad-devel = %{version}-%{release}
|
||||
Obsoletes: libibumad-devel < %{version}-%{release}
|
||||
Provides: librdmacm-devel = %{version}-%{release}
|
||||
|
||||
Obsoletes: librdmacm-devel < %{version}-%{release}
|
||||
#Requires: ibacm = %%{version}-%%{release}
|
||||
Provides: ibacm-devel = %{version}-%{release}
|
||||
Obsoletes: ibacm-devel < %{version}-%{release}
|
||||
%if %{with_static}
|
||||
# Since our pkg-config files include private references to these packages they
|
||||
# need to have their .pc files installed too, even for dynamic linking, or
|
||||
# pkg-config breaks.
|
||||
BuildRequires: pkgconfig(libnl-3.0)
|
||||
BuildRequires: pkgconfig(libnl-route-3.0)
|
||||
%endif
|
||||
|
||||
Requires: infiniband-diags = %{version}-%{release}
|
||||
Provides: infiniband-diags-devel = %{version}-%{release}
|
||||
Obsoletes: infiniband-diags-devel < %{version}-%{release}
|
||||
Provides: libibmad-devel = %{version}-%{release}
|
||||
Obsoletes: libibmad-devel < %{version}
|
||||
|
||||
%description devel
|
||||
RDMA core development libraries and headers.
|
||||
|
||||
%package -n libibverbs
|
||||
Summary: Library & drivers for direct userspace use of InfiniBand/iWARP/RoCE hardware
|
||||
Group: System/Libraries
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
Obsoletes: libcxgb4-rdmav2 < %{version}-%{release}
|
||||
Obsoletes: libefa-rdmav2 < %{version}-%{release}
|
||||
Obsoletes: libhfi1verbs-rdmav2 < %{version}-%{release}
|
||||
Obsoletes: libi40iw-rdmav2 < %{version}-%{release}
|
||||
Obsoletes: libipathverbs-rdmav2 < %{version}-%{release}
|
||||
Obsoletes: libmlx4-rdmav2 < %{version}-%{release}
|
||||
Obsoletes: libmlx5-rdmav2 < %{version}-%{release}
|
||||
Obsoletes: libmthca-rdmav2 < %{version}-%{release}
|
||||
Obsoletes: libocrdma-rdmav2 < %{version}-%{release}
|
||||
Obsoletes: librxe-rdmav2 < %{version}-%{release}
|
||||
%if 0%{?dma_coherent}
|
||||
Requires: %{efa_lname} = %{version}-%{release}
|
||||
Requires: %{mlx4_lname} = %{version}-%{release}
|
||||
Requires: %{mlx5_lname} = %{version}-%{release}
|
||||
%endif
|
||||
# Recommended packages for rxe_cfg
|
||||
Recommends: ethtool
|
||||
Recommends: iproute2
|
||||
|
||||
%description -n libibverbs
|
||||
libibverbs is a library that allows userspace processes to use RDMA
|
||||
"verbs" as described in the InfiniBand Architecture Specification and
|
||||
the RDMA Protocol Verbs Specification. This includes direct hardware
|
||||
access from userspace to InfiniBand/iWARP adapters (kernel bypass) for
|
||||
fast path operations.
|
||||
|
||||
Device-specific plug-in ibverbs userspace drivers are included:
|
||||
|
||||
- libcxgb4: Chelsio T4 iWARP HCA
|
||||
- libefa: Amazon Elastic Fabric Adapter
|
||||
- libhfi1: Intel Omni-Path HFI
|
||||
- libhns: HiSilicon Hip06 SoC
|
||||
- libi40iw: Intel Ethernet Connection X722 RDMA
|
||||
- libipathverbs: QLogic InfiniPath HCA
|
||||
- libmlx4: Mellanox ConnectX-3 InfiniBand HCA
|
||||
- libmlx5: Mellanox Connect-IB/X-4+ InfiniBand HCA
|
||||
- libmthca: Mellanox InfiniBand HCA
|
||||
- libocrdma: Emulex OneConnect RDMA/RoCE Device
|
||||
- libqedr: QLogic QL4xxx RoCE HCA
|
||||
- librxe: A software implementation of the RoCE protocol
|
||||
- libsiw: A software implementation of the iWarp protocol
|
||||
- libvmw_pvrdma: VMware paravirtual RDMA device
|
||||
|
||||
%package -n %verbs_lname
|
||||
Summary: Ibverbs runtime library
|
||||
Group: System/Libraries
|
||||
Requires: libibverbs = %{version}
|
||||
|
||||
%description -n %verbs_lname
|
||||
This package contains the ibverbs runtime library.
|
||||
|
||||
%package -n %efa_lname
|
||||
Summary: EFA runtime library
|
||||
Group: System/Libraries
|
||||
|
||||
%description -n %efa_lname
|
||||
This package contains the efa runtime library.
|
||||
|
||||
%package -n %mlx4_lname
|
||||
Summary: MLX4 runtime library
|
||||
Group: System/Libraries
|
||||
|
||||
%description -n %mlx4_lname
|
||||
This package contains the mlx4 runtime library.
|
||||
|
||||
%package -n %mlx5_lname
|
||||
Summary: MLX5 runtime library
|
||||
Group: System/Libraries
|
||||
|
||||
%description -n %mlx5_lname
|
||||
This package contains the mlx5 runtime library.
|
||||
|
||||
%package -n libibnetdisc%{ibnetdisc_major}
|
||||
Summary: Infiniband Net Discovery runtime library
|
||||
Group: System/Libraries
|
||||
|
||||
%description -n libibnetdisc%{ibnetdisc_major}
|
||||
This package contains the Infiniband Net Discovery runtime library needed
|
||||
mainly by infiniband-diags.
|
||||
|
||||
%package -n libibverbs-utils
|
||||
Summary: Examples for the libibverbs library
|
||||
Group: Productivity/Networking/Other
|
||||
Requires: libibverbs%{?_isa} = %{version}
|
||||
|
||||
%description -n libibverbs-utils
|
||||
Useful libibverbs example programs such as ibv_devinfo, which
|
||||
displays information about RDMA devices.
|
||||
|
||||
%package -n ibacm
|
||||
Summary: InfiniBand Communication Manager Assistant
|
||||
Group: Productivity/Networking/Other
|
||||
%{?systemd_requires}
|
||||
Requires: %{name}%{?_isa} = %{version}
|
||||
Obsoletes: libibacmp1 < %{version}
|
||||
Provides: libibacmp1 = %{version}
|
||||
|
||||
%description -n ibacm
|
||||
The ibacm daemon helps reduce the load of managing path record lookups on
|
||||
large InfiniBand fabrics by providing a user space implementation of what
|
||||
is functionally similar to an ARP cache. The use of ibacm, when properly
|
||||
configured, can reduce the SA packet load of a large IB cluster from O(n^2)
|
||||
to O(n). The ibacm daemon is started and normally runs in the background,
|
||||
user applications need not know about this daemon as long as their app
|
||||
uses librdmacm to handle connection bring up/tear down. The librdmacm
|
||||
library knows how to talk directly to the ibacm daemon to retrieve data.
|
||||
|
||||
%package -n infiniband-diags
|
||||
Summary: InfiniBand Diagnostic Tools
|
||||
Group: Productivity/Networking/Diagnostic
|
||||
Requires: perl = %{perl_version}
|
||||
|
||||
%description -n infiniband-diags
|
||||
diags provides IB diagnostic programs and scripts needed to diagnose an
|
||||
IB subnet.
|
||||
|
||||
%package -n libibmad%{mad_major}
|
||||
Summary: Libibmad runtime library
|
||||
Group: System/Libraries
|
||||
|
||||
%description -n libibmad%{mad_major}
|
||||
Libibmad provides low layer IB functions for use by the IB diagnostic
|
||||
and management programs. These include MAD, SA, SMP, and other basic IB
|
||||
functions. This package contains the runtime library.
|
||||
|
||||
%package -n iwpmd
|
||||
Summary: Userspace iWarp Port Mapper daemon
|
||||
Group: Development/Libraries/C and C++
|
||||
Requires: %{name}%{?_isa} = %{version}
|
||||
%{?systemd_requires}
|
||||
|
||||
%description -n iwpmd
|
||||
iwpmd provides a userspace service for iWarp drivers to claim
|
||||
tcp ports through the standard socket interface.
|
||||
|
||||
%package -n %umad_lname
|
||||
Summary: OpenFabrics Alliance InfiniBand Userspace Management Datagram library
|
||||
Group: System/Libraries
|
||||
|
||||
%description -n %umad_lname
|
||||
libibumad provides the userspace management datagram (umad) library
|
||||
functions, which sit on top of the umad modules in the kernel. These
|
||||
are used by the IB diagnostic and management tools, including OpenSM.
|
||||
|
||||
%package -n %rdmacm_lname
|
||||
Summary: Userspace RDMA Connection Manager
|
||||
Group: System/Libraries
|
||||
Requires: %{name} = %{version}
|
||||
Provides: librdmacm = %{version}
|
||||
Obsoletes: librdmacm < %{version}
|
||||
|
||||
%description -n %rdmacm_lname
|
||||
librdmacm provides a userspace RDMA Communication Management API.
|
||||
|
||||
%package -n rsocket
|
||||
Summary: Preloadable library to turn the socket API RDMA-aware
|
||||
# Older librdmacm-tools used to provide rsocket
|
||||
Group: System/Libraries
|
||||
Conflicts: librdmacm-tools < 2
|
||||
|
||||
%description -n rsocket
|
||||
Existing applications can make use of rsockets through the use this
|
||||
preloadable library. See the documentation in the packaged rsocket(7)
|
||||
manpage for details.
|
||||
|
||||
%package -n librdmacm-utils
|
||||
Summary: Examples for the librdmacm library
|
||||
Group: Productivity/Networking/Other
|
||||
Obsoletes: librdmacm-tools < %{version}
|
||||
Provides: librdmacm-tools = %{version}
|
||||
|
||||
%description -n librdmacm-utils
|
||||
Example test programs for the librdmacm library.
|
||||
|
||||
%package -n srp_daemon
|
||||
Summary: Tools for using the InfiniBand SRP protocol devices
|
||||
Group: Development/Libraries/C and C++
|
||||
Requires: %{name} = %{version}
|
||||
Obsoletes: srptools <= 1.0.3
|
||||
Provides: srptools = %{version}
|
||||
%{?systemd_requires}
|
||||
|
||||
%description -n srp_daemon
|
||||
In conjunction with the kernel ib_srp driver, srp_daemon allows you to
|
||||
discover and use SCSI devices via the SCSI RDMA Protocol over InfiniBand.
|
||||
|
||||
%package -n rdma-ndd
|
||||
Summary: Daemon to manage RDMA Node Description
|
||||
Group: System/Daemons
|
||||
Requires: %{name} = %{version}
|
||||
# The udev rules in rdma need to be aware of rdma-ndd:
|
||||
Conflicts: rdma < 2.1
|
||||
%{?systemd_requires}
|
||||
|
||||
%description -n rdma-ndd
|
||||
rdma-ndd is a system daemon which watches for rdma device changes and/or
|
||||
hostname changes and updates the Node Description of the rdma devices based
|
||||
on those changes.
|
||||
|
||||
%package -n python3-pyverbs
|
||||
Summary: Python3 API over IB verbs
|
||||
Group: Development/Languages/Python
|
||||
|
||||
%description -n python3-pyverbs
|
||||
Pyverbs is a Cython-based Python API over libibverbs, providing an
|
||||
easy, object-oriented access to IB verbs.
|
||||
|
||||
%prep
|
||||
# Make sure LTO is disable as rdma-core fails to compile with LTO enabled
|
||||
%define _lto_cflags %{nil}
|
||||
%setup -q -n %{name}-%{version}%{git_ver}
|
||||
|
||||
%build
|
||||
|
||||
# New RPM defines _rundir, usually as /run
|
||||
%if 0%{?_rundir:1}
|
||||
%else
|
||||
%define _rundir /var/run
|
||||
%endif
|
||||
|
||||
%{!?EXTRA_CMAKE_FLAGS: %define EXTRA_CMAKE_FLAGS %{nil}}
|
||||
|
||||
# Pass all of the rpm paths directly to GNUInstallDirs and our other defines.
|
||||
%cmake %{CMAKE_FLAGS} \
|
||||
-DCMAKE_MODULE_LINKER_FLAGS="-Wl,--as-needed -Wl,-z,now" \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_INSTALL_BINDIR:PATH=%{_bindir} \
|
||||
-DCMAKE_INSTALL_SBINDIR:PATH=%{_sbindir} \
|
||||
-DCMAKE_INSTALL_LIBDIR:PATH=%{_libdir} \
|
||||
-DCMAKE_INSTALL_LIBEXECDIR:PATH=%{_libexecdir} \
|
||||
-DCMAKE_INSTALL_LOCALSTATEDIR:PATH=%{_localstatedir} \
|
||||
-DCMAKE_INSTALL_SHAREDSTATEDIR:PATH=%{_sharedstatedir} \
|
||||
-DCMAKE_INSTALL_INCLUDEDIR:PATH=%{_includedir} \
|
||||
-DCMAKE_INSTALL_INFODIR:PATH=%{_infodir} \
|
||||
-DCMAKE_INSTALL_MANDIR:PATH=%{_mandir} \
|
||||
-DCMAKE_INSTALL_SYSCONFDIR:PATH=%{_sysconfdir} \
|
||||
-DCMAKE_INSTALL_SYSTEMD_SERVICEDIR:PATH=%{_unitdir} \
|
||||
-DCMAKE_INSTALL_SYSTEMD_BINDIR:PATH=%{_libexecdir}/systemd \
|
||||
-DCMAKE_INSTALL_INITDDIR:PATH=%{_initddir} \
|
||||
-DCMAKE_INSTALL_RUNDIR:PATH=%{_rundir} \
|
||||
-DCMAKE_INSTALL_DOCDIR:PATH=%{_docdir}/%{name}-%{version} \
|
||||
-DCMAKE_INSTALL_UDEV_RULESDIR:PATH=%{_udevrulesdir} \
|
||||
-DCMAKE_INSTALL_PERLDIR:PATH=%{perl_vendorlib} \
|
||||
%if %{with_static}
|
||||
-DENABLE_STATIC=1 \
|
||||
%endif
|
||||
%{EXTRA_CMAKE_FLAGS} \
|
||||
%if %{defined __python3}
|
||||
-DPYTHON_EXECUTABLE:PATH=%{__python3} \
|
||||
-DCMAKE_INSTALL_PYTHON_ARCH_LIB:PATH=%{python3_sitearch} \
|
||||
%endif
|
||||
%if %{with_pyverbs}
|
||||
-DNO_PYVERBS=0
|
||||
%else
|
||||
-DNO_PYVERBS=1
|
||||
%endif
|
||||
%make_jobs
|
||||
|
||||
%install
|
||||
cd build
|
||||
%cmake_install
|
||||
cd ..
|
||||
mkdir -p %{buildroot}/%{_sysconfdir}/rdma
|
||||
|
||||
%global dracutlibdir %%{_libexecdir}/dracut/
|
||||
%global sysmodprobedir %%{_sysconfdir}/modprobe.d
|
||||
|
||||
mkdir -p %{buildroot}%{_udevrulesdir}
|
||||
mkdir -p %{buildroot}%{dracutlibdir}/modules.d/05rdma
|
||||
mkdir -p %{buildroot}%{sysmodprobedir}
|
||||
mkdir -p %{buildroot}%{_unitdir}
|
||||
|
||||
# SRIOV service
|
||||
install -D -m0644 redhat/rdma.sriov-vfs %{buildroot}/%{_sysconfdir}/rdma/sriov-vfs
|
||||
install -D -m0755 redhat/rdma.sriov-init %{buildroot}%{_libexecdir}/rdma-set-sriov-vf
|
||||
install -D -m0644 suse/rdma.sriov-rules %{buildroot}%{_udevrulesdir}/98-rdma-sriov.rules
|
||||
install -D -m0644 suse/rdma.sriov-service %{buildroot}%{_unitdir}/rdma-sriov.service
|
||||
|
||||
# Port type setup for mlx4 dual port cards
|
||||
install -D -m0644 redhat/rdma.mlx4.conf %{buildroot}/%{_sysconfdir}/rdma/mlx4.conf
|
||||
sed 's%/usr/libexec%/usr/lib%g' redhat/rdma.mlx4.sys.modprobe > %{buildroot}%{sysmodprobedir}/50-libmlx4.conf
|
||||
chmod 0644 %{buildroot}%{sysmodprobedir}/50-libmlx4.conf
|
||||
install -D -m0755 redhat/rdma.mlx4-setup.sh %{buildroot}%{_libexecdir}/mlx4-setup.sh
|
||||
|
||||
# Dracut file for IB support during boot
|
||||
install -D -m0644 suse/module-setup.sh %{buildroot}%{dracutlibdir}/modules.d/05rdma/module-setup.sh
|
||||
|
||||
# ibacm
|
||||
cd build
|
||||
LD_LIBRARY_PATH=./lib bin/ib_acme -D . -O
|
||||
install -D -m0644 ibacm_opts.cfg %{buildroot}%{_sysconfdir}/rdma/
|
||||
|
||||
for service in rdma rdma-ndd ibacm iwpmd srp_daemon; do ln -sf %{_sbindir}/service %{buildroot}%{_sbindir}/rc${service}; done
|
||||
|
||||
# Delete the package's init.d scripts
|
||||
rm -rf %{buildroot}/%{_initddir}/
|
||||
rm -rf %{buildroot}/%{_sbindir}/srp_daemon.sh
|
||||
|
||||
%post -n %verbs_lname -p /sbin/ldconfig
|
||||
%postun -n %verbs_lname -p /sbin/ldconfig
|
||||
|
||||
%post -n %efa_lname -p /sbin/ldconfig
|
||||
%postun -n %efa_lname -p /sbin/ldconfig
|
||||
|
||||
%post -n %mlx4_lname -p /sbin/ldconfig
|
||||
%postun -n %mlx4_lname -p /sbin/ldconfig
|
||||
|
||||
%post -n %mlx5_lname -p /sbin/ldconfig
|
||||
%postun -n %mlx5_lname -p /sbin/ldconfig
|
||||
|
||||
%post -n %umad_lname -p /sbin/ldconfig
|
||||
%postun -n %umad_lname -p /sbin/ldconfig
|
||||
|
||||
%post -n %rdmacm_lname -p /sbin/ldconfig
|
||||
%postun -n %rdmacm_lname -p /sbin/ldconfig
|
||||
|
||||
%post -n libibnetdisc%{ibnetdisc_major} -p /sbin/ldconfig
|
||||
%postun -n libibnetdisc%{ibnetdisc_major} -p /sbin/ldconfig
|
||||
|
||||
%post -n libibmad%{mad_major} -p /sbin/ldconfig
|
||||
%postun -n libibmad%{mad_major} -p /sbin/ldconfig
|
||||
|
||||
%post
|
||||
# we ship udev rules, so trigger an update.
|
||||
/sbin/udevadm trigger --subsystem-match=infiniband --action=change || true
|
||||
/sbin/udevadm trigger --subsystem-match=infiniband_mad --action=change || true
|
||||
|
||||
#
|
||||
# ibacm
|
||||
#
|
||||
%pre -n ibacm
|
||||
%service_add_pre ibacm.service ibacm.socket
|
||||
|
||||
%post -n ibacm
|
||||
%service_add_post ibacm.service ibacm.socket
|
||||
|
||||
%preun -n ibacm
|
||||
%service_del_preun ibacm.service ibacm.socket
|
||||
|
||||
%postun -n ibacm
|
||||
%service_del_postun ibacm.service ibacm.socket
|
||||
|
||||
#
|
||||
# srp daemon
|
||||
#
|
||||
%pre -n srp_daemon
|
||||
%service_add_pre srp_daemon.service
|
||||
|
||||
%post -n srp_daemon
|
||||
%service_add_post srp_daemon.service
|
||||
# we ship udev rules, so trigger an update.
|
||||
/sbin/udevadm trigger --subsystem-match=infiniband_mad --action=change
|
||||
|
||||
%preun -n srp_daemon
|
||||
%service_del_preun srp_daemon.service
|
||||
|
||||
%postun -n srp_daemon
|
||||
%service_del_postun srp_daemon.service
|
||||
|
||||
#
|
||||
# iwpmd
|
||||
#
|
||||
%pre -n iwpmd
|
||||
%service_add_pre ibiwpmd.service
|
||||
|
||||
%post -n iwpmd
|
||||
%service_add_post iwpmd.service
|
||||
|
||||
%preun -n iwpmd
|
||||
%service_del_preun iwpmd.service
|
||||
|
||||
%postun -n iwpmd
|
||||
%service_del_postun iwpmd.service
|
||||
|
||||
#
|
||||
# rdma-ndd
|
||||
#
|
||||
%pre -n rdma-ndd
|
||||
%service_add_pre rdma-ndd.service
|
||||
|
||||
%preun -n rdma-ndd
|
||||
%service_del_preun rdma-ndd.service
|
||||
|
||||
%post -n rdma-ndd
|
||||
%service_add_post rdma-ndd.service
|
||||
|
||||
%postun -n rdma-ndd
|
||||
%service_del_postun rdma-ndd.service
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%dir %{_sysconfdir}/rdma
|
||||
%dir %{_sysconfdir}/rdma/modules
|
||||
%dir %{_docdir}/%{name}-%{version}
|
||||
%dir %{_udevrulesdir}
|
||||
%dir %{_sysconfdir}/udev
|
||||
%dir %{_sysconfdir}/udev/rules.d
|
||||
%dir %{_sysconfdir}/modprobe.d
|
||||
%doc %{_docdir}/%{name}-%{version}/README.md
|
||||
%doc %{_docdir}/%{name}-%{version}/udev.md
|
||||
%config(noreplace) %{_sysconfdir}/rdma/mlx4.conf
|
||||
%config(noreplace) %{_sysconfdir}/rdma/modules/infiniband.conf
|
||||
%config(noreplace) %{_sysconfdir}/rdma/modules/iwarp.conf
|
||||
%config(noreplace) %{_sysconfdir}/rdma/modules/opa.conf
|
||||
%config(noreplace) %{_sysconfdir}/rdma/modules/rdma.conf
|
||||
%config(noreplace) %{_sysconfdir}/rdma/modules/roce.conf
|
||||
%config(noreplace) %{_sysconfdir}/rdma/sriov-vfs
|
||||
%if 0%{?dma_coherent}
|
||||
%config(noreplace) %{_sysconfdir}/modprobe.d/mlx4.conf
|
||||
%endif
|
||||
%config(noreplace) %{_sysconfdir}/modprobe.d/truescale.conf
|
||||
%config(noreplace) %{_sysconfdir}/udev/rules.d/70-persistent-ipoib.rules
|
||||
%{_unitdir}/rdma-hw.target
|
||||
%{_unitdir}/rdma-load-modules@.service
|
||||
%{_unitdir}/rdma-sriov.service
|
||||
%dir %{dracutlibdir}
|
||||
%dir %{dracutlibdir}/modules.d
|
||||
%dir %{dracutlibdir}/modules.d/05rdma
|
||||
%{dracutlibdir}/modules.d/05rdma/module-setup.sh
|
||||
%{_udevrulesdir}/../rdma_rename
|
||||
%{_udevrulesdir}/60-rdma-persistent-naming.rules
|
||||
%{_udevrulesdir}/75-rdma-description.rules
|
||||
%{_udevrulesdir}/90-rdma-hw-modules.rules
|
||||
%{_udevrulesdir}/90-rdma-ulp-modules.rules
|
||||
%{_udevrulesdir}/90-rdma-umad.rules
|
||||
%{_udevrulesdir}/98-rdma-sriov.rules
|
||||
%{sysmodprobedir}/50-libmlx4.conf
|
||||
%{_libexecdir}/rdma-set-sriov-vf
|
||||
%{_libexecdir}/mlx4-setup.sh
|
||||
%{_libexecdir}/truescale-serdes.cmds
|
||||
%license COPYING.*
|
||||
%{_sbindir}/rcrdma
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root)
|
||||
%doc %{_docdir}/%{name}-%{version}/MAINTAINERS
|
||||
%dir %{_includedir}/infiniband
|
||||
%dir %{_includedir}/rdma
|
||||
%{_includedir}/infiniband/*
|
||||
%{_includedir}/rdma/*
|
||||
%if %{with_static}
|
||||
%{_libdir}/lib*.a
|
||||
%endif
|
||||
%{_libdir}/lib*.so
|
||||
%{_libdir}/pkgconfig/*.pc
|
||||
%{_mandir}/man3/ibnd_*
|
||||
%{_mandir}/man3/ibv_*
|
||||
%{_mandir}/man3/rdma*
|
||||
%{_mandir}/man3/umad*
|
||||
%{_mandir}/man3/*_to_ibv_rate.*
|
||||
%{_mandir}/man7/rdma_cm.*
|
||||
%if 0%{?dma_coherent}
|
||||
%{_mandir}/man3/efadv*
|
||||
%{_mandir}/man3/mlx5dv*
|
||||
%{_mandir}/man3/mlx4dv*
|
||||
%{_mandir}/man7/efadv*
|
||||
%{_mandir}/man7/mlx5dv*
|
||||
%{_mandir}/man7/mlx4dv*
|
||||
%endif
|
||||
|
||||
%files -n libibverbs
|
||||
%defattr(-,root,root)
|
||||
%dir %{_sysconfdir}/libibverbs.d
|
||||
%dir %{_libdir}/libibverbs
|
||||
%{_libdir}/libibverbs/*.so
|
||||
%config(noreplace) %{_sysconfdir}/libibverbs.d/*.driver
|
||||
%doc %{_docdir}/%{name}-%{version}/libibverbs.md
|
||||
%doc %{_docdir}/%{name}-%{version}/rxe.md
|
||||
%doc %{_docdir}/%{name}-%{version}/tag_matching.md
|
||||
%{_bindir}/rxe_cfg
|
||||
%{_mandir}/man7/rxe*
|
||||
%{_mandir}/man8/rxe*
|
||||
|
||||
%files -n libibnetdisc%{ibnetdisc_major}
|
||||
%defattr(-, root, root)
|
||||
%{_libdir}/libibnetdisc.so.*
|
||||
|
||||
%files -n libibmad%{mad_major}
|
||||
%defattr(-, root, root)
|
||||
%{_libdir}/libibmad.so.*
|
||||
|
||||
%files -n %verbs_lname
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/libibverbs*.so.*
|
||||
|
||||
%if 0%{?dma_coherent}
|
||||
%files -n %efa_lname
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/libefa*.so.*
|
||||
|
||||
%files -n %mlx4_lname
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/libmlx4*.so.*
|
||||
|
||||
%files -n %mlx5_lname
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/libmlx5*.so.*
|
||||
%endif
|
||||
|
||||
%files -n libibverbs-utils
|
||||
%defattr(-,root,root)
|
||||
%{_bindir}/ibv_*
|
||||
%{_mandir}/man1/ibv_*
|
||||
|
||||
%files -n ibacm
|
||||
%defattr(-,root,root)
|
||||
%config(noreplace) %{_sysconfdir}/rdma/ibacm_opts.cfg
|
||||
%{_bindir}/ib_acme
|
||||
%{_sbindir}/ibacm
|
||||
%{_mandir}/man1/ibacm.*
|
||||
%{_mandir}/man1/ib_acme.*
|
||||
%{_mandir}/man7/ibacm.*
|
||||
%{_mandir}/man7/ibacm_prov.*
|
||||
%{_unitdir}/ibacm.service
|
||||
%{_unitdir}/ibacm.socket
|
||||
%dir %{_libdir}/ibacm
|
||||
%{_libdir}/ibacm/*
|
||||
%{_sbindir}/rcibacm
|
||||
%doc %{_docdir}/%{name}-%{version}/ibacm.md
|
||||
|
||||
%files -n infiniband-diags
|
||||
%defattr(-, root, root)
|
||||
%dir %{_sysconfdir}/infiniband-diags
|
||||
%config(noreplace) %{_sysconfdir}/infiniband-diags/*
|
||||
%{_sbindir}/ibaddr
|
||||
%{_mandir}/man8/ibaddr*
|
||||
%{_sbindir}/ibnetdiscover
|
||||
%{_mandir}/man8/ibnetdiscover*
|
||||
%{_sbindir}/ibping
|
||||
%{_mandir}/man8/ibping*
|
||||
%{_sbindir}/ibportstate
|
||||
%{_mandir}/man8/ibportstate*
|
||||
%{_sbindir}/ibroute
|
||||
%{_mandir}/man8/ibroute.*
|
||||
%{_sbindir}/ibstat
|
||||
%{_mandir}/man8/ibstat.*
|
||||
%{_sbindir}/ibsysstat
|
||||
%{_mandir}/man8/ibsysstat*
|
||||
%{_sbindir}/ibtracert
|
||||
%{_mandir}/man8/ibtracert*
|
||||
%{_sbindir}/perfquery
|
||||
%{_mandir}/man8/perfquery*
|
||||
%{_sbindir}/sminfo
|
||||
%{_mandir}/man8/sminfo*
|
||||
%{_sbindir}/smpdump
|
||||
%{_mandir}/man8/smpdump*
|
||||
%{_sbindir}/smpquery
|
||||
%{_mandir}/man8/smpquery*
|
||||
%{_sbindir}/saquery
|
||||
%{_mandir}/man8/saquery*
|
||||
%{_sbindir}/vendstat
|
||||
%{_mandir}/man8/vendstat*
|
||||
%{_sbindir}/iblinkinfo
|
||||
%{_mandir}/man8/iblinkinfo*
|
||||
%{_sbindir}/ibqueryerrors
|
||||
%{_mandir}/man8/ibqueryerrors*
|
||||
%{_sbindir}/ibcacheedit
|
||||
%{_mandir}/man8/ibcacheedit*
|
||||
%{_sbindir}/ibccquery
|
||||
%{_mandir}/man8/ibccquery*
|
||||
%{_sbindir}/ibccconfig
|
||||
%{_mandir}/man8/ibccconfig*
|
||||
%{_sbindir}/dump_fts
|
||||
%{_mandir}/man8/dump_fts*
|
||||
%{_sbindir}/ibhosts
|
||||
%{_mandir}/man8/ibhosts*
|
||||
%{_sbindir}/ibswitches
|
||||
%{_mandir}/man8/ibswitches*
|
||||
%{_sbindir}/ibnodes
|
||||
%{_mandir}/man8/ibnodes*
|
||||
%{_sbindir}/ibrouters
|
||||
%{_mandir}/man8/ibrouters*
|
||||
%{_sbindir}/ibfindnodesusing.pl
|
||||
%{_mandir}/man8/ibfindnodesusing*
|
||||
%{_sbindir}/ibidsverify.pl
|
||||
%{_mandir}/man8/ibidsverify*
|
||||
%{_sbindir}/check_lft_balance.pl
|
||||
%{_mandir}/man8/check_lft_balance*
|
||||
%{_sbindir}/dump_lfts.sh
|
||||
%{_mandir}/man8/dump_lfts*
|
||||
%{_sbindir}/dump_mfts.sh
|
||||
%{_mandir}/man8/dump_mfts*
|
||||
%{_sbindir}/ibstatus
|
||||
%{_mandir}/man8/ibstatus*
|
||||
%{_mandir}/man8/infiniband-diags*
|
||||
%{perl_vendorlib}/IBswcountlimits.pm
|
||||
|
||||
%files -n iwpmd
|
||||
%defattr(-,root,root)
|
||||
%dir %{_sysconfdir}/rdma
|
||||
%dir %{_sysconfdir}/rdma/modules
|
||||
%{_sbindir}/iwpmd
|
||||
%{_sbindir}/rciwpmd
|
||||
%{_unitdir}/iwpmd.service
|
||||
%config(noreplace) %{_sysconfdir}/rdma/modules/iwpmd.conf
|
||||
%config(noreplace) %{_sysconfdir}/iwpmd.conf
|
||||
%{_udevrulesdir}/90-iwpmd.rules
|
||||
%{_mandir}/man8/iwpmd.*
|
||||
%{_mandir}/man5/iwpmd.*
|
||||
|
||||
%files -n %umad_lname
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/libibumad*.so.*
|
||||
|
||||
%files -n %rdmacm_lname
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/librdmacm*.so.*
|
||||
%doc %{_docdir}/%{name}-%{version}/librdmacm.md
|
||||
|
||||
%files -n rsocket
|
||||
%defattr(-,root,root)
|
||||
%dir %{_libdir}/rsocket
|
||||
%{_libdir}/rsocket/*.so*
|
||||
%{_mandir}/man7/rsocket.*
|
||||
|
||||
%files -n librdmacm-utils
|
||||
%defattr(-,root,root)
|
||||
%{_bindir}/cmtime
|
||||
%{_bindir}/mckey
|
||||
%{_bindir}/rcopy
|
||||
%{_bindir}/rdma_client
|
||||
%{_bindir}/rdma_server
|
||||
%{_bindir}/rdma_xclient
|
||||
%{_bindir}/rdma_xserver
|
||||
%{_bindir}/riostream
|
||||
%{_bindir}/rping
|
||||
%{_bindir}/rstream
|
||||
%{_bindir}/ucmatose
|
||||
%{_bindir}/udaddy
|
||||
%{_bindir}/udpong
|
||||
%{_mandir}/man1/cmtime.*
|
||||
%{_mandir}/man1/mckey.*
|
||||
%{_mandir}/man1/rcopy.*
|
||||
%{_mandir}/man1/rdma_client.*
|
||||
%{_mandir}/man1/rdma_server.*
|
||||
%{_mandir}/man1/rdma_xclient.*
|
||||
%{_mandir}/man1/rdma_xserver.*
|
||||
%{_mandir}/man1/riostream.*
|
||||
%{_mandir}/man1/rping.*
|
||||
%{_mandir}/man1/rstream.*
|
||||
%{_mandir}/man1/ucmatose.*
|
||||
%{_mandir}/man1/udaddy.*
|
||||
%{_mandir}/man1/udpong.*
|
||||
|
||||
%files -n srp_daemon
|
||||
%defattr(-,root,root)
|
||||
%dir %{_libexecdir}/srp_daemon
|
||||
%dir %{_sysconfdir}/rdma
|
||||
%dir %{_sysconfdir}/rdma/modules
|
||||
%config(noreplace) %{_sysconfdir}/srp_daemon.conf
|
||||
%config(noreplace) %{_sysconfdir}/rdma/modules/srp_daemon.conf
|
||||
%{_udevrulesdir}/60-srp_daemon.rules
|
||||
%{_libexecdir}/srp_daemon/start_on_all_ports
|
||||
%{_unitdir}/srp_daemon.service
|
||||
%{_unitdir}/srp_daemon_port@.service
|
||||
%{_sbindir}/ibsrpdm
|
||||
%{_sbindir}/srp_daemon
|
||||
%{_sbindir}/run_srp_daemon
|
||||
%{_sbindir}/rcsrp_daemon
|
||||
%{_mandir}/man1/ibsrpdm.1*
|
||||
%{_mandir}/man1/srp_daemon.1*
|
||||
%{_mandir}/man5/srp_daemon.service.5*
|
||||
%{_mandir}/man5/srp_daemon_port@.service.5*
|
||||
%doc %{_docdir}/%{name}-%{version}/ibsrpdm.md
|
||||
|
||||
%files -n rdma-ndd
|
||||
%defattr(-, root, root)
|
||||
%{_sbindir}/rdma-ndd
|
||||
%{_sbindir}/rcrdma-ndd
|
||||
%{_unitdir}/rdma-ndd.service
|
||||
%{_mandir}/man8/rdma-ndd.8*
|
||||
%{_udevrulesdir}/60-rdma-ndd.rules
|
||||
|
||||
%if %{with_pyverbs}
|
||||
%files -n python3-pyverbs
|
||||
%{python3_sitearch}/pyverbs
|
||||
%{_docdir}/%{name}-%{version}/tests/*.py
|
||||
%endif
|
||||
|
||||
%changelog
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package rdma-core
|
||||
#
|
||||
# Copyright (c) 2019 SUSE LLC
|
||||
# Copyright (c) 2020 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -25,9 +25,9 @@
|
||||
%define with_pyverbs 0
|
||||
%endif
|
||||
|
||||
%define git_ver .0.9f820de9ca7d
|
||||
%define git_ver .0.84caf035ae61
|
||||
Name: rdma-core
|
||||
Version: 26.1
|
||||
Version: 27.0
|
||||
Release: 0
|
||||
Summary: RDMA core userspace libraries and daemons
|
||||
License: GPL-2.0-only OR BSD-2-Clause
|
||||
@ -63,8 +63,9 @@ Source1: baselibs.conf
|
||||
Source2: post_download.sh
|
||||
Source3: prebuilt-pandoc.tgz
|
||||
Source4: rdma-core-rpmlintrc
|
||||
Patch0: bnxt_re-lib-Add-remaining-pci-ids-for-gen-P5-devices.patch
|
||||
Patch1: bnxt_re-lib-Recognize-additional-5750x-device-ID-s.patch
|
||||
Patch0: Revert-libnes-Remove-libnes-from-rdma-core.patch
|
||||
Patch1: Revert-libcxgb3-Remove-libcxgb3-from-rdma-core.patch
|
||||
Patch2: Revert-Update-kernel-headers.patch
|
||||
BuildRequires: binutils
|
||||
BuildRequires: cmake >= 2.8.11
|
||||
BuildRequires: gcc
|
||||
@ -408,6 +409,7 @@ easy, object-oriented access to IB verbs.
|
||||
(cd buildlib && tar xf %{S:3})
|
||||
%patch0
|
||||
%patch1
|
||||
%patch2
|
||||
|
||||
%build
|
||||
|
||||
@ -873,6 +875,8 @@ rm -rf %{buildroot}/%{_sbindir}/srp_daemon.sh
|
||||
%if %{with_pyverbs}
|
||||
%files -n python3-pyverbs
|
||||
%{python3_sitearch}/pyverbs
|
||||
%dir %{_docdir}/%{name}-%{version}/tests/
|
||||
%{_docdir}/%{name}-%{version}/tests/*.py
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
|
Loading…
x
Reference in New Issue
Block a user