Compare commits
4 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| f082792fde | |||
| ec8ca72f2d | |||
| 5019428eba | |||
| bb9aca9b8f |
33
Fix-compilation-with-GCC-14.patch
Normal file
33
Fix-compilation-with-GCC-14.patch
Normal file
@@ -0,0 +1,33 @@
|
||||
commit 09834d6cfa193439f6b35364b4f1c6134643198a
|
||||
Author: Yaakov Selkowitz <yselkowi@redhat.com>
|
||||
Date: Sun Jun 23 12:09:14 2024 -0400
|
||||
|
||||
Fix compilation with GCC 14
|
||||
|
||||
C++20 has changed the syntax for nested template constructors:
|
||||
|
||||
```
|
||||
In file included from ../../src/vma/proto/mem_buf_desc.h:39,
|
||||
from ../../src/vma/util/utils.h:47,
|
||||
from vlogger.cpp:46:
|
||||
../../src/vma/util/vma_list.h:210:31: error: template-id not allowed for constructor in C++20 [-Werror=template-id-cdtor]
|
||||
210 | vma_list_t<T, offset> (const vma_list_t<T, offset>& other) {
|
||||
| ^
|
||||
../../src/vma/util/vma_list.h:210:31: note: remove the '< >'
|
||||
```
|
||||
|
||||
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
|
||||
|
||||
diff --git src/vma/util/vma_list.h src/vma/util/vma_list.h
|
||||
index cd3e5f9eef38..550fe709ea05 100644
|
||||
--- src/vma/util/vma_list.h
|
||||
+++ src/vma/util/vma_list.h
|
||||
@@ -207,7 +207,7 @@ public:
|
||||
}
|
||||
}
|
||||
|
||||
- vma_list_t<T, offset> (const vma_list_t<T, offset>& other) {
|
||||
+ vma_list_t(const vma_list_t<T, offset>& other) {
|
||||
if (!other.empty())
|
||||
vlist_logwarn("Copy constructor is not supported for non-empty list! other.size=%zu", other.m_size);
|
||||
init_list();
|
||||
6
_service
6
_service
@@ -1,14 +1,14 @@
|
||||
<services>
|
||||
<service name="tar_scm" mode="disabled">
|
||||
<service name="tar_scm" mode="manual">
|
||||
<param name="scm">git</param>
|
||||
<param name="url">https://github.com/Mellanox/libvma.git</param>
|
||||
<param name="package-meta">no</param>
|
||||
<param name="exclude">.git</param>
|
||||
<param name="filename">libvma</param>
|
||||
<param name="versionformat">@PARENT_TAG@.@TAG_OFFSET@.%h</param>
|
||||
<param name="revision">ae7f37cbdd4fae4b56fb5523bab8fbdb7dbc4177</param>
|
||||
<param name="revision">536ca51fb61bff316bc7b946e15c58bd48fc6a13</param>
|
||||
</service>
|
||||
<service name="recompress" mode="disabled">
|
||||
<service name="recompress" mode="manual">
|
||||
<param name="file">libvma*.tar</param>
|
||||
<param name="compression">gz</param>
|
||||
</service>
|
||||
|
||||
@@ -1,7 +1,13 @@
|
||||
Index: libvma-9.3.1.0.47396f1a5eaa/contrib/scripts/vma.service.in
|
||||
===================================================================
|
||||
--- libvma-9.3.1.0.47396f1a5eaa.orig/contrib/scripts/vma.service.in
|
||||
+++ libvma-9.3.1.0.47396f1a5eaa/contrib/scripts/vma.service.in
|
||||
commit efdb35ba76077c15054efa3c170c13ce303f284d
|
||||
Author: Nicolas Morey <nmorey@suse.com>
|
||||
Date: Thu Sep 5 14:40:33 2024 +0200
|
||||
|
||||
harden vma.service
|
||||
|
||||
diff --git contrib/scripts/vma.service.in contrib/scripts/vma.service.in
|
||||
index e6f5a25b7e00..86d40487ab24 100644
|
||||
--- contrib/scripts/vma.service.in
|
||||
+++ contrib/scripts/vma.service.in
|
||||
@@ -3,6 +3,19 @@ Description=VMA Daemon
|
||||
After=network.target
|
||||
|
||||
|
||||
Binary file not shown.
BIN
libvma-9.8.60.0.536ca51fb61b.tar.gz
LFS
Normal file
BIN
libvma-9.8.60.0.536ca51fb61b.tar.gz
LFS
Normal file
Binary file not shown.
@@ -1,3 +1,23 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 4 16:18:15 UTC 2024 - Nicolas Morey <nicolas.morey@suse.com>
|
||||
|
||||
- Update to v9.8.60 (jsc#PED-11338 jsc#PED-11339)
|
||||
- RM #3749337 Fix TCP keepAlive timer when set to -1
|
||||
- RM #3749310 Fix delayed TCP keepAlive probes
|
||||
- RM #3604029 Fix releasing ring flow
|
||||
- RM #3623373 Fix corruption during ring release
|
||||
- RM #3655436 Add full TCP_KEEPALIVE support
|
||||
- RM #3697720 Fixing socket destruction race
|
||||
- RM #1214066 Update some unsigned char -> uint32_t for table_id
|
||||
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 5 12:43:04 UTC 2024 - Nicolas Morey <nicolas.morey@suse.com>
|
||||
|
||||
- Backport upstream patch to fix compilation GCC >= 14
|
||||
- Fix-compilation-with-GCC-14.patch
|
||||
- Refresh harden_vma.service.patch to use patch -p0 format
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 1 10:22:45 UTC 2024 - pgajdos@suse.com
|
||||
|
||||
|
||||
11
libvma.spec
11
libvma.spec
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package libvma
|
||||
#
|
||||
# Copyright (c) 2023 SUSE LLC
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -17,18 +17,19 @@
|
||||
|
||||
|
||||
#
|
||||
%define git_ver .0.ae7f37cbdd4f
|
||||
%define git_ver .0.536ca51fb61b
|
||||
%define lib_major 9
|
||||
|
||||
Name: libvma
|
||||
Summary: A library for boosting TCP and UDP traffic (over RDMA hardware)
|
||||
License: BSD-2-Clause OR GPL-2.0-only
|
||||
Group: Development/Libraries/C and C++
|
||||
Version: 9.8.40
|
||||
Version: 9.8.60
|
||||
Release: 0
|
||||
Source0: %{name}-%{version}%{git_ver}.tar.gz
|
||||
Source1: vma.service
|
||||
Patch3: harden_vma.service.patch
|
||||
Patch1: harden_vma.service.patch
|
||||
Patch2: Fix-compilation-with-GCC-14.patch
|
||||
URL: https://github.com/Mellanox/libvma
|
||||
BuildRequires: autoconf
|
||||
BuildRequires: automake
|
||||
@@ -70,7 +71,7 @@ Requires: libvma%{lib_major} = %{version}
|
||||
Headers and symbolink link required to compile and link with the Libvma library.
|
||||
|
||||
%prep
|
||||
%autosetup -p1 -n %{name}-%{version}%{git_ver}
|
||||
%autosetup -p0 -n %{name}-%{version}%{git_ver}
|
||||
|
||||
%build
|
||||
./autogen.sh
|
||||
|
||||
Reference in New Issue
Block a user