4 Commits

Author SHA256 Message Date
f082792fde Accepting request 1221080 from science:HPC
OBS-URL: https://build.opensuse.org/request/show/1221080
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libvma?expand=0&rev=19
2024-11-04 21:43:08 +00:00
ec8ca72f2d - 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

OBS-URL: https://build.opensuse.org/package/show/science:HPC/libvma?expand=0&rev=37
2024-11-04 17:10:43 +00:00
5019428eba Accepting request 1198993 from science:HPC
OBS-URL: https://build.opensuse.org/request/show/1198993
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libvma?expand=0&rev=18
2024-09-06 15:18:20 +00:00
bb9aca9b8f - Backport upstream patch to fix compilation GCC >= 14
- Fix-compilation-with-GCC-14.patch
- Refresh harden_vma.service.patch to use patch -p0 format

OBS-URL: https://build.opensuse.org/package/show/science:HPC/libvma?expand=0&rev=35
2024-09-05 13:06:08 +00:00
6 changed files with 41 additions and 20 deletions

View 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();

View File

@@ -6,7 +6,7 @@
<param name="exclude">.git</param>
<param name="filename">libvma</param>
<param name="versionformat">@PARENT_TAG@.@TAG_OFFSET@.%h</param>
<param name="revision">0dc96e02cd226587c26767fe0350bda3f52f95b2</param>
<param name="revision">536ca51fb61bff316bc7b946e15c58bd48fc6a13</param>
</service>
<service name="recompress" mode="manual">
<param name="file">libvma*.tar</param>

Binary file not shown.

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e789ec14144717855e131f452256a2f8cbcf94ab862669f6c609c120130ea752
size 1122318

View File

@@ -1,16 +1,3 @@
-------------------------------------------------------------------
Mon Sep 8 10:52:02 UTC 2025 - Nicolas Morey <nicolas.morey@suse.com>
- Update to v9.8.80
- RM #4607536 Improve VMA stability
- RM #4446285 Replace linux list with BSD list
- RM #4337575 Init VMA in vma_thread_offload()
- RM #4260620 infinite loop latency spec
- RM #4251780 SocketXtreme API for external allocator
- RM #4223310 VMA support for kernel 6.10
- RM #4233101 header licensing for 2025
- Drop Fix-compilation-with-GCC-14.patch as it was fixed upstream.
-------------------------------------------------------------------
Mon Nov 4 16:18:15 UTC 2024 - Nicolas Morey <nicolas.morey@suse.com>

View File

@@ -1,7 +1,7 @@
#
# spec file for package libvma
#
# Copyright (c) 2025 SUSE LLC and contributors
# 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.0dc96e02
%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.80
Version: 9.8.60
Release: 0
Source0: %{name}-%{version}%{git_ver}.tar.gz
Source1: vma.service
Patch1: harden_vma.service.patch
Patch2: Fix-compilation-with-GCC-14.patch
URL: https://github.com/Mellanox/libvma
BuildRequires: autoconf
BuildRequires: automake