From: wysochanski@sourceware.org <wysochanski@sourceware.org>
To: lvm-devel@redhat.com
Subject: LVM2 libdm/libdm-common.c ./WHATS_NEW_DM
Date: 3 Sep 2009 21:51:26 -0000 [thread overview]
Message-ID: <20090903215126.18797.qmail@sourceware.org> (raw)
CVSROOT: /cvs/lvm2
Module name: LVM2
Changes by: wysochanski at sourceware.org 2009-09-03 21:51:26
Modified files:
libdm : libdm-common.c
. : WHATS_NEW_DM
Log message:
Restore umask when device node creation fails.
Author: Florian Zumbiehl <florz@florz.de>
Acked-by: Dave Wysochanski <dwysocha@redhat.com>
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/libdm/libdm-common.c.diff?cvsroot=lvm2&r1=1.76&r2=1.77
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/WHATS_NEW_DM.diff?cvsroot=lvm2&r1=1.294&r2=1.295
--- LVM2/libdm/libdm-common.c 2009/08/06 15:04:30 1.76
+++ LVM2/libdm/libdm-common.c 2009/09/03 21:51:26 1.77
@@ -360,6 +360,7 @@
old_mask = umask(0);
if (mknod(path, S_IFBLK | mode, dev) < 0) {
+ umask(old_mask);
log_error("Unable to make device node for '%s'", dev_name);
return 0;
}
--- LVM2/WHATS_NEW_DM 2009/08/13 19:36:04 1.294
+++ LVM2/WHATS_NEW_DM 2009/09/03 21:51:26 1.295
@@ -1,5 +1,6 @@
Version 1.02.37 -
=================================
+ Restore umask when device node creation fails.
Fix mirror table CTR code to handle 'block_on_error' and 'cluster' features
Version 1.02.36 - 6th August 2009
reply other threads:[~2009-09-03 21:51 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=20090903215126.18797.qmail@sourceware.org \
--to=wysochanski@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.