1908eaf68SStefan Hajnoczi#!/bin/bash 2ed4dc684SKevin Wolf# 3ed4dc684SKevin Wolf# Commit changes to backing file 4ed4dc684SKevin Wolf# 5ed4dc684SKevin Wolf# Copyright (C) 2009 Red Hat, Inc. 6ed4dc684SKevin Wolf# 7ed4dc684SKevin Wolf# This program is free software; you can redistribute it and/or modify 8ed4dc684SKevin Wolf# it under the terms of the GNU General Public License as published by 9ed4dc684SKevin Wolf# the Free Software Foundation; either version 2 of the License, or 10ed4dc684SKevin Wolf# (at your option) any later version. 11ed4dc684SKevin Wolf# 12ed4dc684SKevin Wolf# This program is distributed in the hope that it will be useful, 13ed4dc684SKevin Wolf# but WITHOUT ANY WARRANTY; without even the implied warranty of 14ed4dc684SKevin Wolf# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15ed4dc684SKevin Wolf# GNU General Public License for more details. 16ed4dc684SKevin Wolf# 17ed4dc684SKevin Wolf# You should have received a copy of the GNU General Public License 18e8c212d6SChristoph Hellwig# along with this program. If not, see <http://www.gnu.org/licenses/>. 19ed4dc684SKevin Wolf# 20ed4dc684SKevin Wolf 21ed4dc684SKevin Wolf# creator 22ed4dc684SKevin Wolfowner=kwolf@redhat.com 23ed4dc684SKevin Wolf 24ed4dc684SKevin Wolfseq=`basename $0` 25ed4dc684SKevin Wolfecho "QA output created by $seq" 26ed4dc684SKevin Wolf 27ed4dc684SKevin Wolfhere=`pwd` 28ed4dc684SKevin Wolftmp=/tmp/$$ 29ed4dc684SKevin Wolfstatus=1 # failure is the default! 30ed4dc684SKevin Wolf 31ed4dc684SKevin Wolf_cleanup() 32ed4dc684SKevin Wolf{ 33ed4dc684SKevin Wolf _cleanup_test_img 34fef9c191SJeff Cody rm -f "$TEST_IMG.base" 35fef9c191SJeff Cody rm -f "$TEST_IMG.orig" 36ed4dc684SKevin Wolf} 37ed4dc684SKevin Wolftrap "_cleanup; exit \$status" 0 1 2 3 15 38ed4dc684SKevin Wolf 39ed4dc684SKevin Wolf# get standard environment, filters and checks 40ed4dc684SKevin Wolf. ./common.rc 41ed4dc684SKevin Wolf. ./common.filter 42ed4dc684SKevin Wolf. ./common.pattern 43ed4dc684SKevin Wolf 44ed4dc684SKevin Wolf# Any format supporting backing files 45f5a4bbd9SStefan Hajnoczi_supported_fmt qcow qcow2 vmdk qed 469cdfa1b3SMORITA Kazutaka_supported_proto generic 47ed4dc684SKevin Wolf_supported_os Linux 48d2329f27SFam Zheng_unsupported_imgopts "subformat=monolithicFlat" \ 49d2329f27SFam Zheng "subformat=twoGbMaxExtentFlat" \ 50d2329f27SFam Zheng "subformat=twoGbMaxExtentSparse" 51ed4dc684SKevin Wolf 52ecd792fdSPeter Lieven# NFS does not support bdrv_reopen_prepare thus qemu-img commit fails. 53ecd792fdSPeter Lievenif [ "$IMGPROTO" = "nfs" ]; then 54ecd792fdSPeter Lieven _notrun "image protocol $IMGPROTO does not support bdrv_commit" 55ecd792fdSPeter Lievenfi 56ecd792fdSPeter Lieven 57ed4dc684SKevin WolfTEST_OFFSETS="0 4294967296" 58ed4dc684SKevin Wolf 59*71ad7617SFam ZhengTEST_IMG_SAVE="$TEST_IMG" 60*71ad7617SFam ZhengTEST_IMG="$TEST_IMG.base" 61*71ad7617SFam Zheng 62ed4dc684SKevin Wolf_make_test_img 6G 63ed4dc684SKevin Wolf 64ed4dc684SKevin Wolfecho "Filling base image" 65ed4dc684SKevin Wolfecho 66ed4dc684SKevin Wolf 67ed4dc684SKevin Wolffor offset in $TEST_OFFSETS; do 68ed4dc684SKevin Wolf # Some clusters with alternating backing file/image file reads 69ed4dc684SKevin Wolf io writev $(( offset )) 512 1024 64 70ed4dc684SKevin Wolf 71ed4dc684SKevin Wolf # Complete backing clusters 72ed4dc684SKevin Wolf io writev $(( offset + 64 * 1024)) 65536 65536 1 73ed4dc684SKevin Wolfdone 74ed4dc684SKevin Wolf_check_test_img 75ed4dc684SKevin Wolf 76ed4dc684SKevin Wolfecho "Creating test image with backing file" 77ed4dc684SKevin Wolfecho 78ed4dc684SKevin Wolf 79*71ad7617SFam ZhengTEST_IMG="$TEST_IMG_SAVE" 80fef9c191SJeff Cody_make_test_img -b "$TEST_IMG.base" 6G 81ed4dc684SKevin Wolf 82ed4dc684SKevin Wolfecho "Filling test image" 83ed4dc684SKevin Wolfecho 84ed4dc684SKevin Wolf 85ed4dc684SKevin Wolffor offset in $TEST_OFFSETS; do 86ed4dc684SKevin Wolf # Some clusters with alternating backing file/image file reads 87ed4dc684SKevin Wolf io writev $(( offset + 512 )) 512 1024 64 88ed4dc684SKevin Wolf 89ed4dc684SKevin Wolf # Complete test image clusters 90ed4dc684SKevin Wolf io writev $(( offset + 64 * 1024 + 65536)) 65536 65536 1 91ed4dc684SKevin Wolfdone 92ed4dc684SKevin Wolf_check_test_img 93ed4dc684SKevin Wolf 94fef9c191SJeff Cody$QEMU_IMG commit "$TEST_IMG" 95*71ad7617SFam ZhengTEST_IMG="$TEST_IMG.base" 96ed4dc684SKevin Wolf 97ed4dc684SKevin Wolfecho "Reading from the backing file" 98ed4dc684SKevin Wolfecho 99ed4dc684SKevin Wolf 100ed4dc684SKevin Wolffor offset in $TEST_OFFSETS; do 101ed4dc684SKevin Wolf # Some clusters with alternating backing file/image file reads 102ed4dc684SKevin Wolf io readv $(( offset )) 512 1024 64 103ed4dc684SKevin Wolf io readv $(( offset + 512 )) 512 1024 64 104ed4dc684SKevin Wolf 105ed4dc684SKevin Wolf # Complete test image clusters 106ed4dc684SKevin Wolf io readv $(( offset + 64 * 1024)) 65536 65536 1 107ed4dc684SKevin Wolf io readv $(( offset + 64 * 1024 + 65536)) 65536 65536 1 108ed4dc684SKevin Wolf 109ed4dc684SKevin Wolf # Empty sectors 110ed4dc684SKevin Wolf io_zero readv $(( offset + 64 * 1024 + 65536 * 4 )) 65536 65536 1 111ed4dc684SKevin Wolfdone 112ed4dc684SKevin Wolf_check_test_img 113ed4dc684SKevin Wolf 114ed4dc684SKevin Wolf# success, all done 115ed4dc684SKevin Wolfecho "*** done" 116ed4dc684SKevin Wolfrm -f $seq.full 117ed4dc684SKevin Wolfstatus=0 118