[pve-devel] [PATCH storage v4] fix #957 iscsi: improve iscsi_test_portal logic

2025-03-16 Thread Victor Seva via pve-devel
--- Begin Message --- don't check tcp connection directly if there are already sessions. pvestatd is calling check_connection every 10 seconds. This check produces a lot of noise at the iscsi server logging. Signed-off-by: Victor Seva --- changes since v3: * iscsi_test_session(): read /sys/c

[pve-devel] [PATCH storage v5] fix #957: iscsi: improve iscsi_test_portal logic

2025-03-20 Thread Victor Seva via pve-devel
--- Begin Message --- Check if there is already a logged session present and fall back to previous TCP check port connection. pvestatd is calling check_connection every 10 seconds. This check produces a lot of noise at the iscsi server logging. Signed-off-by: Victor Seva --- changes since v4:

[pve-devel] [PATCH storage v2] fix #957 iscsi: improve check_connection logic

2025-03-08 Thread Victor Seva via pve-devel
--- Begin Message --- don't check tcp connection directly if there are already sessions. Use iscsiadm command to check the sessions status instead. pvestatd is calling check_connection every 10 seconds. This check produces a lot of noise at the iscsi server logging. Signed-off-by: Victor Seva --

[pve-devel] [PATCH] fix #957 iscsi: don't check tcp connection directly

2025-03-05 Thread Victor Seva via pve-devel
--- Begin Message --- pvestatd is checking this every 10 seconds. This check produces a lot of noise at the iscsi server logging. Use iscsiadm command to check the sessions status instead Signed-off-by: Victor Seva --- src/PVE/Storage/ISCSIPlugin.pm | 28 +--- 1 file cha

[pve-devel] [PATCH storage v3] fix #957 iscsi: improve check_connection logic

2025-03-11 Thread Victor Seva via pve-devel
--- Begin Message --- don't check tcp connection directly if there are already sessions. Use iscsiadm command to check the sessions status instead. pvestatd is calling check_connection every 10 seconds. This check produces a lot of noise at the iscsi server logging. Signed-off-by: Victor Seva --