Lines Matching refs:mntpoint
316 local mntpoint="${1:-$TST_MNTPOINT}"
319 [ -z "$mntpoint" ] && return
321 if ! echo "$mntpoint" | grep -q ^/; then
322 tst_brk TCONF "The '$mntpoint' is not an absolute path"
325 if ! grep -q "${mntpoint%/}" /proc/mounts; then
326 tst_res TINFO "The '$mntpoint' is not mounted, skipping umount"
331 if umount "$mntpoint" > /dev/null; then
337 tst_res TINFO "umount($mntpoint) failed, try $i ..."
344 tst_res TWARN "Failed to umount($mntpoint) after 50 retries"
767 TST_MNTPOINT="${TST_MNTPOINT:-$PWD/mntpoint}"