Compare commits
2 Commits
Author | SHA256 | Date | |
---|---|---|---|
57c83e6aae | |||
dea2bb7f8f |
@@ -1,33 +0,0 @@
|
||||
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();
|
2
_service
2
_service
@@ -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">536ca51fb61bff316bc7b946e15c58bd48fc6a13</param>
|
||||
<param name="revision">0dc96e02cd226587c26767fe0350bda3f52f95b2</param>
|
||||
</service>
|
||||
<service name="recompress" mode="manual">
|
||||
<param name="file">libvma*.tar</param>
|
||||
|
BIN
libvma-9.8.60.0.536ca51fb61b.tar.gz
(Stored with Git LFS)
BIN
libvma-9.8.60.0.536ca51fb61b.tar.gz
(Stored with Git LFS)
Binary file not shown.
3
libvma-9.8.80.0.0dc96e02.tar.gz
Normal file
3
libvma-9.8.80.0.0dc96e02.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e789ec14144717855e131f452256a2f8cbcf94ab862669f6c609c120130ea752
|
||||
size 1122318
|
@@ -1,3 +1,16 @@
|
||||
-------------------------------------------------------------------
|
||||
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>
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package libvma
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC and contributors
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -17,19 +17,18 @@
|
||||
|
||||
|
||||
#
|
||||
%define git_ver .0.536ca51fb61b
|
||||
%define git_ver .0.0dc96e02
|
||||
%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.60
|
||||
Version: 9.8.80
|
||||
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
|
||||
|
Reference in New Issue
Block a user