mirror of
git://sourceware.org/git/lvm2.git
synced 2025-03-10 16:58:47 +03:00
Thin fix condition check for transation_id
id2 must be checked. (missed in yesterday commit set).
This commit is contained in:
parent
13dc67cda7
commit
19e3f8c30b
@ -2984,7 +2984,7 @@ int dm_tree_node_add_thin_pool_message(struct dm_tree_node *node,
|
|||||||
log_error("New transaction id must be sequential.");
|
log_error("New transaction id must be sequential.");
|
||||||
return 0; /* FIXME: Maybe too strict here? */
|
return 0; /* FIXME: Maybe too strict here? */
|
||||||
}
|
}
|
||||||
if (id1 != seg->transaction_id) {
|
if (id2 != seg->transaction_id) {
|
||||||
log_error("Current transaction id is different from thin pool.");
|
log_error("Current transaction id is different from thin pool.");
|
||||||
return 0; /* FIXME: Maybe too strict here? */
|
return 0; /* FIXME: Maybe too strict here? */
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user