1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-22 17:35:59 +03:00

Fix inverted no_flush debug message. (mpatocka)

This commit is contained in:
Alasdair Kergon 2008-06-10 11:19:19 +00:00
parent 24c0c70f90
commit fe74f013e3
2 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
Version 1.02.27 - Version 1.02.27 -
=============================== ===============================
Fix inverted no_flush debug message.
Remove --enable-jobs from configure. (Set at runtime instead.) Remove --enable-jobs from configure. (Set at runtime instead.)
Bring configure.in and list.h into line with the lvm2 versions. Bring configure.in and list.h into line with the lvm2 versions.

View File

@ -937,7 +937,7 @@ static int _suspend_node(const char *name, uint32_t major, uint32_t minor,
log_verbose("Suspending %s (%" PRIu32 ":%" PRIu32 ")%s%s", log_verbose("Suspending %s (%" PRIu32 ":%" PRIu32 ")%s%s",
name, major, minor, name, major, minor,
skip_lockfs ? "" : " with filesystem sync", skip_lockfs ? "" : " with filesystem sync",
no_flush ? "" : " without device flush"); no_flush ? " without device flush" : "");
if (!(dmt = dm_task_create(DM_DEVICE_SUSPEND))) { if (!(dmt = dm_task_create(DM_DEVICE_SUSPEND))) {
log_error("Suspend dm_task creation failed for %s", name); log_error("Suspend dm_task creation failed for %s", name);