From mboxrd@z Thu Jan 1 00:00:00 1970 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 9B911168BD for ; Fri, 3 Oct 2025 20:20:04 +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=1759522804; cv=none; b=o1WwNgwtBTOxJcaG0PypRtSnb8uQcaRwCe4QV99Jr4dK69dJnVJvs3AGG8i25mT8NtKE5ltH5gLKtmJEihAb8uMYO2ylOqbWWFw73lGbSdYiYgJhJ31i/YLFdWZWVok2yRgma6jn+dBXJEHXHS8vGxG3Pox+2ZuOzcasDOUI7eo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1759522804; c=relaxed/simple; bh=ej5t4X7SM2YwCBoEfRochCmVFkzVAqMr6+dDIn5b81Y=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Uns5V+iJ0GfLjUm/pE6scjjhG2wrdPoUMHBY7bijHWR/+fJHNyHGgknYIDUxfdhztIWqyTCsfSiTjJ6/KXtFBhmbI2/uru+vnth3FqOdR3sQqMgUAH8K4NBak5Fc4k4cJsoMAFWRg9ZNh9eaEPI3oGV+z5a59RCflUvDAq3WPMU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=nJO/B6vt; 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="nJO/B6vt" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0E97FC4CEF9; Fri, 3 Oct 2025 20:20:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1759522804; bh=ej5t4X7SM2YwCBoEfRochCmVFkzVAqMr6+dDIn5b81Y=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=nJO/B6vt5pNHqErULRLqi8Y4NT0d36B3txo98S332CIt2KZZfxcNoXUZ6tGXNJGco uyJAoHNtycyTb4uS9Cg/NY87Q533a2SBg1bbmgCbd2RI7e3AlcDVQmImjcx+yvcl9o B2iX8xA/SSi0joKN1kcUIpZVU8c7mCtledMfISIg13gh3CGZUQoXi/RnLbPDYfdGOs yrFtqzHMxioZ58WW9+2J7G7Klb4V88oLxU4sIIjmkUdV8taG7tvxd8Hn8PoayKPnUV aI1xiUB1OUTB4qwhTYjgVLrI5Rv4E35QB/VpROJMPI1A+4h4zptPURzQFlELWQ2yla KPIa8iqtnUVuQ== From: Chuck Lever To: Cc: Luis Chamberlain Subject: [PATCH v2 7/8] fstests: add soak duration to nfs template Date: Fri, 3 Oct 2025 16:19:55 -0400 Message-ID: <20251003201958.24452-8-cel@kernel.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20251003201958.24452-1-cel@kernel.org> References: <20251003201958.24452-1-cel@kernel.org> Precedence: bulk X-Mailing-List: kdevops@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: Luis Chamberlain Use the soak duration when enabled for NFS fstests. Although current analysis (take scripts/workflows/lib/fstests.py fstests_test_uses_soak_duration() and use it on a new script to check.time) shows no tests run on NFS actually leverage soak duration. But this can change with time. Signed-off-by: Luis Chamberlain Signed-off-by: Chuck Lever --- playbooks/roles/fstests/templates/nfs/nfs.config | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/playbooks/roles/fstests/templates/nfs/nfs.config b/playbooks/roles/fstests/templates/nfs/nfs.config index b26c45c11bc3..5d0b98cebd3e 100644 --- a/playbooks/roles/fstests/templates/nfs/nfs.config +++ b/playbooks/roles/fstests/templates/nfs/nfs.config @@ -10,6 +10,10 @@ SCRATCH_DEV="{{ fstests_nfs_scratch_devpool }}" RESULT_BASE=$PWD/results/$HOST/$(uname -r) TEST_DEV={{ fstests_nfs_test_dev }} CANON_DEVS=yes +{% if fstests_soak_duration > 0 -%} +SOAK_DURATION={{ fstests_soak_duration }} +{% endif %} + {% if fstests_nfs_section_pnfs -%} # Test pNFS block -- 2.51.0