forked from openzfs/zfs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix parallel mount's thread dispatching algorithm
Strategy of parallel mount is as follows. 1) Initial thread dispatching selects sets of mount points that don't have dependencies on other sets, hence threads can/should go lock-less and shouldn't race with other threads for other sets. Each thread dispatched corresponds to top level directory which may or may not have datasets mounted on sub directories. 2) Subsequent recursive thread dispatching for each thread from 1) is to mount datasets for each set of mount points. The mount points within each set have dependencies (i.e. child directories), so child directories are processed only after parent directory completes. The problem is that initial thread dispatching can spawn >1 threads for datasets with the same top level directory, and this puts threads under race condition. This appeared as mount issue on ZoL for ZoL having different timing regarding mount(2) execution due to fork(2)/exec(2) of mount(8) on mount. Fix it by libzfs_path_contains() returning true for same paths. Closes openzfs#8450 Closes openzfs#8833 Signed-off-by: Tomohiro Kusumi <kusumi.tomohiro@gmail.com>
- Loading branch information
Showing
4 changed files
with
100 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
93 changes: 93 additions & 0 deletions
93
tests/zfs-tests/tests/functional/cli_root/zfs_mount/zfs_mount_test_race.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
#!/bin/ksh | ||
|
||
# | ||
# This file and its contents are supplied under the terms of the | ||
# Common Development and Distribution License ("CDDL"), version 1.0. | ||
# You may only use this file in accordance with the terms of version | ||
# 1.0 of the CDDL. | ||
# | ||
# A full copy of the text of the CDDL should have accompanied this | ||
# source. A copy of the CDDL is also available via the Internet at | ||
# http://www.illumos.org/license/CDDL. | ||
# | ||
|
||
# | ||
# Copyright (c) 2019 by Tomohiro Kusumi. All rights reserved. | ||
# | ||
|
||
. $STF_SUITE/include/libtest.shlib | ||
|
||
# | ||
# DESCRIPTION: | ||
# Verify parallel mount result is consistent. | ||
# See github.com/zfsonlinux/zfs/issues/8833 for details. | ||
# | ||
# STRATEGY: | ||
# 1. Create pools and filesystems. | ||
# 2. Set same mount point for >1 datasets. | ||
# 3. Unmount all datasets. | ||
# 4. Mount all datasets. | ||
# 5. Unmount all datasets. | ||
# 6. Mount all datasets. | ||
# | ||
|
||
verify_runnable "both" | ||
|
||
log_note "Verify parallel mount result is consistent" | ||
|
||
TMPDIR=${TMPDIR:-$TEST_BASE_DIR} | ||
MNTPT=$TMPDIR/zfs_mount_test_race_mntpt | ||
|
||
DISK1="$TMPDIR/zfs_mount_test_race_disk1" | ||
TESTPOOL1=zfs_mount_test_race_tp1 | ||
TESTFS1=zfs_mount_test_race_tf1 | ||
|
||
DISK2="$TMPDIR/zfs_mount_test_race_disk2" | ||
TESTPOOL2=zfs_mount_test_race_tp2 | ||
TESTFS2=zfs_mount_test_race_tf2 | ||
|
||
log_must zfs unmount -a # unmount zfs mounts from previous tests | ||
log_must rm -rf $MNTPT | ||
log_must rm -rf /$TESTPOOL1 | ||
log_must rm -rf /$TESTPOOL2 | ||
|
||
function cleanup | ||
{ | ||
zpool destroy $TESTPOOL1 | ||
zpool destroy $TESTPOOL2 | ||
rm -rf $MNTPT | ||
rm -rf /$TESTPOOL1 | ||
rm -rf /$TESTPOOL2 | ||
log_must zfs mount -a # remount unmounted zfs mounts | ||
} | ||
log_onexit cleanup | ||
|
||
log_note "Testing github.com/zfsonlinux/zfs/issues/8833" | ||
|
||
log_must mkfile $MINVDEVSIZE $DISK1 | ||
log_must mkfile $MINVDEVSIZE $DISK2 | ||
|
||
log_must zpool create -f $TESTPOOL1 $DISK1 | ||
log_must zpool create -f $TESTPOOL2 $DISK2 | ||
|
||
log_must zfs create $TESTPOOL1/$TESTFS1 | ||
log_must zfs create $TESTPOOL2/$TESTFS2 | ||
|
||
log_must zfs set mountpoint=none $TESTPOOL1 | ||
log_must zfs set mountpoint=$MNTPT $TESTPOOL1/$TESTFS1 | ||
|
||
# Note that unmount can fail (due to race condition on `zfs mount -a`) with or | ||
# without `canmount=off`. The race has nothing to do with canmount property. | ||
log_must zfs set canmount=off $TESTPOOL2 | ||
log_must zfs set mountpoint=$MNTPT $TESTPOOL2 | ||
|
||
log_must zfs list -o name,mounted,canmount,mountpoint | ||
log_must mount | grep zfs | ||
log_must zfs unmount -a | ||
log_must zfs mount -a | ||
|
||
log_must zfs list -o name,mounted,canmount,mountpoint | ||
log_must mount | grep zfs | ||
log_must zfs unmount -a # verify this succeeds | ||
|
||
log_pass "Verify parallel mount result is consistent passed" |