# # Copyright (C) Heinz Mauelshagen, 2004-2010 Red Hat GmbH. All rights reserved. # # See file LICENSE at the top of this source tree for license information. # Summary: Device-mapper RAID tool and library Name: dmraid Version: 1.0.0.rc16 Release: 52%{?dist} License: GPLv2+ URL: http://people.redhat.com/heinzm/sw/dmraid BuildRequires: device-mapper-devel >= 1.02.02-2 BuildRequires: device-mapper-event-devel BuildRequires: libselinux-devel BuildRequires: libsepol-devel BuildRequires: systemd-rpm-macros BuildRequires: gcc BuildRequires: make Requires: device-mapper >= 1.02.02-2 Requires: dmraid-libs = %{version}-%{release} Requires: kpartx Requires: systemd Requires(post): systemd >= 195-4 Recommends: dmraid-events = %{version}-%{release} # Splitting libraries out to -libs subpackage Conflicts: dmraid < 1.0.0.rc16-48 Obsoletes: dmraid < 1.0.0.rc16-48 # This was:https://people.redhat.com/heinzm/sw/dmraid/src/dmraid-1.0.0.rc16.tar.bz2 # but that link no longer works Source0: %{name}-%{version}.tar.bz2 Source1: fedora-dmraid-activation Source2: dmraid-activation.service #Patch0: dmraid-1.0.0.rc16-test_devices.patch Patch1: ddf1_lsi_persistent_name.patch Patch2: pdc_raid10_failure.patch Patch3: return_error_wo_disks.patch Patch4: fix_sil_jbod.patch Patch5: avoid_register.patch Patch6: move_pattern_file_to_var.patch Patch7: libversion.patch Patch8: libversion-display.patch Patch9: bz635995-data_corruption_during_activation_volume_marked_for_rebuild.patch # Patch10: bz626417_8-faulty_message_after_unsuccessful_vol_registration.patch Patch11: bz626417_19-enabling_registration_degraded_volume.patch Patch12: bz626417_20-cleanup_some_compilation_warning.patch Patch13: bz626417_21-add_option_that_postpones_any_metadata_updates.patch Patch14: dmraid-fix-build-to-honour-cflags-var.patch Patch15: dmraid-fix-errors-and-warnings-triggered-by-CFLAGS.patch Patch16: dmraid-fix-destdir.patch Patch17: dmraid-fix-missing-destdir.patch Patch18: dmraid-fix-so-flags.patch Patch19: dmraid-use-modern-run-lock-dir.patch %description DMRAID supports RAID device discovery, RAID set activation, creation, removal, rebuild and display of properties for ATARAID/DDF1 metadata on Linux >= 2.4 using device-mapper. %package -n dmraid-libs Summary: System libraries for dmraid # Splitting libraries out to -libs subpackage Conflicts: dmraid < 1.0.0.rc16-48 Obsoletes: dmraid < 1.0.0.rc16-48 %description -n dmraid-libs dmraid-libs provides the system libraries for RAID device discovery, RAID set activation and display of properties for ATARAID volumes. %package -n dmraid-devel Summary: Development libraries and headers for dmraid Requires: dmraid-libs = %{version}-%{release} Requires: sgpio %description -n dmraid-devel dmraid-devel provides a library interface for RAID device discovery, RAID set activation and display of properties for ATARAID volumes. %package -n dmraid-events Summary: Device-mapper event tool (dmevent_tool) and DSO Requires: dmraid-libs = %{version}-%{release} Requires: dmraid = %{version}-%{release} Requires: device-mapper-event Requires: sgpio %description -n dmraid-events Provides a dmeventd DSO and the dmevent_tool to register devices with it for device monitoring. All active RAID sets should be manually registered with dmevent_tool. %package -n dmraid-events-logwatch Summary: Logwatch-based email reporting for dmraid Requires: dmraid-events = %{version}-%{release} Requires: crontabs Requires: logwatch %description -n dmraid-events-logwatch Provides device failure reporting via logwatch-based email reporting. Device failure reporting has to be activated manually by activating the /etc/cron.d/dmeventd-logwatch entry and by calling the dmevent_tool (see manual page for examples) for any active RAID sets. %prep %autosetup -n dmraid/%{version} -p1 %build %global _libdir /%{_lib} %configure --enable-debug --enable-libselinux --enable-libsepol --disable-static_link --enable-led --enable-intel_led # parallel make is broken, do not pass smp flags make %install # TODO: Do we really need to create all these dirs ourselves here? Should make install do that? # - it is necessary to create directories for logwatch files, and likely for # others not installed by make install -m 755 -d %{buildroot}{%{_libdir},%{_sbindir},%{_bindir},%{_libdir},%{_includedir}/dmraid/,/etc/cron.d/,/etc/logwatch/conf/services/,/etc/logwatch/scripts/services/,/var/cache/logwatch/dmeventd} make DESTDIR=%{buildroot} install # Provide convenience link from dmevent_tool (cd %{buildroot}%{_sbindir} ; ln -f dmevent_tool dm_dso_reg_tool) (cd %{buildroot}%{_mandir}/man8 ; ln -f dmevent_tool.8 dm_dso_reg_tool.8) install -p -m 644 include/dmraid/*.h %{buildroot}%{_includedir}/dmraid/ # Install the libdmraid and libdmraid-events (for dmeventd) DSO # Create version symlink to libdmraid.so.1 we link against install -p -m 755 lib/libdmraid.so %{buildroot}%{_libdir}/libdmraid.so.%{version} (cd %{buildroot}%{_libdir} ; ln -sf libdmraid.so.%{version} libdmraid.so ; ln -sf libdmraid.so.%{version} libdmraid.so.1) install -p -m 755 lib/libdmraid-events-isw.so %{buildroot}%{_libdir}/libdmraid-events-isw.so.%{version} (cd %{buildroot}%{_libdir} ; ln -sf libdmraid-events-isw.so.%{version} libdmraid-events-isw.so ; ln -sf libdmraid-events-isw.so.%{version} libdmraid-events-isw.so.1) # Install logwatch config file and script for dmeventd install -p -m 644 logwatch/dmeventd.conf %{buildroot}/etc/logwatch/conf/services/dmeventd.conf install -p -m 755 logwatch/dmeventd %{buildroot}/etc/logwatch/scripts/services/dmeventd install -p -m 644 logwatch/dmeventd_cronjob.txt %{buildroot}/etc/cron.d/dmeventd-logwatch install -p -m 0700 /dev/null %{buildroot}/var/cache/logwatch/dmeventd/syslogpattern.txt # Install systemd unit install -d %{buildroot}%{_prefix}/lib/systemd install -d %{buildroot}%{_unitdir} install -p -m 755 %{SOURCE1} %{buildroot}%{_prefix}/lib/systemd/fedora-dmraid-activation install -p -m 444 %{SOURCE2} %{buildroot}%{_unitdir}/dmraid-activation.service rm -f %{buildroot}%{_libdir}/libdmraid.a %post %systemd_post dmraid-activation.service %preun %systemd_preun dmraid-activation.service %postun %systemd_postun dmraid-activation.service %files %license LICENSE LICENSE_GPL LICENSE_LGPL %doc CREDITS README %{_mandir}/man8/dmraid* %{_sbindir}/dmraid %{_prefix}/lib/systemd/fedora-dmraid-activation %{_unitdir}/dmraid-activation.service %files -n dmraid-libs %license LICENSE LICENSE_GPL LICENSE_LGPL %{_libdir}/libdmraid.so.* %{_libdir}/libdmraid-events-isw.so.* %files -n dmraid-devel %doc KNOWN_BUGS TODO doc/dmraid_design.txt %{_libdir}/libdmraid.so %{_libdir}/libdmraid-events-isw.so %{_includedir}/dmraid %files -n dmraid-events %{_mandir}/man8/dmevent_tool* %{_mandir}/man8/dm_dso_reg_tool* %{_sbindir}/dmevent_tool %{_sbindir}/dm_dso_reg_tool %files -n dmraid-events-logwatch %config(noreplace) /etc/logwatch/* %config(noreplace) /etc/cron.d/dmeventd-logwatch %dir /var/cache/logwatch/dmeventd %ghost /var/cache/logwatch/dmeventd/syslogpattern.txt %changelog * Thu Jan 20 2022 Fedora Release Engineering - 1.0.0.rc16-52 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild * Wed Jul 21 2021 Fedora Release Engineering - 1.0.0.rc16-51 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild * Tue Jan 26 2021 Fedora Release Engineering - 1.0.0.rc16-50 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild * Wed Oct 07 2020 Marian Csontos - 1.0.0.rc16-49 - Fix dependency on cron * Tue Oct 06 2020 Neal Gompa - 1.0.0.rc16-48 - Minor cleanups to the spec to better align to packaging guidelines * Sat Aug 01 2020 Fedora Release Engineering - 1.0.0.rc16-47 - Second attempt - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild * Mon Jul 27 2020 Fedora Release Engineering - 1.0.0.rc16-46 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild * Thu Jul 23 2020 Hans de Goede - 1.0.0.rc16-45 - Make dmraid-activation.service disable itself if no supported raid-sets are found (rhbz#1795014) - Drop ancient no longer necessary dmraid.static > dmraid symlink - Fix a bunch of rpmlint errors * Tue Jan 28 2020 Fedora Release Engineering - 1.0.0.rc16-44 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild * Wed Jul 24 2019 Fedora Release Engineering - 1.0.0.rc16-43 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild * Wed Mar 06 2019 Igor Gnatenko - 1.0.0.rc16-42 - Remove obsolete scriptlets * Thu Jan 31 2019 Fedora Release Engineering - 1.0.0.rc16-41 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild * Tue Aug 14 2018 Marian Csontos - 1.0.0.rc16-40 - Fix incorrect argument handling. * Thu Jul 12 2018 Fedora Release Engineering - 1.0.0.rc16-39 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild * Thu Mar 22 2018 Marian Csontos - 1.0.0.rc16-38 - Fix missing LDFLAGS when linking libdmraid.so * Fri Feb 09 2018 Igor Gnatenko - 1.0.0.rc16-37 - Escape macros in %%changelog * Wed Feb 07 2018 Fedora Release Engineering - 1.0.0.rc16-36 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild * Mon Aug 28 2017 Marian Csontos - 1.0.0.rc16-35 - Use CFLAGS and LDFLAGS set by distro. - Fix incorrect use of DESTDIR and RPM_BUILD_ROOT. * Sat Aug 12 2017 Ville Skyttä - 1.0.0.rc16-34 - Add %%preun and %%postun systemd scriptlets * Wed Aug 02 2017 Fedora Release Engineering - 1.0.0.rc16-33 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild * Wed Jul 26 2017 Fedora Release Engineering - 1.0.0.rc16-32 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild * Fri Feb 10 2017 Fedora Release Engineering - 1.0.0.rc16-31 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild * Wed Feb 03 2016 Fedora Release Engineering - 1.0.0.rc16-30 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild * Mon Oct 05 2015 Peter Rajnoha - 1.0.0.rc16-29 - Fix dmraid-activation.service to execute before local-fs-pre.target instead of local-fs.target to activate dmraid before any mount points. * Tue Jul 21 2015 Peter Rajnoha - 1.0.0.rc16-28 - Fix Makefile to use proper CFLAGS instead of exporting LDFLAGS in spec file. * Tue Jul 21 2015 Peter Robinson 1.0.0.rc16-27 - Set -fPIC in LDFLAGS (fix FTBFS) - Minor cleanups, use %%license * Wed Jun 17 2015 Fedora Release Engineering - 1.0.0.rc16-26 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild * Sat Aug 16 2014 Fedora Release Engineering - 1.0.0.rc16-25 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild * Sat Jun 07 2014 Fedora Release Engineering - 1.0.0.rc16-24 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild * Mon Jul 29 2013 Heinz Mauelshagen - 1.0.0.rc16-23 - Resolves: bz#989020 (missing requirement on crontabs) - some lint fixes * Fri Jul 26 2013 Jóhann B. Guðmundsson - 1.0.0.rc16-22 - Add a missing requirement on crontabs to spec file * Wed May 22 2013 Adam Williamson - 1.0.0.rc16-21 - don't pass kpartx a delimiter when activating sets - Resolves: bz#966162 * Wed Feb 13 2013 Fedora Release Engineering - 1.0.0.rc16-20 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild * Wed Nov 28 2012 Peter Rajnoha - 1.0.0.rc16-19 - Fix postun scriptlet to run ldconfig properly. * Thu Nov 01 2012 Peter Rajnoha - 1.0.0.rc16-18 - Add fedora-dmraid-activation script and dmraid-activation.service systemd unit. This replaces dmraid activation part of the former fedora-storage-init script that was included in the initscripts package before. - Add 'Requires: systemd' to dmraid package. * Wed Jul 18 2012 Fedora Release Engineering - 1.0.0.rc16-17 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild * Fri Jan 13 2012 Fedora Release Engineering - 1.0.0.rc16-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild * Tue Feb 08 2011 Fedora Release Engineering - 1.0.0.rc16-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild * Wed Nov 24 2010 Heinz Mauelshagen - 1.0.0.rc16-14 - Updated specfile to use %%ghost on /var/lock/dmraid - Resolves: bz#656576 * Mon Nov 08 2010 Heinz Mauelshagen - 1.0.0.rc16-13 - Fix kernel panic when rebuilding and reboot occurs on IMSM RAID5 volume - Resolves: bz#649788 * Thu Jan 21 2010 Heinz Mauelshagen - 1.0.0.rc16-12 - Create symlink from full versioned libdmraid dso file to libdmraid.so.1 (ie. soname we use for linking) - Resolves: bz#557276 * Wed Jan 20 2010 Heinz Mauelshagen - 1.0.0.rc16-11 - return full internal library name as a combination of library major, minor, subminor and suffix numbers on calls to libdmraid_version() - Related: bz#556863 * Tue Jan 19 2010 Heinz Mauelshagen - 1.0.0.rc16-10 - change libdmraid version to 1 - Resolves: bz#556863 * Tue Jan 12 2010 Heinz Mauelshagen - 1.0.0.rc16-9 - bz554754: switch to using /var/cache/logwatch/dmeventd/syslogpattern.txt; explicitly claim logwatch files in dmraid-events-logwatch * Thu Jan 7 2010 Heinz Mauelshagen - 1.0.0.rc16-8 - scratch build * Tue Dec 1 2009 Heinz Mauelshagen - 1.0.0.rc16-7 - bz542898: fix Silicon Image JBOD support * Fri Oct 16 2009 Heinz Mauelshagen - 1.0.0.rc16-6 - Fix manual path in specfile * Fri Oct 16 2009 Heinz Mauelshagen - 1.0.0.rc16-5 - bz526157: fix manual pages for dmraid.static and dm_dso_reg_tool * Thu Oct 15 2009 Heinz Mauelshagen - 1.0.0.rc16-4 - bz505562: ddf1 metadata format handler LSI persistent name fix - bz524168: fix pdc metadata format handler to report the correct number of devices in a RAID10 subset - bz528097: move libraries to /lib* in order to avoid catch22 with unmountable u/usr * Mon Sep 21 2009 Hans de Goede - 1.0.0.rc16-3 - Add Obsoletes for dmraid-libs packages (merged into the main pkg, #524261) - Make -devel Require the main package now the dmraid-libs package is gone * Wed Sep 16 2009 Heinz Mauelshagen - 1.0.0.rc16 - Update to version 1.0.0.rc16 * Fri Apr 17 2009 Hans de Goede - 1.0.0.rc15-7 - Fix activation of isw raid sets when the disks have serialnumber longer then 16 characters (#490121) * Tue Feb 24 2009 Fedora Release Engineering - 1.0.0.rc15-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Fri Feb 13 2009 Hans de Goede - 1.0.0.rc15-5 - Make --rm_partitions work with older kernels which return EINVAL when trying to remove a partition with a number > 16 - Document --rm_partitions in the man page * Thu Feb 12 2009 Hans de Goede - 1.0.0.rc15-4 - Add patch adding --rm_partitions cmdline option and functionality (#484845) * Thu Feb 5 2009 Hans de Goede - 1.0.0.rc15-3 - Fix mismatch between BIOS and dmraid's view of ISW raid 10 sets * Tue Nov 18 2008 Bill Nottingham - 1.0.0.rc15-2 - Re-add upstream whitespace removal patch (#468649, #470634) * Thu Sep 25 2008 Heinz Mauelshagen - 1.0.0.rc15-1 - Update to version 1.0.0.rc15 * Thu Jul 03 2008 Alasdair Kergon - 1.0.0.rc14-8 - Move library into libs subpackage. - Fix summary and licence tags. - Replace static build with symlink. * Tue Feb 19 2008 Fedora Release Engineering - 1.0.0.rc14-7 - Autorebuild for GCC 4.3 * Wed Nov 21 2007 Ian Kent - 1.0.0.rc14-6 - Bug 379911: dmraid needs to generate UUIDs for lib device-mapper - add "DMRAID-" prefix to dmraid UUID string. * Wed Nov 14 2007 Ian Kent - 1.0.0.rc14-5 - Bug 379911: dmraid needs to generate UUIDs for lib device-mapper - Bug 379951: dmraid needs to activate device-mapper mirror resynchronization error handling * Mon Oct 22 2007 Ian Kent - 1.0.0.rc14-4 - Fix SEGV on "dmraid -r -E" (bz 236891). * Wed Apr 18 2007 Peter Jones - 1.0.0.rc14-3 - Fix jmicron name parsing (#219058) * Mon Feb 05 2007 Alasdair Kergon - 1.0.0.rc14-2 - Add build dependency on new device-mapper-devel package. - Add dependency on device-mapper. - Add post and postun ldconfig. - Update BuildRoot and Summary. * Wed Nov 08 2006 Heinz Mauelshagen - 1.0.0.rc14-1 - asr.c: fixed Adaptec HostRAID DDF1 metadata discovery (bz#211016) - ddf1_crc.c: added crc() routine to avoid linking to zlib altogether, because Ubuntu had problems with this - dropped zlib build requirement * Thu Oct 26 2006 Heinz Mauelshagen - 1.0.0.rc14-bz211016-1 - ddf1.c: get_size() fixed (bz#211016) - ddf1_lib.c: ddf1_cr_off_maxpds_helper() fixed (bz#211016) * Wed Oct 11 2006 Heinz Mauelshagen - 1.0.0.rc13-1 - metadata.c: fixed bug returning wrang unified RAID type (bz#210085) - pdc.c: fixed magic number check * Sun Oct 01 2006 Jesse Keating - 1.0.0.rc12-7 - rebuilt for unwind info generation, broken in gcc-4.1.1-21 * Fri Sep 22 2006 Heinz Mauelshagen - 1.0.0.rc12-1 - sil.c: quorate() OBO fix - activate.c: handler() OBO fix - added SNIA DDF1 support - added reload functionality to devmapper.c - added log_zero_sectors() to various metadata format handlers - sil.[ch]: added JBOD support * Fri Sep 1 2006 Peter Jones - 1.0.0.rc11-4 - Require kpartx, so initscripts doesn't have to if you're not using dmraid * Thu Aug 17 2006 Jesse Keating - 1.0.0.rc11-3 - Change Release to follow guidelines, and add dist tag. * Thu Aug 17 2006 Peter Jones - 1.0.0.rc11-FC6.3 - No more excludearch for s390/s390x * Fri Jul 28 2006 Peter Jones - 1.0.0.rc11-FC6.2 - Fix bounds checking on hpt37x error log - Only build the .so, not the .a - Fix asc.c duplication in makefile rule * Wed Jul 12 2006 Jesse Keating - 1.0.0.rc11-FC6.1.1 - rebuild * Fri Jul 7 2006 Heinz Mauelshagen - 1.0.0.rc11-FC6.1 - rebuilt for FC6 with dos partition discovery fix (#197573) * Tue May 16 2006 Heinz Mauelshagen - 1.0.0.rc11-FC6 - rebuilt for FC6 with better tag * Tue May 16 2006 Heinz Mauelshagen - 1.0.0.rc11-FC5_7.2 - rebuilt for FC5 * Tue May 16 2006 Heinz Mauelshagen - 1.0.0.rc11-FC5_7.1 - jm.c: checksum() calculation - misc.c: support "%%d" in p_fmt and fix segfault with wrong format identifier - nv.c: size fix in setup_rd() - activate.c: o striped devices could end on non-chunk boundaries o calc_region_size() calculated too small sizes causing large dirty logs in memory - isw.c: set raid5 type to left asymmetric - toollib.c: fixed 'No RAID...' message - support selection of RAID5 allocation algorithm in metadata format handlers - build * Mon Mar 27 2006 Milan Broz - 1.0.0.rc10-FC5_6.2 - fixed /var/lock/dmraid in specfile (#168195) * Fri Feb 17 2006 Heinz Mauelshagen - 1.0.0.rc10-FC5_6 - add doc/dmraid_design.txt to %%doc (#181885) - add --enable-libselinux --enable-libsepol to configure - rebuilt * Fri Feb 10 2006 Jesse Keating - 1.0.0.rc9-FC5_5.2 - bump again for double-long bug on ppc(64) * Tue Feb 07 2006 Jesse Keating - 1.0.0.rc9-FC5_5.1 - rebuilt for new gcc4.1 snapshot and glibc changes * Sun Jan 22 2006 Peter Jones 1.0.0.rc9-FC5_5 - Add selinux build deps - Don't set owner during make install * Fri Dec 9 2005 Jesse Keating 1.0.0.rc9-FC5_4.1 - rebuilt * Sat Dec 3 2005 Peter Jones 1.0.0.rc9-FC5_4 - rebuild for device-mapper-1.02.02-2 * Fri Dec 2 2005 Peter Jones 1.0.0.rc9-FC5_3 - rebuild for device-mapper-1.02.02-1 * Thu Nov 10 2005 Peter Jones 1.0.0.rc9-FC5_2 - update to 1.0.0.rc9 - make "make install" do the right thing with the DSO - eliminate duplicate definitions in the headers - export more symbols in the DSO - add api calls to retrieve dm tables - fix DESTDIR for 'make install' - add api calls to identify degraded devices - remove several arch excludes * Sat Oct 15 2005 Florian La Roche - add -lselinux -lsepol for new device-mapper deps * Fri May 20 2005 Heinz Mauelshagen 1.0.0.rc8-FC4_2 - specfile change to build static and dynamic binray into one package - rebuilt * Thu May 19 2005 Heinz Mauelshagen 1.0.0.rc8-FC4_1 - nv.c: fixed stripe size - sil.c: avoid incarnation_no in name creation, because the Windows driver changes it every time - added --ignorelocking option to avoid taking out locks in early boot where no read/write access to /var is given * Wed Mar 16 2005 Elliot Lee - rebuilt * Tue Mar 15 2005 Heinz Mauelshagen 1.0.0.rc6.1-4_FC4 - VIA metadata format handler - added RAID10 to lsi metadata format handler - "dmraid -rD": file device size into {devicename}_{formatname}.size - "dmraid -tay": pretty print multi-line tables ala "dmsetup table" - "dmraid -l": display supported RAID levels + manual update - _sil_read() used LOG_NOTICE rather than LOG_INFO in order to avoid messages about valid metadata areas being displayed during "dmraid -vay". - isw, sil filed metadata offset on "-r -D" in sectors rather than in bytes. - isw needed dev_sort() to sort RAID devices in sets correctly. - pdc metadata format handler name creation. Lead to wrong RAID set grouping logic in some configurations. - pdc RAID1 size calculation fixed (rc6.1) - dos.c: partition table code fixes by Paul Moore - _free_dev_pointers(): fixed potential OOB error - hpt37x_check: deal with raid_disks = 1 in mirror sets - pdc_check: status & 0x80 doesn't always show a failed device; removed that check for now. Status definitions needed. - sil addition of RAID sets to global list of sets - sil spare device memory leak - group_set(): removal of RAID set in case of error - hpt37x: handle total_secs > device size - allow -p with -f - enhanced error message by checking target type against list of registered target types * Fri Jan 21 2005 Alasdair Kergon 1.0.0.rc5f-2 - Rebuild to pick up new libdevmapper. * Fri Nov 26 2004 Heinz Mauelshagen 1.0.0.rc5f - specfile cleanup * Fri Aug 20 2004 Heinz Mauelshagen 1.0.0-rc4-pre1 - Removed make flag after fixing make.tmpl.in * Wed Aug 18 2004 Heinz Mauelshagen 1.0.0-rc3 - Added make flag to prevent make 3.80 from looping infinitely * Thu Jun 17 2004 Heinz Mauelshagen 1.0.0-pre1 - Created