[dm-devel] device-mapper ./WHATS_NEW lib/libdm-deptree.c

agk at sourceware.org agk at sourceware.org
Tue Jun 10 11:19:19 UTC 2008


CVSROOT:	/cvs/dm
Module name:	device-mapper
Changes by:	agk at sourceware.org	2008-06-10 11:19:19

Modified files:
	.              : WHATS_NEW 
	lib            : libdm-deptree.c 

Log message:
	Fix inverted no_flush debug message. (mpatocka)

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/device-mapper/WHATS_NEW.diff?cvsroot=dm&r1=1.240&r2=1.241
http://sourceware.org/cgi-bin/cvsweb.cgi/device-mapper/lib/libdm-deptree.c.diff?cvsroot=dm&r1=1.38&r2=1.39

--- device-mapper/WHATS_NEW	2008/06/08 14:53:51	1.240
+++ device-mapper/WHATS_NEW	2008/06/10 11:19:18	1.241
@@ -1,5 +1,6 @@
 Version 1.02.27 -
 ===============================
+  Fix inverted no_flush debug message.
   Remove --enable-jobs from configure. (Set at runtime instead.)
   Bring configure.in and list.h into line with the lvm2 versions.
 
--- device-mapper/lib/libdm-deptree.c	2008/06/05 19:10:35	1.38
+++ device-mapper/lib/libdm-deptree.c	2008/06/10 11:19:19	1.39
@@ -937,7 +937,7 @@
 	log_verbose("Suspending %s (%" PRIu32 ":%" PRIu32 ")%s%s",
 		    name, major, minor,
 		    skip_lockfs ? "" : " with filesystem sync",
-		    no_flush ? "" : " without device flush");
+		    no_flush ? " without device flush" : "");
 
 	if (!(dmt = dm_task_create(DM_DEVICE_SUSPEND))) {
 		log_error("Suspend dm_task creation failed for %s", name);




More information about the dm-devel mailing list