You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
909 B
29 lines
909 B
WHATS_NEW_DM | 4 ++++ |
|
libdm/libdm-deptree.c | 2 +- |
|
2 files changed, 5 insertions(+), 1 deletion(-) |
|
|
|
diff --git a/WHATS_NEW_DM b/WHATS_NEW_DM |
|
index b509d68..9e30786 100644 |
|
--- a/WHATS_NEW_DM |
|
+++ b/WHATS_NEW_DM |
|
@@ -1,3 +1,7 @@ |
|
+Version 1.02.108 - |
|
+===================================== |
|
+ Do not check for full thin pool when activating without messages (1.02.107). |
|
+ |
|
Version 1.02.107 - 5th September 2015 |
|
===================================== |
|
Parse thin-pool status with one single routine internally. |
|
diff --git a/libdm/libdm-deptree.c b/libdm/libdm-deptree.c |
|
index d40362d..7b7ca5b 100644 |
|
--- a/libdm/libdm-deptree.c |
|
+++ b/libdm/libdm-deptree.c |
|
@@ -1633,7 +1633,7 @@ static int _node_send_messages(struct dm_tree_node *dnode, |
|
return 0; |
|
} |
|
|
|
- if (!send) |
|
+ if (!have_messages || !send) |
|
return 1; /* transaction_id is matching */ |
|
|
|
dm_list_iterate_items(tmsg, &seg->thin_messages) {
|
|
|