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 960DD2874E9 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=1758533820; cv=none; b=R8cUz85bBJ7Ge8oNi84w+oAtg5t4dCSb6MVMZgHbxC3Aw+TlYANO+BL6ZTXQaMNzRtb57WyX9I+57ubyhB9bJb2ous5MWHYwqgFOR6laizxuiiQiyFOA0/o/hD/WQ+E7t5huHBAY782jm4wLkkPXEXbDnTwCHPTnw58hHysPbSI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1758533820; c=relaxed/simple; bh=tKs0pMiUnDHSzock4S4+YkZHDanlLd9l4lYYuPuITaw=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=JRbfE0l4NPv64zgXRPYcYCClF2iZeY3OahM+FsFLTsBNeKrPi+mnl+cUWtzoNargyoNYIdA9B4SPgpVyGYO8XPnxfOssmChqSNcyoiD57vxunozG5sOKAdRfjZF2o+g9zUGlE9xAOLkUZmnvf9iuTWI9agkRUk4F2RV8syDSlHU= 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=Hepw3r8/; 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="Hepw3r8/" 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=dJoRM52xc+mCik0DJKnQhk0AUAjr1KZibYgE+6Ee8kY=; b=Hepw3r8/nNu3ym23LSdVjgqOXS u1/eRVqSEBAZJPxigrukCvr4uUswsG6Zs68k9Wvy6lqaTgu/DwFDvlvfvhhO0H3oXdAInH5Ayo+3h K3p/ZOYioq2oPMpzEvzewIMVnYVmw+yngKIIe4xT+8oXvYDOneOgQbeWSLDXOrOocrL8cDp7xQa4o xaCXv66SIgyiUFrcZDYnmkcKxdhpKnlt9W9aEoGfSA7nilPhBb4JEvH2vg29AphSGtuAJbwwNiYff iaaQuDldLJ44Ja/UVqpf95qoNJv5PjOT/eDoh2DpMsry/pSm7O9LIOeGTjjw643I1atANU/qHV6dC Nw7BSKig==; Received: from mcgrof by bombadil.infradead.org with local (Exim 4.98.2 #2 (Red Hat Linux)) id 1v0cyg-00000009uEQ-03CH; 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 10/13] workflows: fstests: fix incorrect pNFS export configuration Date: Mon, 22 Sep 2025 02:36:52 -0700 Message-ID: <20250922093656.2361016-11-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 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 --- 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 e98e905c..f50370e0 100644 --- a/playbooks/roles/fstests/tasks/main.yml +++ b/playbooks/roles/fstests/tasks/main.yml @@ -761,7 +761,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 @@ -775,7 +775,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