From: heinzm@sourceware.org
To: dm-cvs@sourceware.org, dm-devel@redhat.com
Subject: dmraid ./dmraid.spec lib/device/scan.c tools/V ...
Date: 2 Dec 2011 14:12:30 -0000 [thread overview]
Message-ID: <20111202141230.9012.qmail@sourceware.org> (raw)
CVSROOT: /cvs/dm
Module name: dmraid
Changes by: heinzm@sourceware.org 2011-12-02 14:12:29
Modified files:
. : dmraid.spec
lib/device : scan.c
tools : VERSION
Log message:
Avoid error messages for sector sizes != 512 bytes
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/dmraid/dmraid.spec.diff?cvsroot=dm&r1=1.14&r2=1.15
http://sourceware.org/cgi-bin/cvsweb.cgi/dmraid/lib/device/scan.c.diff?cvsroot=dm&r1=1.5&r2=1.6
http://sourceware.org/cgi-bin/cvsweb.cgi/dmraid/tools/VERSION.diff?cvsroot=dm&r1=1.9&r2=1.10
--- dmraid/dmraid.spec 2010/03/16 18:22:37 1.14
+++ dmraid/dmraid.spec 2011/12/02 14:12:28 1.15
@@ -7,7 +7,7 @@
Summary: dmraid (Device-mapper RAID tool and library)
Name: dmraid
Version: 1.0.0.rc16
-Release: 5%{?dist}
+Release: 6%{?dist}
License: GPLv2+
Group: System Environment/Base
URL: http://people.redhat.com/heinzm/sw/dmraid
@@ -65,7 +65,7 @@
%build
%define _libdir /%{_lib}
-%configure --prefix=/usr --sbindir=/sbin --libdir=%{_libdir} --mandir=%{_mandir} --includedir=%{_includedir} --enable-debug --enable-libselinux --enable-libsepol --disable-static_link --enable-led --enable-intel_led
+%configure --prefix=/usr --sbindir=/sbin --libdir=%{_libdir} --mandir=%{_mandir} --includedir=%{_includedir} --enable-debug --disable-static_link --enable-led --enable-intel_led
make
%install
@@ -125,6 +125,12 @@
%ghost /var/cache/logwatch/dmeventd/syslogpattern.txt
%changelog
+* Fri Dex 2 2011 Heinz Mauelshagen <heinzm@redhat.com> - 1.0.0.rc16-7
+- Avoid error message for sector sizes != 512 bytes
+
+* Mon May 31 2010 Heinz Mauelshagen <heinzm@redhat.com> - 1.0.0.rc16-6
+- remove superfluous libselinux/libsepol configure options
+
* Tue Jan 12 2010 Heinz Mauelshagen <heinzm@redhat.com> - 1.0.0.rc16-5
- Support DESTDIR in all Makefiles
- Fix handling spares in RAID names in vendor metadata
--- dmraid/lib/device/scan.c 2010/07/13 20:11:21 1.5
+++ dmraid/lib/device/scan.c 2011/12/02 14:12:28 1.6
@@ -148,8 +148,11 @@
sector_size = DMRAID_SECTOR_SIZE;
if (sector_size != DMRAID_SECTOR_SIZE)
+ return 0;
+#if 0
LOG_ERR(lc, 0, "unsupported sector size %d on %s.",
sector_size, di->path);
+#endif
/* Use size device ioctl in case we didn't get the size from sysfs. */
if (!di->sectors && !ioctl(fd, BLKGETSIZE, &size))
--- dmraid/tools/VERSION 2010/01/12 12:23:26 1.9
+++ dmraid/tools/VERSION 2011/12/02 14:12:29 1.10
@@ -1 +1 @@
-1.0.0.rc16-3 (2010.01.12)
+1.0.0.rc16-3 (2010.11.12)
reply other threads:[~2011-12-02 14:12 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20111202141230.9012.qmail@sourceware.org \
--to=heinzm@sourceware.org \
--cc=dm-cvs@sourceware.org \
--cc=dm-devel@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.