-
Notifications
You must be signed in to change notification settings - Fork 302
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DAOS-14410 common: update PMDK to version 2.0.0 (#13217)
Update DAOS to use the latest stable version of PMDK. Remove irrelevant libpmem.h include. Signed-off-by: Tomasz Gromadzki <[email protected]>
- Loading branch information
Showing
12 changed files
with
37 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,15 @@ | ||
daos (2.5.100-11) unstable; urgency=medium | ||
daos (2.5.100-12) unstable; urgency=medium | ||
[ Tomasz Gromadzki ] | ||
* Update PMDK to 2.0.0 | ||
* Remove libpmemblk from dependencies. | ||
* Start using BUILD_EXAMPLES=n and BUILD_BENCHMARKS=n instead of patches. | ||
* Stop using BUILD_RPMEM=n (removed) and NDCTL_DISABLE=y (invalid). | ||
* Point https://github.com/pmem/pmdk as the main PMDK reference source. | ||
NOTE: PMDK upgrade to 2.0.0 does not affect any API call used by DAOS. | ||
libpmemobj (and libpmem) API stays unchanged. | ||
|
||
-- Tomasz Gromadzki <[email protected]> Fri, 17 Nov 2023 12:52:00 -0400 | ||
|
||
[ Jerome Soumagne ] | ||
* Bump mercury min version to 2.3.1 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ | |
|
||
Name: daos | ||
Version: 2.5.100 | ||
Release: 11%{?relval}%{?dist} | ||
Release: 12%{?relval}%{?dist} | ||
Summary: DAOS Storage Engine | ||
|
||
License: BSD-2-Clause-Patent | ||
|
@@ -49,7 +49,7 @@ BuildRequires: libabt-devel >= 1.0rc1 | |
BuildRequires: libjson-c-devel | ||
BuildRequires: boost-devel | ||
%endif | ||
BuildRequires: libpmemobj-devel >= 1.12.1~rc1 | ||
BuildRequires: libpmemobj-devel >= 2.0.0 | ||
%if (0%{?rhel} >= 8) | ||
BuildRequires: fuse3-devel >= 3 | ||
%else | ||
|
@@ -145,11 +145,11 @@ Requires: ndctl | |
# needed to set PMem configuration goals in BIOS through control-plane | ||
%if (0%{?suse_version} >= 1500) | ||
Requires: ipmctl >= 03.00.00.0423 | ||
Requires: libpmemobj1 >= 1.12.1~rc1-1.suse1500 | ||
Requires: libpmemobj1 >= 2.0.0-1.suse1500 | ||
Requires: libfabric1 >= %{libfabric_version} | ||
%else | ||
Requires: ipmctl >= 03.00.00.0468 | ||
Requires: libpmemobj >= 1.12.1~rc1-1%{?dist} | ||
Requires: libpmemobj >= 2.0.0-1%{?dist} | ||
%endif | ||
Requires: libfabric >= %{libfabric_version} | ||
Requires: mercury >= %{mercury_version} | ||
|
@@ -585,6 +585,15 @@ getent passwd daos_agent >/dev/null || useradd -s /sbin/nologin -r -g daos_agent | |
# No files in a shim package | ||
|
||
%changelog | ||
* Fri Nov 17 2023 Tomasz Gromadzki <[email protected]> 2.5.100-12 | ||
- Update to PMDK 2.0.0 | ||
* Remove libpmemblk from dependencies. | ||
* Start using BUILD_EXAMPLES=n and BUILD_BENCHMARKS=n instead of patches. | ||
* Stop using BUILD_RPMEM=n (removed) and NDCTL_DISABLE=y (invalid). | ||
* Point https://github.com/pmem/pmdk as the main PMDK reference source. | ||
NOTE: PMDK upgrade to 2.0.0 does not affect any API call used by DAOS. | ||
libpmemobj (and libpmem) API stays unchanged. | ||
|
||
* Wed Nov 15 2023 Jerome Soumagne <[email protected]> 2.5.100-11 | ||
- Bump mercury min version to 2.3.1 | ||
|
||
|