Message ID | 173933094446.1758477.509311653788264022.stgit@frogsfrogsfrogs (mailing list archive) |
---|---|
State | New |
Headers | show
Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 773091E766F; Wed, 12 Feb 2025 03:32:15 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1739331136; cv=none; b=YOi4c/WnPzbEQgn85YG2C0EZ5S+/JbUeG4ZQBoasaPWKZSqAXuppaXWmXq5FqgV3smBKGnDnJmq0d4jYafViyxSb3prCDWGSYNLYpFxQ63+xckC4HNLJMSOfO8sm7V+0GdrBoYXpJ9WhjSjH8xchLVbGT4N4iXmVVrcQmN9pi08= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1739331136; c=relaxed/simple; bh=tsYskbEKM0ZpkngKnTqGzDf656K9u8CPVDIhgx1Jhmg=; h=Date:Subject:From:To:Cc:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=ckQDXAU/rZVdEXjtMp2DpIENDCTx7eQgxBg/gusLr1yYfrf8ZxsT6Az+5aIqdbKTHM2nWpCyCetciqwWF97yPCBbY/6Nb+xyNYATvx0fv2kL309R+khNIn1jcxYAXf2KQn+nv/b0/eFM9QEmgQVqsYVzyNeFO9wg2kh1eR6nr1Q= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=upVHhlSY; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="upVHhlSY" Received: by smtp.kernel.org (Postfix) with ESMTPSA id D8EAEC4CEDF; Wed, 12 Feb 2025 03:32:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1739331134; bh=tsYskbEKM0ZpkngKnTqGzDf656K9u8CPVDIhgx1Jhmg=; h=Date:Subject:From:To:Cc:In-Reply-To:References:From; b=upVHhlSY0VIbqtbhBjbzLFyveJOAejRjY/zYr+yAo1bQmyf635j0Cj74JqTmeVNZ2 x6vE62OMs2vX3apILc54uKUOjipNCVTS5joUXtF/8tDiZHzNKHLfSYMFXIJhctd97q WAtQqN9vy/wjw6x8IDI4CqY6VCrdwa+T9YsgMFhlSL/Lu96v0uUnJ+wMVlxBpb1gj8 HqxfHuwr6S3p1Rn1t5/4Z2x7XfR+Db9GfI5wfkjOr9C3Jwk6LaLqpgwBJf9gDaY35N aqz/z1iKVwHbcH/abWEQgbY3ZcmrhoC19WvmW+Mte9YnRyvlNrd6iu9etXnYdci7bW BAEGfBAg7O5jA== Date: Tue, 11 Feb 2025 19:32:14 -0800 Subject: [PATCH 06/34] common/rc: revert recursive unmount in _clear_mount_stack From: "Darrick J. Wong" <djwong@kernel.org> To: djwong@kernel.org, zlang@redhat.com Cc: dchinner@redhat.com, fstests@vger.kernel.org, linux-xfs@vger.kernel.org Message-ID: <173933094446.1758477.509311653788264022.stgit@frogsfrogsfrogs> In-Reply-To: <173933094308.1758477.194807226568567866.stgit@frogsfrogsfrogs> References: <173933094308.1758477.194807226568567866.stgit@frogsfrogsfrogs> Precedence: bulk X-Mailing-List: linux-xfs@vger.kernel.org List-Id: <linux-xfs.vger.kernel.org> List-Subscribe: <mailto:linux-xfs+subscribe@vger.kernel.org> List-Unsubscribe: <mailto:linux-xfs+unsubscribe@vger.kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit |
Series |
[01/34] generic/476: fix fsstress process management
|
expand
|
diff --git a/common/rc b/common/rc index 4658e3b8be747f..07646927bad523 100644 --- a/common/rc +++ b/common/rc @@ -334,7 +334,7 @@ _put_mount() _clear_mount_stack() { if [ -n "$MOUNTED_POINT_STACK" ]; then - _unmount -R $MOUNTED_POINT_STACK + _unmount $MOUNTED_POINT_STACK fi MOUNTED_POINT_STACK="" }