mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 10:01:01 +03:00
99d3ece847
Allow the caller of the zpool-create.sh script to override the default path where file vdevs are created. This allows for greated flexibilty when scripting. Additionally, update the default path from /tmp/ to /var/tmp/ because these days /tmp/ is likely a ramdisk. Even though these files are sparse they may grow large in which case they should be backed by a physical device. Signed-off-by: Richard Yao <ryao@gentoo.org> Signed-off-by: Tim Chase <tim@chase2k.com> Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Closes #2120
79 lines
2.5 KiB
Bash
79 lines
2.5 KiB
Bash
#!/bin/bash
|
|
#
|
|
# 1 scsi_debug device for fault injection and 3 loopback devices
|
|
# on top of which is layered raid0 (striped).
|
|
#
|
|
|
|
SDSIZE=${SDSIZE:-256}
|
|
SDHOSTS=${SDHOSTS:-1}
|
|
SDTGTS=${SDTGTS:-1}
|
|
SDLUNS=${SDLUNS:-1}
|
|
LDMOD=/sbin/modprobe
|
|
FILEDIR=${FILEDIR:-/var/tmp}
|
|
FILES=${FILES:-"$FILEDIR/file-vdev0 $FILEDIR/file-vdev1 $FILEDIR/file-vdev2"}
|
|
DEVICES=""
|
|
|
|
zpool_create() {
|
|
check_loop_utils
|
|
check_sd_utils
|
|
|
|
test `${LSMOD} | grep -c scsi_debug` -gt 0 && \
|
|
(echo 0 >/sys/module/scsi_debug/parameters/every_nth && \
|
|
${RMMOD} scsi_debug || exit 1)
|
|
udev_trigger
|
|
|
|
msg "${LDMOD} scsi_debug dev_size_mb=${SDSIZE} " \
|
|
"add_host=${SDHOSTS} num_tgts=${SDTGTS} " \
|
|
"max_luns=${SDLUNS}"
|
|
${LDMOD} scsi_debug \
|
|
dev_size_mb=${SDSIZE} \
|
|
add_host=${SDHOSTS} \
|
|
num_tgts=${SDTGTS} \
|
|
max_luns=${SDLUNS} || \
|
|
die "Error $? creating scsi_debug devices"
|
|
udev_trigger
|
|
|
|
SDDEVICE=`${LSSCSI} | ${AWK} '/scsi_debug/ { print $6; exit }'`
|
|
msg "${PARTED} -s ${SDDEVICE} mklabel gpt"
|
|
${PARTED} -s ${SDDEVICE} mklabel gpt || \
|
|
(${RMMOD} scsi_debug && die "Error $? creating gpt label")
|
|
|
|
for FILE in ${FILES}; do
|
|
LODEVICE=`unused_loop_device`
|
|
|
|
rm -f ${FILE} || exit 1
|
|
dd if=/dev/zero of=${FILE} bs=1024k count=0 seek=256 \
|
|
&>/dev/null || (${RMMOD} scsi_debug && \
|
|
die "Error $? creating ${FILE}")
|
|
|
|
# Setup the loopback device on the file.
|
|
msg "Creating ${LODEVICE} using ${FILE}"
|
|
${LOSETUP} ${LODEVICE} ${FILE} || (${RMMOD} scsi_debug \
|
|
die "Error $? creating ${LODEVICE} using ${FILE}")
|
|
|
|
DEVICES="${DEVICES} ${LODEVICE}"
|
|
done
|
|
|
|
DEVICES="${DEVICES} ${SDDEVICE}"
|
|
|
|
msg "${ZPOOL} create ${FORCE_FLAG} ${ZPOOL_NAME} ${DEVICES}"
|
|
${ZPOOL} create ${FORCE_FLAG} ${ZPOOL_NAME} ${DEVICES} || \
|
|
(${RMMOD} scsi_debug && exit 1)
|
|
}
|
|
|
|
zpool_destroy() {
|
|
msg ${ZPOOL} destroy ${ZPOOL_NAME}
|
|
${ZPOOL} destroy ${ZPOOL_NAME}
|
|
|
|
for FILE in ${FILES}; do
|
|
LODEVICE=`${LOSETUP} -a | grep ${FILE} | head -n1|cut -f1 -d:`
|
|
msg "Removing ${LODEVICE} using ${FILE}"
|
|
${LOSETUP} -d ${LODEVICE} ||
|
|
die "Error $? destroying ${LODEVICE} using ${FILE}"
|
|
rm -f ${FILE} || exit 1
|
|
done
|
|
|
|
msg "${RMMOD} scsi_debug"
|
|
${RMMOD} scsi_debug || die "Error $? removing scsi_debug devices"
|
|
}
|