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

Avoid automatic lvconvert polldaemon invocation when -R specified.

This commit is contained in:
Alasdair Kergon 2008-02-12 13:26:53 +00:00
parent bcc4a38c1a
commit b1ec1f87a4
2 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
Version 2.02.34 - Version 2.02.34 -
=================================== ===================================
Avoid automatic lvconvert polldaemon invocation when -R specified. (2.02.30)
Fix 'pvs -a' to detect VGs of PVs without metadata areas. Fix 'pvs -a' to detect VGs of PVs without metadata areas.
Divide up internal orphan volume group by format type. Divide up internal orphan volume group by format type.
Update usage message for clvmd. Update usage message for clvmd.

View File

@ -389,7 +389,7 @@ static int lvconvert_mirrors(struct cmd_context * cmd, struct logical_volume * l
/* If called with no argument, try collapsing the resync layers */ /* If called with no argument, try collapsing the resync layers */
if (!arg_count(cmd, mirrors_ARG) && !arg_count(cmd, mirrorlog_ARG) && if (!arg_count(cmd, mirrors_ARG) && !arg_count(cmd, mirrorlog_ARG) &&
!arg_count(cmd, corelog_ARG)) { !arg_count(cmd, corelog_ARG) && !arg_count(cmd, regionsize_ARG)) {
lp->need_polling = 1; lp->need_polling = 1;
return 1; return 1;
} }