1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-22 17:35:59 +03:00

post-release

This commit is contained in:
Alasdair Kergon 2010-02-16 00:27:01 +00:00
parent 29b8138482
commit def0511361
7 changed files with 18 additions and 11 deletions

View File

@ -1 +1 @@
2.02.61(1)-cvs (2010-02-15)
2.02.62(1)-cvs (2010-02-15)

View File

@ -1 +1 @@
1.02.44-cvs (2010-02-15)
1.02.45-cvs (2010-02-15)

View File

@ -1,3 +1,6 @@
Version 2.02.62 -
====================================
Version 2.02.61 - 15th February 2010
====================================
Fix some consts and floating point gcc warnings.

View File

@ -1,3 +1,6 @@
Version 1.02.45 -
====================================
Version 1.02.44 - 15th February 2010
====================================
Add DM_UDEV_DISABLE_LIBRARY_FALLBACK udev flag to rely on udev only.

View File

@ -112,7 +112,8 @@ lv_t lvm_vg_create_lv_linear(vg_t vg, const char *name, uint64_t size)
if (!vg_check_write_mode(vg))
return NULL;
memset(&lp, 0, sizeof(lp));
extents = extents_from_size(vg->cmd, size/SECTOR_SIZE, vg->extent_size);
extents = extents_from_size(vg->cmd, size / SECTOR_SIZE,
vg->extent_size);
_lv_set_default_params(&lp, vg, name, extents);
_lv_set_default_linear_params(vg->cmd, &lp);
if (!lv_create_single(vg, &lp))