1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-03-10 16:58:47 +03:00

libdm: relocate code for sending messages

To be able to send messages for recently resumed devices,
move code into inner loop.
Matching commit c1a6b10d09aae6179e4f08c7d8c03d5e3068ad94.
This commit is contained in:
Zdenek Kabelac 2020-10-19 16:48:04 +02:00
parent 3e06061d82
commit 756066a2e8

View File

@ -1966,10 +1966,6 @@ int dm_tree_activate_children(struct dm_tree_node *dnode,
r = 0; r = 0;
continue; continue;
} }
}
if (awaiting_peer_rename)
priority--; /* redo priority level */
}
/* /*
* FIXME: Implement delayed error reporting * FIXME: Implement delayed error reporting
@ -1978,9 +1974,13 @@ int dm_tree_activate_children(struct dm_tree_node *dnode,
* resume should continue further, just whole command * resume should continue further, just whole command
* has to report failure. * has to report failure.
*/ */
if (r && (dnode->props.send_messages > 1) && if (r && (child->props.send_messages > 1) &&
!(r = _node_send_messages(dnode, uuid_prefix, uuid_prefix_len, 1))) !(r = _node_send_messages(child, uuid_prefix, uuid_prefix_len, 1)))
stack; stack;
}
if (awaiting_peer_rename)
priority--; /* redo priority level */
}
return r; return r;
} }