|
|
c17ab1 |
%global commit 4379e727bb0dd8fcfdbbd978d0cc25742dbaa132
|
|
|
c17ab1 |
%global gittag 6.1.3.23
|
|
|
8ac5a7 |
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
|
|
6d07f9 |
%define spec_release 5
|
|
|
b241ce |
|
|
|
b241ce |
%define kmod_name kvdo
|
|
|
cf0ddc |
%define kmod_driver_version %{gittag}
|
|
|
b241ce |
%define kmod_rpm_release %{spec_release}
|
|
|
c17ab1 |
%define kmod_kernel_version 3.10.0-1133.el7
|
|
|
b241ce |
%define kmod_headers_version %(rpm -qa kernel-devel | sed 's/^kernel-devel-//')
|
|
|
b241ce |
%define kmod_kbuild_dir .
|
|
|
b241ce |
%define kmod_dependencies %{nil}
|
|
|
b241ce |
%define kmod_build_dependencies %{nil}
|
|
|
b241ce |
%define kmod_devel_package 0
|
|
|
b241ce |
|
|
|
6d07f9 |
Source0: https://github.com/dm-vdo/%{kmod_name}/archive/%{commit}/%{kmod_name}-%{shortcommit}.tar.gz
|
|
|
b241ce |
%{nil}
|
|
|
b241ce |
|
|
|
b241ce |
%define findpat %( echo "%""P" )
|
|
|
b241ce |
%define __find_requires /usr/lib/rpm/redhat/find-requires.ksyms
|
|
|
6d07f9 |
%if 0%{?rhel}
|
|
|
6d07f9 |
# Fedora has deprecated this.
|
|
|
b241ce |
%define __find_provides /usr/lib/rpm/redhat/find-provides.ksyms %{kmod_name} %{?epoch:%{epoch}:}%{version}-%{release}
|
|
|
6d07f9 |
%endif
|
|
|
b241ce |
%define sbindir %( if [ -d "/sbin" -a \! -h "/sbin" ]; then echo "/sbin"; else echo %{_sbindir}; fi )
|
|
|
b241ce |
|
|
|
b241ce |
Name: kmod-kvdo
|
|
|
b241ce |
Version: %{kmod_driver_version}
|
|
|
b241ce |
Release: %{kmod_rpm_release}%{?dist}
|
|
|
b241ce |
Summary: Kernel Modules for Virtual Data Optimizer
|
|
|
b241ce |
License: GPLv2+
|
|
|
b241ce |
URL: http://github.com/dm-vdo/kvdo
|
|
|
b241ce |
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
|
|
|
6d07f9 |
%if 0%{?fedora}
|
|
|
6d07f9 |
# Fedora requires elfutils-libelf-devel, while rhel does not.
|
|
|
6d07f9 |
BuildRequires: elfutils-libelf-devel
|
|
|
6d07f9 |
%endif
|
|
|
b241ce |
BuildRequires: glibc
|
|
|
6d07f9 |
%if 0%{?rhel}
|
|
|
6d07f9 |
# Fedora doesn't have abi whitelists.
|
|
|
b241ce |
BuildRequires: kernel-abi-whitelists
|
|
|
6d07f9 |
%endif
|
|
|
6d07f9 |
BuildRequires: kernel-devel >= %{kmod_kernel_version}
|
|
|
6d07f9 |
BuildRequires: kernel-debug >= %{kmod_kernel_version}
|
|
|
b241ce |
BuildRequires: libuuid-devel
|
|
|
6d07f9 |
BuildRequires: redhat-rpm-config
|
|
|
b241ce |
ExclusiveArch: x86_64
|
|
|
b241ce |
ExcludeArch: s390
|
|
|
b241ce |
ExcludeArch: s390x
|
|
|
b241ce |
ExcludeArch: ppc
|
|
|
b241ce |
ExcludeArch: ppc64
|
|
|
b241ce |
ExcludeArch: ppc64le
|
|
|
b241ce |
ExcludeArch: aarch64
|
|
|
b241ce |
ExcludeArch: i686
|
|
|
b241ce |
%global kernel_source() /usr/src/kernels/%{kmod_headers_version}
|
|
|
b241ce |
|
|
|
b241ce |
%global _use_internal_dependency_generator 0
|
|
|
b241ce |
Provides: kernel-modules = %{kmod_kernel_version}.%{_target_cpu}
|
|
|
b241ce |
Provides: kmod-%{kmod_name} = %{?epoch:%{epoch}:}%{version}-%{release}
|
|
|
b241ce |
Requires(post): %{sbindir}/weak-modules
|
|
|
b241ce |
Requires(postun): %{sbindir}/weak-modules
|
|
|
b241ce |
Requires: kernel >= %{kmod_kernel_version}
|
|
|
b241ce |
%if 0
|
|
|
b241ce |
Requires: firmware(%{kmod_name}) = ENTER_FIRMWARE_VERSION
|
|
|
b241ce |
%endif
|
|
|
b241ce |
%if "%{kmod_build_dependencies}" != ""
|
|
|
b241ce |
BuildRequires: %{kmod_build_dependencies}
|
|
|
b241ce |
%endif
|
|
|
b241ce |
%if "%{kmod_dependencies}" != ""
|
|
|
b241ce |
Requires: %{kmod_dependencies}
|
|
|
b241ce |
%endif
|
|
|
b241ce |
# if there are multiple kmods for the same driver from different vendors,
|
|
|
b241ce |
# they should conflict with each other.
|
|
|
b241ce |
Conflicts: kmod-%{kmod_name}
|
|
|
b241ce |
|
|
|
b241ce |
%description
|
|
|
b241ce |
Virtual Data Optimizer (VDO) is a device mapper target that delivers
|
|
|
b241ce |
block-level deduplication, compression, and thin provisioning.
|
|
|
b241ce |
|
|
|
b241ce |
This package provides the kernel modules for VDO.
|
|
|
b241ce |
|
|
|
6d07f9 |
%pre
|
|
|
6d07f9 |
# During the install, check whether kvdo or uds is loaded. A warning here
|
|
|
6d07f9 |
# indicates that a previous install was not completely removed. This message
|
|
|
6d07f9 |
# is purely informational to the user.
|
|
|
6d07f9 |
for module in kvdo uds; do
|
|
|
6d07f9 |
if grep -q "^${module}" /proc/modules; then
|
|
|
6d07f9 |
if [ "${module}" == "kvdo" ]; then
|
|
|
6d07f9 |
echo "WARNING: Found ${module} module previously loaded (Version: $(cat /sys/kvdo/version 2>/dev/null || echo Uknown)). A reboot is recommended before attempting to use the newly installed module."
|
|
|
6d07f9 |
else
|
|
|
6d07f9 |
echo "WARNING: Found ${module} module previously loaded. A reboot is recommended before attempting to use the newly installed module."
|
|
|
6d07f9 |
fi
|
|
|
6d07f9 |
fi
|
|
|
6d07f9 |
done
|
|
|
6d07f9 |
|
|
|
b241ce |
%if 0
|
|
|
b241ce |
|
|
|
b241ce |
%package -n kmod-kvdo-firmware
|
|
|
b241ce |
Version: ENTER_FIRMWARE_VERSION
|
|
|
b241ce |
Summary: Kernel Modules for Virtual Data Optimizer
|
|
|
b241ce |
Provides: firmware(%{kmod_name}) = ENTER_FIRMWARE_VERSION
|
|
|
b241ce |
Provides: kernel-modules = %{kmod_kernel_version}.%{_target_cpu}
|
|
|
b241ce |
%description -n kmod-kvdo-firmware
|
|
|
b241ce |
Virtual Data Optimizer (VDO) is a device mapper target that delivers
|
|
|
b241ce |
block-level deduplication, compression, and thin provisioning.
|
|
|
b241ce |
|
|
|
b241ce |
This package provides the firmware for VDO.
|
|
|
b241ce |
|
|
|
b241ce |
%files -n kmod-kvdo-firmware
|
|
|
b241ce |
%defattr(644,root,root,755)
|
|
|
b241ce |
%{FIRMWARE_FILES}
|
|
|
b241ce |
|
|
|
b241ce |
%endif
|
|
|
b241ce |
|
|
|
b241ce |
# Development package
|
|
|
b241ce |
%if 0%{kmod_devel_package}
|
|
|
b241ce |
%package -n kmod-kvdo-devel
|
|
|
b241ce |
Version: %{kmod_driver_version}
|
|
|
b241ce |
Requires: kernel >= %{kmod_kernel_version}
|
|
|
b241ce |
Summary: Kernel Modules for Virtual Data Optimizer
|
|
|
b241ce |
|
|
|
b241ce |
%description -n kmod-kvdo-devel
|
|
|
b241ce |
Virtual Data Optimizer (VDO) is a device mapper target that delivers
|
|
|
b241ce |
block-level deduplication, compression, and thin provisioning.
|
|
|
b241ce |
|
|
|
b241ce |
This package provides the development files for VDO.
|
|
|
b241ce |
|
|
|
6d07f9 |
|
|
|
b241ce |
%files -n kmod-kvdo-devel
|
|
|
b241ce |
%defattr(644,root,root,755)
|
|
|
b241ce |
/usr/share/kmod-%{kmod_name}/Module.symvers
|
|
|
b241ce |
%endif
|
|
|
b241ce |
|
|
|
b241ce |
%post
|
|
|
b241ce |
modules=( $(find /lib/modules/%{kmod_headers_version}/extra/kmod-%{kmod_name} | grep '\.ko$') )
|
|
|
b241ce |
printf '%s\n' "${modules[@]}" >> /var/lib/rpm-kmod-posttrans-weak-modules-add
|
|
|
b241ce |
|
|
|
b241ce |
%pretrans -p <lua>
|
|
|
b241ce |
posix.unlink("/var/lib/rpm-kmod-posttrans-weak-modules-add")
|
|
|
b241ce |
|
|
|
b241ce |
%posttrans
|
|
|
b241ce |
if [ -f "/var/lib/rpm-kmod-posttrans-weak-modules-add" ]; then
|
|
|
b241ce |
modules=( $(cat /var/lib/rpm-kmod-posttrans-weak-modules-add) )
|
|
|
b241ce |
rm -rf /var/lib/rpm-kmod-posttrans-weak-modules-add
|
|
|
b241ce |
printf '%s\n' "${modules[@]}" | %{sbindir}/weak-modules --add-modules
|
|
|
b241ce |
fi
|
|
|
b241ce |
|
|
|
b241ce |
%preun
|
|
|
b241ce |
rpm -ql kmod-kvdo-%{kmod_driver_version}-%{kmod_rpm_release}%{?dist}.$(arch) | grep '\.ko$' > /var/run/rpm-kmod-%{kmod_name}-modules
|
|
|
b241ce |
# Check whether kvdo or uds is loaded, and if so attempt to remove it. A
|
|
|
6d07f9 |
# failure to unload means there is still something using the module. To make
|
|
|
6d07f9 |
# sure the user is aware, we print a warning with recommended instructions.
|
|
|
b241ce |
for module in kvdo uds; do
|
|
|
b241ce |
if grep -q "^${module}" /proc/modules; then
|
|
|
6d07f9 |
warnMessage="WARNING: ${module} in use. Changes will take effect after a reboot."
|
|
|
6d07f9 |
modprobe -r ${module} 2>/dev/null || echo ${warnMessage} && /usr/bin/true
|
|
|
b241ce |
fi
|
|
|
b241ce |
done
|
|
|
6d07f9 |
|
|
|
b241ce |
|
|
|
b241ce |
%postun
|
|
|
b241ce |
modules=( $(cat /var/run/rpm-kmod-%{kmod_name}-modules) )
|
|
|
b241ce |
rm /var/run/rpm-kmod-%{kmod_name}-modules
|
|
|
b241ce |
printf '%s\n' "${modules[@]}" | %{sbindir}/weak-modules --remove-modules
|
|
|
b241ce |
|
|
|
b241ce |
%files
|
|
|
b241ce |
%defattr(644,root,root,755)
|
|
|
b241ce |
/lib/modules/%{kmod_headers_version}
|
|
|
b241ce |
/etc/depmod.d/%{kmod_name}.conf
|
|
|
b241ce |
/usr/share/doc/kmod-%{kmod_name}/greylist.txt
|
|
|
b241ce |
|
|
|
b241ce |
%prep
|
|
|
8ac5a7 |
%setup -n %{kmod_name}-%{commit}
|
|
|
6d07f9 |
|
|
|
b241ce |
%{nil}
|
|
|
b241ce |
set -- *
|
|
|
b241ce |
mkdir source
|
|
|
b241ce |
mv "$@" source/
|
|
|
b241ce |
mkdir obj
|
|
|
b241ce |
|
|
|
b241ce |
%build
|
|
|
b241ce |
rm -rf obj
|
|
|
b241ce |
cp -r source obj
|
|
|
b241ce |
make -C %{kernel_source} M=$PWD/obj/%{kmod_kbuild_dir} V=1 \
|
|
|
b241ce |
NOSTDINC_FLAGS="-I $PWD/obj/include -I $PWD/obj/include/uapi"
|
|
|
b241ce |
# mark modules executable so that strip-to-file can strip them
|
|
|
b241ce |
find obj/%{kmod_kbuild_dir} -name "*.ko" -type f -exec chmod u+x '{}' +
|
|
|
b241ce |
|
|
|
b241ce |
whitelist="/lib/modules/kabi-current/kabi_whitelist_%{_target_cpu}"
|
|
|
b241ce |
for modules in $( find obj/%{kmod_kbuild_dir} -name "*.ko" -type f -printf "%{findpat}\n" | sed 's|\.ko$||' | sort -u ) ; do
|
|
|
b241ce |
# update depmod.conf
|
|
|
b241ce |
module_weak_path=$(echo $modules | sed 's/[\/]*[^\/]*$//')
|
|
|
b241ce |
if [ -z "$module_weak_path" ]; then
|
|
|
b241ce |
module_weak_path=%{name}
|
|
|
b241ce |
else
|
|
|
b241ce |
module_weak_path=%{name}/$module_weak_path
|
|
|
b241ce |
fi
|
|
|
b241ce |
echo "override $(echo $modules | sed 's/.*\///') $(echo %{kmod_headers_version} | sed 's/\.[^\.]*$//').* weak-updates/$module_weak_path" >> source/depmod.conf
|
|
|
b241ce |
|
|
|
b241ce |
# update greylist
|
|
|
b241ce |
nm -u obj/%{kmod_kbuild_dir}/$modules.ko | sed 's/.*U //' | sed 's/^\.//' | sort -u | while read -r symbol; do
|
|
|
b241ce |
grep -q "^\s*$symbol\$" $whitelist || echo "$symbol" >> source/greylist
|
|
|
b241ce |
done
|
|
|
b241ce |
done
|
|
|
b241ce |
sort -u source/greylist | uniq > source/greylist.txt
|
|
|
b241ce |
|
|
|
b241ce |
%install
|
|
|
b241ce |
export INSTALL_MOD_PATH=$RPM_BUILD_ROOT
|
|
|
b241ce |
export INSTALL_MOD_DIR=extra/%{name}
|
|
|
b241ce |
make -C %{kernel_source} modules_install V=1 \
|
|
|
b241ce |
M=$PWD/obj/%{kmod_kbuild_dir}
|
|
|
b241ce |
# Cleanup unnecessary kernel-generated module dependency files.
|
|
|
b241ce |
find $INSTALL_MOD_PATH/lib/modules -iname 'modules.*' -exec rm {} \;
|
|
|
b241ce |
|
|
|
b241ce |
install -m 644 -D source/depmod.conf $RPM_BUILD_ROOT/etc/depmod.d/%{kmod_name}.conf
|
|
|
b241ce |
install -m 644 -D source/greylist.txt $RPM_BUILD_ROOT/usr/share/doc/kmod-%{kmod_name}/greylist.txt
|
|
|
b241ce |
%if 0
|
|
|
b241ce |
%{FIRMWARE_FILES_INSTALL}
|
|
|
b241ce |
%endif
|
|
|
b241ce |
%if 0%{kmod_devel_package}
|
|
|
b241ce |
install -m 644 -D $PWD/obj/%{kmod_kbuild_dir}/Module.symvers $RPM_BUILD_ROOT/usr/share/kmod-%{kmod_name}/Module.symvers
|
|
|
b241ce |
%endif
|
|
|
b241ce |
|
|
|
b241ce |
%clean
|
|
|
b241ce |
rm -rf $RPM_BUILD_ROOT
|
|
|
b241ce |
|
|
|
b241ce |
%changelog
|
|
|
c17ab1 |
* Thu Apr 09 2020 - Andy Walsh <awalsh@redhat.com> 6.1.3.23-5
|
|
|
c17ab1 |
- Fixed a bug where crash recovery could use the wrong threads for certain
|
|
|
c17ab1 |
operations potentially resulting in memory corruption.
|
|
|
c17ab1 |
- Resolves: rhbz#1821275
|
|
|
c17ab1 |
|
|
|
5e0c39 |
* Thu Sep 05 2019 - Andy Walsh <awalsh@redhat.com> 6.1.3.7-5
|
|
|
5e0c39 |
- Fixed a rare bug which would log an assertion failure when shutting down
|
|
|
5e0c39 |
a VDO device.
|
|
|
5e0c39 |
- Resolves: rhbz#1749000
|
|
|
5e0c39 |
|
|
|
5e0c39 |
* Tue Aug 20 2019 - Andy Walsh <awalsh@redhat.com> 6.1.3.4-5
|
|
|
5e0c39 |
- Reduced and rate limited more error logging in order to avoid kernel
|
|
|
5e0c39 |
soft-lockups.
|
|
|
5e0c39 |
- Resolves: rhbz#1706196
|
|
|
5e0c39 |
- Fixed a bug in the handling of re-used bios. This bug resulted in a
|
|
|
5e0c39 |
kernel panic when rebooting a system after a crash with a VDO device on
|
|
|
5e0c39 |
USB attached storage.
|
|
|
5e0c39 |
- Resolves: rhbz#1676643
|
|
|
5e0c39 |
|
|
|
8f313d |
* Wed Mar 27 2019 - Andy Walsh <awalsh@redhat.com> 6.1.2.41-5
|
|
|
8f313d |
- Reduced and rate limited error logging in order to avoid kernel soft-lockups.
|
|
|
8f313d |
- Resolves: rhbz#1687005
|
|
|
8f313d |
|
|
|
8f313d |
* Tue Mar 19 2019 - Andy Walsh <awalsh@redhat.com> 6.1.2.38-5
|
|
|
8f313d |
- Fixed more error path memory leaks.
|
|
|
8f313d |
- Resolves: rhbz#1609426
|
|
|
8f313d |
- Rebased to version 6.2.0 of the UDS module
|
|
|
8f313d |
- Resolves: rhbz#1637762
|
|
|
8f313d |
- Improved counting of dedupe timeouts by including in the count queries
|
|
|
8f313d |
which are not made due to their being a lack of resources from previous
|
|
|
8f313d |
queries taking too long.
|
|
|
8f313d |
- Resolves: rhbz#1639898
|
|
|
8f313d |
- Fixed a NULL pointer dereference if dmeventd registration fails.
|
|
|
8f313d |
- Resolves: rhbz#1640794
|
|
|
8f313d |
- Fixed a bug in the statistics tracking partial I/Os.
|
|
|
8f313d |
- Resolves: rhbz#1594406
|
|
|
8f313d |
- Allowed VDO backing devices to be specified by major:minor device number.
|
|
|
8f313d |
- Resolves: rhbz#1637762
|
|
|
8f313d |
- Suppressed egregious read-only error logging.
|
|
|
8f313d |
- Resolves: rhbz#1687005
|
|
|
8f313d |
|
|
|
6d07f9 |
* Tue Sep 18 2018 - Andy Walsh <awalsh@redhat.com> 6.1.1.125-5
|
|
|
6d07f9 |
- Adjusted the warning when modules are found during install.
|
|
|
6d07f9 |
- Resolves: rhbz#1553420
|
|
|
6d07f9 |
|
|
|
6d07f9 |
* Fri Sep 14 2018 - Andy Walsh <awalsh@redhat.com> 6.1.1.125-4
|
|
|
6d07f9 |
- Attempt to unload modules and print a warning if unable to.
|
|
|
6d07f9 |
- Resolves: rhbz#1553420
|
|
|
6d07f9 |
- Fixed a hang when recovering a VDO volume with a physical size larger than
|
|
|
6d07f9 |
16TB.
|
|
|
6d07f9 |
- Resolves: rhbz#1628316
|
|
|
6d07f9 |
|
|
|
6d07f9 |
* Wed Sep 05 2018 - Andy Walsh <awalsh@redhat.com> 6.1.1.120-3
|
|
|
6d07f9 |
- Rebuilt to work with kernel build
|
|
|
6d07f9 |
- Resolves: rhbz#1625555
|
|
|
6d07f9 |
|
|
|
6d07f9 |
* Sun Jul 29 2018 - Andy Walsh <awalsh@redhat.com> 6.1.1.120-2
|
|
|
6d07f9 |
- No longer attempt to unload modules in %preun
|
|
|
6d07f9 |
- Resolves: rhbz#1553420
|
|
|
6d07f9 |
- Improved memory allocation by not using the incorrect __GFP_NORETRY flag
|
|
|
6d07f9 |
and by using the memalloc_noio_save mechanism.
|
|
|
6d07f9 |
- Resolves: rhbz#1571292
|
|
|
6d07f9 |
- Fixed a potential deadlock in the UDS index by using the kernel supplied
|
|
|
6d07f9 |
struct callback instead of our own implementation of synchronous
|
|
|
6d07f9 |
callbacks.
|
|
|
6d07f9 |
- Resolves: rhbz#1602151
|
|
|
6d07f9 |
- Fixed a potential stack overflow when reaping the recovery journal.
|
|
|
6d07f9 |
- Resolves: rhbz#1608070
|
|
|
6d07f9 |
- No longer attempt to unload modules in %preun
|
|
|
6d07f9 |
- Resolves: rhbz#1553420
|
|
|
6d07f9 |
- Improved safety around memory allocation permissions
|
|
|
6d07f9 |
- Resolves: rhbz#1595923
|
|
|
6d07f9 |
- Improved statistics accounting to allow for concurrent dedupe.
|
|
|
6d07f9 |
- Resolves: rhbz#1540722
|
|
|
6d07f9 |
|
|
|
6d07f9 |
* Sun Jul 15 2018 - Andy Walsh <awalsh@redhat.com> 6.1.1.111-1
|
|
|
6d07f9 |
- Added support for issuing fullness warnings via dmeventd
|
|
|
6d07f9 |
- rhbz#1519307
|
|
|
0edad9 |
- Fixed a bug which would cause kernel panics when a VDO device is stacked on a
|
|
|
0edad9 |
RAID50 device.
|
|
|
6d07f9 |
- Resolves: rhbz#1593444
|
|
|
6d07f9 |
- Improved logging when growing the physical size of a VDO volume.
|
|
|
6d07f9 |
- Resolves: rhbz#1597890
|
|
|
6d07f9 |
- Resolves: rhbz#1597886
|
|
|
6d07f9 |
- Removed misleading log messages when rebuilding the UDS index.
|
|
|
6d07f9 |
- Resolves: rhbz#1599867
|
|
|
6d07f9 |
|
|
|
6d07f9 |
* Wed Jun 20 2018 - Andy Walsh <awalsh@redhat.com> 6.1.1.99-1
|
|
|
6d07f9 |
- Added /sys/kvdo/version which contains the currently loaded version of
|
|
|
6d07f9 |
the kvdo module.
|
|
|
6d07f9 |
- Resolves: rhbz#1533950
|
|
|
6d07f9 |
- Added logging of normal operation when a VDO device starts normally.
|
|
|
6d07f9 |
- Resolves: rhbz#1520988
|
|
|
6d07f9 |
- Fixed a race in the UDS module which could cause the index to go offline.
|
|
|
6d07f9 |
- Resolves: rhbz#1520988
|
|
|
6d07f9 |
- Fixed a bug which would cause attempts to grow the physical size of a VDO
|
|
|
6d07f9 |
device to fail if the device below the VDO was resized while the VDO was
|
|
|
6d07f9 |
offline.
|
|
|
6d07f9 |
- Resolves: rhbz#1582647
|
|
|
6d07f9 |
- Fixed thread safety issues in the UDS page cache.
|
|
|
6d07f9 |
- Resolves: rhbz#1579492
|
|
|
6d07f9 |
- Modified the vdo script to not allow creation of a VDO device on top of an
|
|
|
6d07f9 |
already running VDO device.
|
|
|
6d07f9 |
- Resolves: rhbz#1572640
|
|
|
0edad9 |
- Fixed a bug which could cause data loss when discarding unused portions of a
|
|
|
0edad9 |
VDO's logical space.
|
|
|
6d07f9 |
- Resolves: rhbz#1589249
|
|
|
0edad9 |
- Modified grow physical to fail in the prepare step if the size isn't
|
|
|
0edad9 |
changing, avoiding a suspend-and-resume cycle.
|
|
|
6d07f9 |
- Resolves: rhbz#1576539
|
|
|
6d07f9 |
|
|
|
6d07f9 |
* Fri May 11 2018 - Andy Walsh <awalsh@redhat.com> - 6.1.1.84-1
|
|
|
6d07f9 |
- Deleted unused UDS features.
|
|
|
6d07f9 |
- Improved performance of sub 4K writes.
|
|
|
6d07f9 |
- Simplified and improved performance of writes with FUA.
|
|
|
6d07f9 |
- Improved the accuracy of dedupe statistics.
|
|
|
6d07f9 |
- Made the MurmurHash3 implementation architecture independent.
|
|
|
6d07f9 |
- Fixed compilation errors on newer versions of GCC.
|
|
|
6d07f9 |
- Eliminated spurious allocation of a UDS sparse cache for dense indexes.
|
|
|
8ac5a7 |
- Fixed a deadlock resulting from sleeping while holding a spinlock while
|
|
|
8ac5a7 |
getting statistics.
|
|
|
6d07f9 |
- Resvolves: rhbz#1562228
|
|
|
6d07f9 |
- Fixed bugs related to the timing of the creation and destruction of sysfs
|
|
|
6d07f9 |
nodes relative to the creation and destruction of VDO data structures.
|
|
|
6d07f9 |
- Resolves: rhbz#1559692
|
|
|
6d07f9 |
- Fixed a bug which made deduplication impossible to disable.
|
|
|
6d07f9 |
- Removed obsolete code.
|
|
|
6d07f9 |
- Improved deduplication of concurrent requests containing the same data.
|
|
|
6d07f9 |
- Reduced unnecessary logging.
|
|
|
6d07f9 |
- Resolves: rhbz#1511127
|
|
|
6d07f9 |
- Removed the prepare_ioctl() function to avoid signature changes since
|
|
|
6d07f9 |
this function currently does nothing.
|
|
|
6d07f9 |
- Resolves: rhbz#1568129
|
|
|
6d07f9 |
- Fixed a bug which made using a sparse index impossible to create.
|
|
|
6d07f9 |
- Resolves: rhbz#1570156
|
|
|
6d07f9 |
|
|
|
6d07f9 |
* Thu May 10 2018 - Andy Walsh <awalsh@redhat.com> - 6.1.1.24-1
|
|
|
6d07f9 |
- Rebased to 6.1.1 branch from github
|
|
|
6d07f9 |
- Resolves: rhbz#1576701
|
|
|
6d07f9 |
- Improved some error messages
|
|
|
8ac5a7 |
|
|
|
b241ce |
* Tue Feb 27 2018 - Andy Walsh <awalsh@redhat.com> - 6.1.0.153-15
|
|
|
b241ce |
- Fixed preun handling of loaded modules
|
|
|
b241ce |
- Resolves: rhbz#1549178
|
|
|
b241ce |
|
|
|
b241ce |
* Fri Feb 16 2018 - Joseph Chapman <jochapma@redhat.com> - 6.1.0.149-13
|
|
|
b241ce |
- Sync mode is safe if underlying storage changes to requiring flushes
|
|
|
b241ce |
- Resolves: rhbz#1540777
|
|
|
b241ce |
|
|
|
b241ce |
* Wed Feb 07 2018 - Joseph Chapman <jochapma@redhat.com> - 6.1.0.146-13
|
|
|
b241ce |
- Module target is now "vdo" instead of "dedupe"
|
|
|
b241ce |
- Fixed a bug where crash recovery led to failed kernel page request
|
|
|
b241ce |
- Improved modification log messages
|
|
|
b241ce |
- Improved package description and summary fields
|
|
|
b241ce |
- Resolves: rhbz#1535127
|
|
|
b241ce |
- Resolves: rhbz#1535597
|
|
|
b241ce |
- Resolves: rhbz#1540696
|
|
|
b241ce |
- Resolves: rhbz#1541409
|
|
|
b241ce |
|
|
|
b241ce |
* Tue Feb 06 2018 - Andy Walsh <awalsh@redhat.com> - 6.1.0.144-13
|
|
|
b241ce |
- Updated summary and descriptions
|
|
|
b241ce |
- Resolves: rhbz#1541409
|
|
|
b241ce |
|
|
|
b241ce |
* Thu Feb 01 2018 - Joseph Chapman <jochapma@redhat.com> - 6.1.0.130-12
|
|
|
b241ce |
- Fix General Protection Fault unlocking UDS callback mutex
|
|
|
b241ce |
- Removing kmod-kvdo package unloads kernel module
|
|
|
b241ce |
- Fix URL to point to GitHub tree
|
|
|
b241ce |
- Resolves: rhbz#1510176
|
|
|
b241ce |
- Resolves: rhbz#1533260
|
|
|
b241ce |
- Resolves: rhbz#1539061
|
|
|
b241ce |
|
|
|
b241ce |
* Fri Jan 19 2018 - Joseph Chapman <jochapma@redhat.com> - 6.1.0.124-11
|
|
|
b241ce |
- Fixed provisional referencing for dedupe.
|
|
|
b241ce |
- Only log a bio submission from a VDO to itself.
|
|
|
b241ce |
- vdoformat cleans up metadata properly after fail.
|
|
|
b241ce |
- Resolves: rhbz#1511587
|
|
|
b241ce |
- Resolves: rhbz#1520972
|
|
|
b241ce |
- Resolves: rhbz#1532481
|
|
|
b241ce |
|
|
|
b241ce |
* Wed Jan 10 2018 - Joseph Chapman <jochapma@redhat.com> - 6.1.0.114-11
|
|
|
b241ce |
- /sys/uds permissions now resticted to superuser only
|
|
|
b241ce |
- Remove /sys/uds files that should not be used in production
|
|
|
b241ce |
- Removing kvdo module reports version
|
|
|
b241ce |
- VDO automatically chooses the proper write policy by default
|
|
|
b241ce |
- Fixed a Coverity-detected error path leak
|
|
|
b241ce |
- Resolves: rhbz#1525305
|
|
|
b241ce |
- Resolves: rhbz#1527734
|
|
|
b241ce |
- Resolves: rhbz#1527737
|
|
|
b241ce |
- Resolves: rhbz#1527924
|
|
|
b241ce |
- Resolves: rhbz#1528399
|
|
|
b241ce |
|
|
|
b241ce |
* Thu Dec 21 2017 - Joseph Chapman <jochapma@redhat.com> - 6.1.0.106-11
|
|
|
b241ce |
- Detect journal overflow after 160E of writes
|
|
|
b241ce |
- Clean up UDS threads when removing last VDO
|
|
|
b241ce |
- Resolves: rhbz#1512968
|
|
|
b241ce |
- Resolves: rhbz#1523240
|
|
|
b241ce |
|
|
|
b241ce |
* Tue Dec 12 2017 Joe Chapman <jochapma@redhat.com> 6.1.0.97-11
|
|
|
b241ce |
- Default logical size is no longer over-provisioned
|
|
|
b241ce |
- Remove debug logging when verifying dedupe advice
|
|
|
b241ce |
- Resolves: rhbz#1519330
|
|
|
b241ce |
|
|
|
b241ce |
* Fri Dec 08 2017 Joe Chapman <jochapma@redhat.com> 6.1.0.89-11
|
|
|
b241ce |
- improve metadata cleanup after vdoformat failure
|
|
|
b241ce |
- log REQ_FLUSH & REQ_FUA at level INFO
|
|
|
b241ce |
- improve performance of cuncurrent write requests with the same data
|
|
|
b241ce |
- Resolves: rhbz#1520972
|
|
|
b241ce |
- Resolves: rhbz#1521200
|
|
|
b241ce |
|
|
|
b241ce |
* Fri Dec 01 2017 Joe Chapman <jochapma@redhat.com> 6.1.0.72-10
|
|
|
b241ce |
- clear VDO metadata on a vdo remove call
|
|
|
b241ce |
- fix create of new dedupe indices
|
|
|
b241ce |
- add magic number to VDO geometry block
|
|
|
b241ce |
- do less logging when stopping a VDO
|
|
|
b241ce |
- add a UUID
|
|
|
b241ce |
- Resolves: rhbz#1512127
|
|
|
b241ce |
- Resolves: rhbz#1516081
|
|
|
b241ce |
- Resolves: rhbz#1511109
|
|
|
b241ce |
- Resolves: rhbz#1515183
|
|
|
b241ce |
|
|
|
b241ce |
* Fri Nov 17 2017 Joe Chapman <jochapma@redhat.com> 6.1.0.55-9
|
|
|
b241ce |
- fail loading an uncreated index more gracefully
|
|
|
b241ce |
- remove spurious/unnecessary files from the distribution
|
|
|
b241ce |
- fix kernel module version
|
|
|
b241ce |
- make logging less chatty
|
|
|
b241ce |
- fix an integer overflow in makeVDOLayout
|
|
|
b241ce |
- Resolves: rhbz#1511034
|
|
|
b241ce |
- Resolves: rhbz#1511109
|
|
|
b241ce |
- Resolves: rhbz#1511096
|
|
|
b241ce |
|
|
|
b241ce |
* Fri Nov 10 2017 Joe Chapman <jochapma@redhat.com> 6.1.0.44-8
|
|
|
b241ce |
- fix readCacheSize handling large numbers
|
|
|
b241ce |
- vdoformat signals error when it finds a geometry block
|
|
|
b241ce |
- prevent kernel oops when loading an old geometry block
|
|
|
b241ce |
- vdoformat silently rounds down physical sizes to a block boundary
|
|
|
b241ce |
- UDS threads identify related VDO device
|
|
|
b241ce |
- clean up contents of source tarballs
|
|
|
b241ce |
- Resolves: rhbz#1505936
|
|
|
b241ce |
- Resolves: rhbz#1507996
|
|
|
b241ce |
- Resolves: rhbz#1509466
|
|
|
b241ce |
- Resolves: rhbz#1510558
|
|
|
b241ce |
- Resolves: rhbz#1510585
|
|
|
b241ce |
- Resolves: rhbz#1511201
|
|
|
b241ce |
- Resolves: rhbz#1511209
|
|
|
b241ce |
|
|
|
b241ce |
* Fri Nov 03 2017 Joe Chapman <jochapma@redhat.com> 6.1.0.34-7
|
|
|
b241ce |
- Bugfixes
|
|
|
b241ce |
- Resolves: rhbz#1491422
|
|
|
b241ce |
|
|
|
b241ce |
* Mon Oct 30 2017 Joe Chapman <jochapma@redhat.com> 6.1.0.13-6
|
|
|
b241ce |
- Fixed some scanning tool complaints
|
|
|
b241ce |
- Resolves: rhbz#1491422
|
|
|
b241ce |
|
|
|
b241ce |
* Tue Oct 24 2017 Andy Walsh <awalsh@redhat.com> 6.1.0.0-6
|
|
|
b241ce |
- Fixed kernel requirement to allow subsequent releases without updating spec
|
|
|
b241ce |
- Resolves: rhbz#1491422
|
|
|
b241ce |
|
|
|
b241ce |
* Fri Oct 20 2017 John Wiele <jwiele@redhat.com> 6.1.0.0-5
|
|
|
b241ce |
- Bumped kernel requirement to 3.10.0-741
|
|
|
b241ce |
- Resolves: rhbz#1491422
|
|
|
b241ce |
|
|
|
b241ce |
* Tue Oct 17 2017 John Wiele <jwiele@redhat.com> 6.1.0.0-4
|
|
|
b241ce |
- Resolved some missing symbols
|
|
|
b241ce |
- Resolves: rhbz#1491422
|
|
|
b241ce |
|
|
|
b241ce |
* Mon Oct 16 2017 John Wiele <jwiele@redhat.com> 6.1.0.0-3
|
|
|
b241ce |
- Updated to provide a useable package
|
|
|
b241ce |
- Resolves: rhbz#1491422
|
|
|
b241ce |
|
|
|
b241ce |
* Sat Oct 14 2017 Andy Walsh <awalsh@redhat.com> 6.1.0.0-2
|
|
|
b241ce |
- Removed invalid requirement and some unnecessary comments in spec
|
|
|
b241ce |
- Resolves: rhbz#1491422
|
|
|
b241ce |
|
|
|
b241ce |
* Wed Oct 11 2017 John Wiele <jwiele@redhat.com> 6.1.0.0-1
|
|
|
b241ce |
- Initial vdo module for Driver Update Program
|
|
|
b241ce |
- Resolves: rhbz#1491422
|