2017-07-02 21:38:32 +02:00
#!/usr/bin/env bash
2012-10-10 16:37:55 +02: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 11:49:46 +01:00
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
2012-10-10 16:37:55 +02:00
#
# test support for non-power-of-2 thin chunk size
#
2018-05-24 09:49:48 -05:00
2015-10-27 15:10:06 +01:00
SKIP_WITH_LVMPOLLD = 1
2015-05-17 17:22:18 +02:00
export LVM_TEST_THIN_REPAIR_CMD = ${ LVM_TEST_THIN_REPAIR_CMD -/bin/false }
2014-06-06 17:40:04 +02:00
. lib/inittest
2012-10-10 16:37:55 +02:00
#
# Main
#
2012-10-11 14:07:35 +02:00
aux have_thin 1 4 0 || skip
2012-10-10 16:37:55 +02:00
aux prepare_pvs 2 64
2017-07-06 19:41:25 +02:00
get_devs
2012-10-10 16:37:55 +02:00
2018-05-24 09:49:48 -05:00
vgcreate $SHARED -s 64K " $vg " " ${ DEVICES [@] } "
2012-10-10 16:37:55 +02:00
# create non-power-of-2 pool
lvcreate -l100 -c 192 -T $vg /pool
2012-12-10 10:51:25 +01:00
check lv_field $vg /pool discards "passdown"
2012-10-10 16:37:55 +02:00
# check we cannot change discards settings
2012-12-10 10:51:25 +01:00
not lvchange --discard ignore $vg /pool
lvchange --discard nopassdown $vg /pool
check lv_field $vg /pool discards "nopassdown"
2012-10-10 16:37:55 +02:00
# must be multiple of 64KB
not lvcreate -l100 -c 168 -T $vg /pool1
vgremove -ff $vg