modzilla99 / rpms / kmod-kvdo

Forked from rpms/kmod-kvdo 2 years ago
Clone

Blame SPECS/kvdo.spec

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