1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-18 10:04:20 +03:00

Remove verbose 'visited' messages.

This commit is contained in:
Alasdair Kergon 2009-05-30 01:54:29 +00:00
parent 5cffbf0bb0
commit eca971ca6c
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,6 @@
Version 2.02.48 - Version 2.02.48 -
=============================== ===============================
Remove verbose 'visited' messages.
Handle multi-extent mirror log allocation when smallest PV has only 1 extent. Handle multi-extent mirror log allocation when smallest PV has only 1 extent.
Add LSB standard headers and functions (incl. reload) to clvmd initscript. Add LSB standard headers and functions (incl. reload) to clvmd initscript.
When creating new LV, double-check that name is not already in use. When creating new LV, double-check that name is not already in use.

View File

@ -1330,10 +1330,9 @@ static int _lv_postorder_visit(struct logical_volume *lv,
baton.fn = fn; baton.fn = fn;
baton.data = data; baton.data = data;
r = _lv_each_dependency(lv, _lv_postorder_level, &baton); r = _lv_each_dependency(lv, _lv_postorder_level, &baton);
if (r) { if (r)
r = fn(lv, data); r = fn(lv, data);
log_verbose("visited %s", lv->name);
}
return r; return r;
} }