Skip to content

Commit e7901f0

Browse files
authored
Merge pull request #77 from tvegas1/NEWS_274
RELEASE: Update repository to v2.7.4
2 parents b357bad + 846eea0 commit e7901f0

File tree

3 files changed

+24
-3
lines changed

3 files changed

+24
-3
lines changed

NEWS

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) NVIDIA CORPORATION & AFFILIATES, 2023. ALL RIGHTS RESERVED.
2+
# Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES, All rights reserved.
33
#
44
# See file LICENSE for terms.
55
#
@@ -9,6 +9,27 @@
99
#### Kernel driver:
1010
### Bugfixes:
1111

12+
## 2.7.4 (October 16, 2024)
13+
### Features:
14+
#### Kernel driver:
15+
* Harden kernel configuration detection
16+
* Add user-supplied kernel compile flags option
17+
* Add DKMS DEB kernel package generation
18+
* Add KMOD RPM kernel package generation
19+
* Add DKMS RPM kernel package generation
20+
#### Userspace:
21+
* Add userspace RPM packaging
22+
* Add userspace DEB packaging
23+
### Bugfixes:
24+
* Fixed DKMS to support build and install for multiple kernel sources
25+
* Fixed get_user_pages_remote detection in case of related backports
26+
* Fixed PTE/PMD/PUD macros detection for kernel 6.9 onwards
27+
* Fixed various build warnings
28+
* Fixed xpmem segments created twice
29+
* Fixed kernel source search path on RHEL8
30+
* Fixed kernel version detection when not specified
31+
* Fixed userspace-only build by not running kernel checks
32+
1233
## 2.7.3 (October 5, 2023)
1334
### Bugfixes:
1435
* Fixed compilation on kernel 6.5 onwards

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Process this file with autoconf to produce a configure script.
33

44
AC_PREREQ([2.63])
5-
AC_INIT([xpmem], [2.7.3], [http://github.com/openucx/xpmem/issues])
5+
AC_INIT([xpmem], [2.7.4], [http://github.com/openucx/xpmem/issues])
66
AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects])
77
AC_CONFIG_SRCDIR([include/xpmem.h])
88
AC_CONFIG_MACRO_DIR([m4])

kernel/xpmem_private.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
* major - major revision number (12-bits)
7070
* minor - minor revision number (16-bits)
7171
*/
72-
#define XPMEM_CURRENT_VERSION 0x00027003
72+
#define XPMEM_CURRENT_VERSION 0x00027004
7373
#define XPMEM_CURRENT_VERSION_STRING PACKAGE_VERSION
7474

7575
#define XPMEM_MODULE_NAME "xpmem"

0 commit comments

Comments
 (0)