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 55AC8287254 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=1758533819; cv=none; b=ag8QiP78bS+MccHEHrHXhyeRzxpzamM/J5LxJXLw5GE2ThBEMAZMqlmfvxK3E0DKo+1NKi2PnxFXEnY+PDci5VaD3ayyI4etsBA+hvXSa94h/IeRX8faReZ2CSSME3e97k+5SuC13ftgP2ZfSWZE+xMy6WqiHlQehzftgYRDMfs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1758533819; c=relaxed/simple; bh=6RZkMDhqvFmxhMiP30WkK4RGGqOC073pMiRpljy3VA8=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=MKbekQ2VtvVIypY9CwlZURKs7pljxVv43eaqOzYAzumGLWUXhX2AjuIGcJYAKCY5zxQplXBe5Z1KvJ/eI75wCa1vUsP9GG4dkpOU7Dinfq3mPeg/mJc5QjFqu6B//Lw8hG0WSGYey8db6SajWlTTnmZdy3hdju7QGQXDhHUS4PE= 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=uslZj/IO; 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="uslZj/IO" 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=2EdFkNE5wnUQTq3rOAd4nd0YGNI0xgPD+JdiPUmzQsU=; b=uslZj/IO3Paoo1UrJtpXihkSWd 50uUKMe39IjwrQL4ClJ3OEgjLqerqUYUR3mFmELTfCMs+nhBgMafRqDVQ6QNnE9f0LCxvqjkJfqZj qeaohWXMANJxLwyiUiIIxYozBvajWAULHuqt+BwlIFIIvAixIVBeCo864OrVtZaGjSY3u0HseSBAj ffzy+2cGV+VRVhJVR2HSpEUZKBnwa7xooMLxbqXFivpwppwcrUWoLSsOvx+2a24EjHc39GdN/VcqP xHY3rAtwwvYXYeFDDOjx1zt3ZAY9pi8AcR2ae0SCZrtGeMJlsy5bCcS3bBOVl+nWMJQEtSzNHeD5O UxSIh2Dg==; Received: from mcgrof by bombadil.infradead.org with local (Exim 4.98.2 #2 (Red Hat Linux)) id 1v0cyf-00000009uE6-3UxW; Mon, 22 Sep 2025 09:36:57 +0000 From: Luis Chamberlain To: Chuck Lever , Daniel Gomez , kdevops@lists.linux.dev Cc: Luis Chamberlain Subject: [PATCH 06/13] fstests: set up iSCSI target on NFS server before test nodes Date: Mon, 22 Sep 2025 02:36:48 -0700 Message-ID: <20250922093656.2361016-7-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 iSCSI target service must be running on the NFS server before test nodes attempt to connect as initiators for pNFS block layout testing. Add a play to the fstests playbook that sets up the iSCSI target on the NFS server when pNFS is enabled. This ensures the target is listening on port 3260 before initiators try to discover and connect. Generated-by: Claude AI Signed-off-by: Luis Chamberlain --- playbooks/fstests.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/playbooks/fstests.yml b/playbooks/fstests.yml index 193ecdc0..4cb74783 100644 --- a/playbooks/fstests.yml +++ b/playbooks/fstests.yml @@ -4,6 +4,12 @@ roles: - role: fstests_prep_localhost +- name: Set up NFS server with iSCSI target for pNFS + hosts: nfsd + roles: + - role: iscsi + when: fstests_nfs_section_pnfs|default(false)|bool + - name: Configure and run the filesystem testing suite workflow hosts: baseline:dev roles: -- 2.51.0