2017-07-02 22:38:32 +03:00
#!/usr/bin/env bash
2012-10-10 18:37:55 +04:00
# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
#
# This copyrighted material is made available to anyone wishing to use,
# modify, copy, or redistribute it subject to the terms and conditions
# of the GNU General Public License v.2.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
2016-01-21 13:49:46 +03:00
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
2012-10-10 18:37:55 +04:00
#
# test support for non-power-of-2 thin chunk size
#
2016-02-23 01:13:42 +03:00
SKIP_WITH_LVMLOCKD = 1
2015-10-27 17:10:06 +03:00
SKIP_WITH_LVMPOLLD = 1
2015-05-17 18:22:18 +03:00
export LVM_TEST_THIN_REPAIR_CMD = ${ LVM_TEST_THIN_REPAIR_CMD -/bin/false }
2014-06-06 19:40:04 +04:00
. lib/inittest
2012-10-10 18:37:55 +04:00
#
# Main
#
2012-10-11 16:07:35 +04:00
aux have_thin 1 4 0 || skip
2012-10-10 18:37:55 +04:00
aux prepare_pvs 2 64
2017-07-06 20:41:25 +03:00
get_devs
2012-10-10 18:37:55 +04:00
2017-07-06 20:41:25 +03:00
vgcreate -s 64K " $vg " " ${ DEVICES [@] } "
2012-10-10 18:37:55 +04:00
# create non-power-of-2 pool
lvcreate -l100 -c 192 -T $vg /pool
2012-12-10 13:51:25 +04:00
check lv_field $vg /pool discards "passdown"
2012-10-10 18:37:55 +04:00
# check we cannot change discards settings
2012-12-10 13:51:25 +04:00
not lvchange --discard ignore $vg /pool
lvchange --discard nopassdown $vg /pool
check lv_field $vg /pool discards "nopassdown"
2012-10-10 18:37:55 +04:00
# must be multiple of 64KB
not lvcreate -l100 -c 168 -T $vg /pool1
vgremove -ff $vg