generic/108: tolerate old lvm utility versions
authorIlya Dryomov <idryomov@gmail.com>
Thu, 24 Aug 2017 12:48:26 +0000 (14:48 +0200)
committerEryu Guan <eguan@redhat.com>
Fri, 25 Aug 2017 08:00:57 +0000 (16:00 +0800)
commita0c87b8074c9323a2c73494810336e3ddc528085
tree506a411c46932e95c9c61ea83a6908e82b3ac143
parent85c9af689b8b3d14011ceec2a44aa5d4a284ae7c
generic/108: tolerate old lvm utility versions

lvm utility in Ubuntu 14.04 LTS treats -l 100%FREE as a hard number
and not as an approximate upper limit.  With ~5G scratch partition
and ~128M scsi_debug device, vg_108 is 1279+31=1310 extents long,
but only 31*2=62 can be allocated with -i 2:

  # lvm lvcreate -i 2 -I 4m -l 100%FREE -n lv_108 vg_108
  Insufficient suitable allocatable extents for logical volume lv_108: 1248 more required

lvm2 commit 4b6e3b5e5ea6 ("allocation: Allow approximate
allocation when specifying size in percent") made '-l 100%FREE'
possible when creating RAID LVs or setting number of stripes.

Fix it by setting the size to allocate to 100M, which is enough for
the test with 128M scsi_debug device.

[eguan: update commit log a bit to mention the lvm2 commit that
changed the lvcreate behavior]

Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
Reviewed-by: Eryu Guan <eguan@redhat.com>
Signed-off-by: Eryu Guan <eguan@redhat.com>
tests/generic/108