Skip to content

Commit

Permalink
Version 6.2.11.5
Browse files Browse the repository at this point in the history
- Fixed return codes for vdoPrepareForLVM conversions.
  • Loading branch information
lorelei-sakai committed Dec 5, 2024
1 parent 568004b commit 116e5a5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion utils/vdo/base/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#
# $Id: //eng/vdo-releases/aluminum/src/packaging/src-dist/user/utils/vdo/base/Makefile#2 $

VDO_VERSION = 6.2.11.4
VDO_VERSION = 6.2.11.5

UDS_DIR = ../../uds

Expand Down
2 changes: 1 addition & 1 deletion utils/vdo/user/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

# $Id: //eng/vdo-releases/aluminum/src/packaging/src-dist/user/utils/vdo/user/Makefile#17 $

VDO_VERSION = 6.2.11.4
VDO_VERSION = 6.2.11.5

UDS_DIR = ../../uds
VDO_BASE_DIR = ../base
Expand Down
6 changes: 3 additions & 3 deletions utils/vdo/user/vdoprepareforlvm.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*
* $Id: //eng/vdo-releases/aluminum/src/c++/vdo/user/vdoPrepareForLVM.c#10 $
* $Id: //eng/vdo-releases/aluminum/src/c++/vdo/user/vdoPrepareForLVM.c#11 $
*/

#include <err.h>
Expand Down Expand Up @@ -712,7 +712,7 @@ static int performDeviceConversion(off_t oldBlockOffset)
" starting at offset %lu\n",
fileName, lvmExtentSize, newBlockOffset * VDO_BLOCK_SIZE);

return deviceCheckResultToExitStatus(result, true);
return 0;
}

/**
Expand Down Expand Up @@ -894,7 +894,7 @@ static int repairDeviceConversion(off_t oldBlockOffset)
" starting at offset %lu\n",
fileName, lvmExtentSize, newBlockOffset * VDO_BLOCK_SIZE);

return deviceCheckResultToExitStatus(result, true);
return 0;
}

/**********************************************************************/
Expand Down
6 changes: 3 additions & 3 deletions vdo.spec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
Summary: Management tools for Virtual Data Optimizer
Name: vdo
Version: 6.2.11.4
Version: 6.2.11.5
Release: %{spec_release}%{?dist}
License: GPLv2
Source0: %{name}-%{version}.tgz
Expand Down Expand Up @@ -184,5 +184,5 @@ This package provides the user-space support tools for VDO.
%{_mandir}/man8/vdoregenerategeometry.8.gz

%changelog
* Mon Dec 02 2024 - Red Hat VDO Team <[email protected]> - 6.2.11.4-1
- Enabled vdoPrepareForLVM to check read-only devices.
* Thu Dec 05 2024 - Red Hat VDO Team <[email protected]> - 6.2.11.5-1
- Fixed return codes for vdoPrepareForLVM conversions.

0 comments on commit 116e5a5

Please sign in to comment.