From 37d8ceb70266b458c98f1544dc0606ca6fe14d4e Mon Sep 17 00:00:00 2001 From: "Samuel Filho (WIPRO LIMITED)" Date: Thu, 23 Oct 2025 01:13:30 -0300 Subject: [PATCH 1/2] NTTTCP must use the NoSync parameter on both sides when running on Linux and Windows --- .../Network/NetworkingWorkload/NTttcp/NTttcpExecutor.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/VirtualClient/VirtualClient.Actions/Network/NetworkingWorkload/NTttcp/NTttcpExecutor.cs b/src/VirtualClient/VirtualClient.Actions/Network/NetworkingWorkload/NTttcp/NTttcpExecutor.cs index 5d8cc4d82e..18a6d6eb0e 100644 --- a/src/VirtualClient/VirtualClient.Actions/Network/NetworkingWorkload/NTttcp/NTttcpExecutor.cs +++ b/src/VirtualClient/VirtualClient.Actions/Network/NetworkingWorkload/NTttcp/NTttcpExecutor.cs @@ -454,7 +454,7 @@ private string GetWindowsSpecificCommandLine() $"-p {this.Port} " + $"-xml {this.ResultsPath} " + $"{(this.Protocol.ToLowerInvariant() == "udp" ? "-u" : string.Empty)} " + - $"{((this.IsInClientRole && this.NoSyncEnabled == true) ? "-ns" : string.Empty)} " + + $"{(this.NoSyncEnabled == true ? "-ns" : string.Empty)} " + $"{(this.IsInClientRole ? $"-nic {clientIPAddress}" : string.Empty)}".Trim(); } @@ -475,7 +475,7 @@ private string GetLinuxSpecificCommandLine() $"{((this.IsInServerRole && this.ReceiverMultiClientMode == true) ? "-M" : string.Empty)} " + $"{((this.IsInClientRole && this.ThreadsPerServerPort != null) ? $"-n {this.ThreadsPerServerPort}" : string.Empty)} " + $"{((this.IsInClientRole && this.ConnectionsPerThread != null) ? $"-l {this.ConnectionsPerThread}" : string.Empty)} " + - $"{((this.IsInClientRole && this.NoSyncEnabled == true) ? "-N" : string.Empty)} " + + $"{(this.NoSyncEnabled == true ? "-N" : string.Empty)} " + $"{((this.DevInterruptsDifferentiator != null) ? $"--show-dev-interrupts {this.DevInterruptsDifferentiator}" : string.Empty)}".Trim(); } } From db0d3366fcc60d40b708f1bf3b7d1f5068bd8f46 Mon Sep 17 00:00:00 2001 From: "Samuel Filho (WIPRO LIMITED)" Date: Thu, 23 Oct 2025 01:21:31 -0300 Subject: [PATCH 2/2] bump version to 2.1.40 --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index ee87a8cea6..6754f7424d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.1.39 \ No newline at end of file +2.1.40 \ No newline at end of file