From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (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 BC3922874F6 for ; Mon, 22 Sep 2025 09:36:58 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=198.137.202.133 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1758533821; cv=none; b=IMMTCtRUr3MhiBw8OiN4W82fvm4BeviCII6ryVM0lYKyTd7DHKA/j5wnII80qJBS4oaDGMQLs269dqvc3XQlZf0Hjv3+Q+zmvsrZQjF8BX0Tkq4qG5cXsmF4cXaiiYI8ogR6vZMzxQHCgHDIMUPcbQFjo8rP7vViaGm0rwskQjc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1758533821; c=relaxed/simple; bh=6W0sGHE6PL9VtUFWB2Lr451P2r4KZEIJ1ZFrvxzdDdQ=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Fv4pD7EJbwq48wRBYTVg7zNXF+T0rDzciW+H2C5etakDijnxkuN4hi8d8D+RD5GmtjOQ1vDo/ydXOwRGDe5rTYh792a5xfIMGpkBMnDyNxA88w+9tsLClrzybQdegwoP1t0pJaFhkhAXr7j2bUgWsH9LmtN8ZXRuHeVmT6y/5Dc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=fail (p=quarantine dis=none) header.from=kernel.org; spf=none smtp.mailfrom=infradead.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b=lUhoXC7X; arc=none smtp.client-ip=198.137.202.133 Authentication-Results: smtp.subspace.kernel.org; dmarc=fail (p=quarantine dis=none) header.from=kernel.org Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=infradead.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="lUhoXC7X" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Sender:Content-Transfer-Encoding: MIME-Version:References:In-Reply-To:Message-ID:Date:Subject:Cc:To:From: Reply-To:Content-Type:Content-ID:Content-Description; bh=I6X1fJR3jS96L1RI2KvUhu5nacicyHKdUgKmRM+k+5Y=; b=lUhoXC7XCL75Sh1O+BkouL5TQz 8GSxdMo/ewUam0enpdYzH6PWrNlX17hzd+kh4RmRC4w9DrWWe+AujIZDn87RVnhvZXHlYCRSbChAT W1mnyMFCKuT1O7lSMKFm/Nl9+Axw7a2SU+jPH5g8jzX9/RyS98eVsuNC2BnIxC+WNQL3ETuuzFnbD KLgz9W/vOHKrQraoe+5kaI9QHwxYD2TQphMtjI+tQ4RYcSVG0EChKWHtUtUMwNhiEzG8eUvOkEmv4 CdMQZA5HRQFI/rYYmZTV3CiPLTZ7jX9D2oqq+q5+N486l7BtIrKrN6rASywRrrvlo97T2e3X87ghA hg+mrpsw==; Received: from mcgrof by bombadil.infradead.org with local (Exim 4.98.2 #2 (Red Hat Linux)) id 1v0cyg-00000009uEa-0Ta6; Mon, 22 Sep 2025 09:36:58 +0000 From: Luis Chamberlain To: Chuck Lever , Daniel Gomez , kdevops@lists.linux.dev Cc: Luis Chamberlain Subject: [PATCH 12/13] fstests: add soak duration to nfs template Date: Mon, 22 Sep 2025 02:36:54 -0700 Message-ID: <20250922093656.2361016-13-mcgrof@kernel.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20250922093656.2361016-1-mcgrof@kernel.org> References: <20250922093656.2361016-1-mcgrof@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 Sender: 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 --- 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 b26c45c1..5d0b98ce 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