Skip to content

Commit 3f0ba7b

Browse files
committed
workflows: fstests: fix incorrect pNFS export configuration
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 <[email protected]>
1 parent 92b2291 commit 3f0ba7b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

playbooks/roles/fstests/tasks/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -761,7 +761,7 @@
761761
export_options: "{{ nfsd_export_options }}"
762762
export_fstype: "{{ fstests_nfs_export_fstype }}"
763763
export_size: 20g
764-
export_pnfs: "{{ fstests_nfs_section_pnfs | bool }}"
764+
export_pnfs: false
765765
when:
766766
- fstests_fstyp == "nfs"
767767
- fstests_nfs_use_kdevops_nfsd|bool
@@ -775,7 +775,7 @@
775775
export_options: "{{ nfsd_export_options }}"
776776
export_fstype: "{{ fstests_nfs_export_fstype }}"
777777
export_size: 30g
778-
export_pnfs: "{{ fstests_nfs_section_pnfs | bool }}"
778+
export_pnfs: false
779779
when:
780780
- fstests_fstyp == "nfs"
781781
- fstests_nfs_use_kdevops_nfsd|bool

0 commit comments

Comments
 (0)