From: prajnoha@sourceware.org <prajnoha@sourceware.org>
To: lvm-devel@redhat.com
Subject: LVM2 ./WHATS_NEW lib/filters/filter-persistent.c
Date: 12 May 2011 12:42:50 -0000 [thread overview]
Message-ID: <20110512124250.15910.qmail@sourceware.org> (raw)
CVSROOT: /cvs/lvm2
Module name: LVM2
Changes by: prajnoha at sourceware.org 2011-05-12 12:42:48
Modified files:
. : WHATS_NEW
lib/filters : filter-persistent.c
Log message:
Do not issue an error message when unable to remove .cache on read-only fs.
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/WHATS_NEW.diff?cvsroot=lvm2&r1=1.1988&r2=1.1989
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/lib/filters/filter-persistent.c.diff?cvsroot=lvm2&r1=1.49&r2=1.50
--- LVM2/WHATS_NEW 2011/05/07 15:52:50 1.1988
+++ LVM2/WHATS_NEW 2011/05/12 12:42:47 1.1989
@@ -1,5 +1,6 @@
Version 2.02.86 -
=================================
+ Do not issue an error message when unable to remove .cache on read-only fs.
Avoid memlock size mismatch by preallocating stdio line buffers.
Reorganize lvconvert --repair code to allow reuse.
Rewrite vgreduce --removemissing --force leveraging shared lvconvert code.
--- LVM2/lib/filters/filter-persistent.c 2011/04/22 12:05:33 1.49
+++ LVM2/lib/filters/filter-persistent.c 2011/05/12 12:42:48 1.50
@@ -108,7 +108,7 @@
log_very_verbose("Obtaining device list from "
"udev. Removing obolete %s.",
pf->file);
- if (unlink(pf->file) < 0)
+ if (unlink(pf->file) < 0 && errno != EROFS)
log_sys_error("unlink", pf->file);
}
return 1;
next reply other threads:[~2011-05-12 12:42 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-05-12 12:42 prajnoha [this message]
-- strict thread matches above, loose matches on Subject: below --
2010-06-01 19:02 LVM2 ./WHATS_NEW lib/filters/filter-persistent.c agk
2010-01-06 13:25 mbroz
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=20110512124250.15910.qmail@sourceware.org \
--to=prajnoha@sourceware.org \
--cc=lvm-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.