All of lore.kernel.org
 help / color / mirror / Atom feed
From: zkabelac@sourceware.org <zkabelac@sourceware.org>
To: lvm-devel@redhat.com
Subject: LVM2 ./WHATS_NEW lib/misc/lvm-exec.c tools/pol ...
Date: 10 Jan 2011 19:31:03 -0000	[thread overview]
Message-ID: <20110110193103.1658.qmail@sourceware.org> (raw)

CVSROOT:	/cvs/lvm2
Module name:	LVM2
Changes by:	zkabelac at sourceware.org	2011-01-10 19:31:02

Modified files:
	.              : WHATS_NEW 
	lib/misc       : lvm-exec.c 
	tools          : polldaemon.c 

Log message:
	Avoid cookie sharing between forked processes
	
	Before fork, ensure cookie is reset so it's not shared between processes.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/WHATS_NEW.diff?cvsroot=lvm2&r1=1.1872&r2=1.1873
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/lib/misc/lvm-exec.c.diff?cvsroot=lvm2&r1=1.8&r2=1.9
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/tools/polldaemon.c.diff?cvsroot=lvm2&r1=1.40&r2=1.41

--- LVM2/WHATS_NEW	2011/01/10 14:51:33	1.1872
+++ LVM2/WHATS_NEW	2011/01/10 19:31:02	1.1873
@@ -1,5 +1,6 @@
 Version 2.02.81 - 
 ===================================
+  Fix cookie sharing between forked lvm processes (2.02.80).
 
 Version 2.02.80 - 10th January 2011
 ===================================
--- LVM2/lib/misc/lvm-exec.c	2010/11/01 14:17:36	1.8
+++ LVM2/lib/misc/lvm-exec.c	2011/01/10 19:31:02	1.9
@@ -54,6 +54,8 @@
 
 	log_verbose("Executing: %s", _verbose_args(argv, buf, sizeof(buf)));
 
+	fs_unlock(); /* Flush oops and ensure cookie is not shared */
+
 	if ((pid = fork()) == -1) {
 		log_error("fork failed: %s", strerror(errno));
 		return 0;
--- LVM2/tools/polldaemon.c	2011/01/05 12:59:47	1.40
+++ LVM2/tools/polldaemon.c	2011/01/10 19:31:02	1.41
@@ -42,6 +42,8 @@
 
 	sigaction(SIGCHLD, &act, NULL);
 
+	fs_unlock(); /* Flush oops and ensure cookie is not shared */
+
 	if ((pid = fork()) == -1) {
 		log_error("fork failed: %s", strerror(errno));
 		return -1;



                 reply	other threads:[~2011-01-10 19:31 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=20110110193103.1658.qmail@sourceware.org \
    --to=zkabelac@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.