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 6611722A807 for ; Fri, 3 Oct 2025 20:20:03 +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=1759522803; cv=none; b=cVY+fa0IWn3+JbN+xAS6IGBhFwGwj0mu3WIYlKzfemJjK/MRciJF6rcytHyJ0HSv/ql9yn7sCOCBdGdk86k71dhFH5ZA6Grt1/yKXCovUaja3+3PbAQ1oSDVadcjGDyRhWRa24ObK2+QdSnbZDsTyMZb/pT7Sa1u+1RbngHfp9M= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1759522803; c=relaxed/simple; bh=a1s/b188MXBlUhWJz6/Pf+l7BjvxpE9gvwmrKhuY8fs=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=hlI3l7x6cys+BgbtDM3xs5HUeHjTR/+nHZt1umM8WLmGJw9fgGODz+OhgFiKg54V0FOum5QHEEKAIFKMDb/RmXrVTcyhY9iixdM6E7BGUazqMSUmAR7i6hzaogSKPWMyQhKoyN/NMtH8Kv6C/hH4nrNIDmLkddnN0uOAQwV99Ug= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=U5D1DLtX; 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="U5D1DLtX" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 06751C4CEFE; Fri, 3 Oct 2025 20:20:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1759522803; bh=a1s/b188MXBlUhWJz6/Pf+l7BjvxpE9gvwmrKhuY8fs=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=U5D1DLtXoTQKwpAMOJnB7QvMneNa/JaPsehHhafkvINQSODOu/nQ0a70rIvojsaHR J6zwhUYKNty+01ZwT5e5px4HsnDja0VgZ9dQz2MhYAI+Yv3DS+kJXF4DmSE6DgouHd ILT6+N53A1w7n+jY5rnj0RPrFGT3Ewe89e/4JYpcnPgNecofTDPkvYJAyFPU2/+OuJ pq6pdPXc8S//F02URaa4now5rXo+WPkNCzhKrlHMQ/FSd25HYkQY7WMKeqQ6L94Yuk wELA3cSjPV8qwB768pa5p9hCxRY3GK8vUJgGf5cmifzWobDwcfH3ORcquAaG4DnR6Q ktY+dWNamo5UA== From: Chuck Lever To: Cc: Luis Chamberlain Subject: [PATCH v2 5/8] workflows: fstests: fix incorrect pNFS export configuration Date: Fri, 3 Oct 2025 16:19:53 -0400 Message-ID: <20251003201958.24452-6-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 The fstests role was incorrectly setting export_pnfs=true for pNFS test sections. The kernel pNFS export option requires proper block layout backend configuration (like iSCSI targets) which isn't present. Regular NFSv4.1/4.2 testing doesn't need this option. The incorrect configuration caused NFS server lockd failures and made NFS mounts hang indefinitely. Generated-by: Claude AI Signed-off-by: Luis Chamberlain Signed-off-by: Chuck Lever --- playbooks/roles/fstests/tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/playbooks/roles/fstests/tasks/main.yml b/playbooks/roles/fstests/tasks/main.yml index c3dcecf538b8..f0fbcda48345 100644 --- a/playbooks/roles/fstests/tasks/main.yml +++ b/playbooks/roles/fstests/tasks/main.yml @@ -758,7 +758,7 @@ export_options: "{{ nfsd_export_options }}" export_fstype: "{{ fstests_nfs_export_fstype }}" export_size: 20g - export_pnfs: "{{ fstests_nfs_section_pnfs | bool }}" + export_pnfs: false when: - fstests_fstyp == "nfs" - fstests_nfs_use_kdevops_nfsd|bool @@ -772,7 +772,7 @@ export_options: "{{ nfsd_export_options }}" export_fstype: "{{ fstests_nfs_export_fstype }}" export_size: 30g - export_pnfs: "{{ fstests_nfs_section_pnfs | bool }}" + export_pnfs: false when: - fstests_fstyp == "nfs" - fstests_nfs_use_kdevops_nfsd|bool -- 2.51.0