All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v1] package/iperf: bump version to 2.1.5
@ 2021-12-06 21:44 Peter Seiderer
  2021-12-12 12:15 ` Arnout Vandecappelle
  0 siblings, 1 reply; 2+ messages in thread
From: Peter Seiderer @ 2021-12-06 21:44 UTC (permalink / raw)
  To: buildroot; +Cc: Matt Weber

Changelog ([1]):

  - fix some HAVE_IPV6 conditional changes
  - fix SO_TIMEOUT regressiony
  - ren sockets.c to socket_io.c
  - fix compile breakage per abs() returning an int instead of float
  - support for gettcpinfo on Mac OS X (tested on both M1 and x86 silicon)
  - move setsock_blocking from sockets into PerfSocket.cpp
  - don't require -V for v6, instead try v6 when v4 hostname lookup fails,
    client only
  - add assert in writen
  - add tcp RTT variance to client output
  - use setsockopt to get the nagle status
  - show Nagle and TOS settings on client
  - more on connect-only testing
  - sample and output the initial rtt and cwnd in the connect report
  - fix multiple fullduplex regressions
  - fix for HAVE_TCP_STATS in configure, then linux compile
  - writen can have more than one write, fix accounting when this occurs
  - fix tos with --reverse and --full-duplex
  - add support for --tos-override <value> on server
  - add support for  --tcp-drain, add mmm stats, histograms - experimental
    feature
  - multiple man page updates
  - fix partial histogram print to not show (f)
  - some new scripts in python flows
  - fixes to incr-srcport
  - fixes for --incr-dstport
  - fix regression on very first UDP packet having transit latency of zero
  - fix --reverse and --isochronous when --trip-times not set
  - fix client_init regression, pull out tcp_shutdown
  - fix reporter startup race and one second delay by setting the threads
    ready predicate and issuing the signal under a lock
  - fix first send accounting for small -n
  - fix configure.ac to use '=' instead of '=='

[1] https://sourceforge.net/projects/iperf2/files/readme.txt/download

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
---
 package/iperf/iperf.hash | 2 +-
 package/iperf/iperf.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/iperf/iperf.hash b/package/iperf/iperf.hash
index 35ed2a10c1..bd5643af95 100644
--- a/package/iperf/iperf.hash
+++ b/package/iperf/iperf.hash
@@ -1,5 +1,5 @@
 # From https://sourceforge.net/projects/iperf2/files/
-sha1  f1b7835eb74094b1a1849faeafe35b7c362f4ab5  iperf-2.1.4.tar.gz
+sha1  b9d0868a6cdd970c1835d3d1a264dd54907f2c5c  iperf-2.1.5.tar.gz
 
 # Locally computed:
 sha256  062b392e87b8e227aca74fef0a99b04fe0382d4518957041b508a56885b4d4f9  iperf-2.1.4.tar.gz
diff --git a/package/iperf/iperf.mk b/package/iperf/iperf.mk
index 34cbe532fd..a3d95535b3 100644
--- a/package/iperf/iperf.mk
+++ b/package/iperf/iperf.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-IPERF_VERSION = 2.1.4
+IPERF_VERSION = 2.1.5
 IPERF_SITE = http://downloads.sourceforge.net/project/iperf2
 IPERF_LICENSE = MIT-like
 IPERF_LICENSE_FILES = COPYING
-- 
2.34.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [Buildroot] [PATCH v1] package/iperf: bump version to 2.1.5
  2021-12-06 21:44 [Buildroot] [PATCH v1] package/iperf: bump version to 2.1.5 Peter Seiderer
@ 2021-12-12 12:15 ` Arnout Vandecappelle
  0 siblings, 0 replies; 2+ messages in thread
From: Arnout Vandecappelle @ 2021-12-12 12:15 UTC (permalink / raw)
  To: Peter Seiderer, buildroot; +Cc: Matt Weber



On 06/12/2021 22:44, Peter Seiderer wrote:
> Changelog ([1]):
> 
>    - fix some HAVE_IPV6 conditional changes
>    - fix SO_TIMEOUT regressiony
>    - ren sockets.c to socket_io.c
>    - fix compile breakage per abs() returning an int instead of float
>    - support for gettcpinfo on Mac OS X (tested on both M1 and x86 silicon)
>    - move setsock_blocking from sockets into PerfSocket.cpp
>    - don't require -V for v6, instead try v6 when v4 hostname lookup fails,
>      client only
>    - add assert in writen
>    - add tcp RTT variance to client output
>    - use setsockopt to get the nagle status
>    - show Nagle and TOS settings on client
>    - more on connect-only testing
>    - sample and output the initial rtt and cwnd in the connect report
>    - fix multiple fullduplex regressions
>    - fix for HAVE_TCP_STATS in configure, then linux compile
>    - writen can have more than one write, fix accounting when this occurs
>    - fix tos with --reverse and --full-duplex
>    - add support for --tos-override <value> on server
>    - add support for  --tcp-drain, add mmm stats, histograms - experimental
>      feature
>    - multiple man page updates
>    - fix partial histogram print to not show (f)
>    - some new scripts in python flows
>    - fixes to incr-srcport
>    - fixes for --incr-dstport
>    - fix regression on very first UDP packet having transit latency of zero
>    - fix --reverse and --isochronous when --trip-times not set
>    - fix client_init regression, pull out tcp_shutdown
>    - fix reporter startup race and one second delay by setting the threads
>      ready predicate and issuing the signal under a lock
>    - fix first send accounting for small -n
>    - fix configure.ac to use '=' instead of '=='
> 
> [1] https://sourceforge.net/projects/iperf2/files/readme.txt/download
> 
> Signed-off-by: Peter Seiderer <ps.report@gmx.net>

  Applied to master, thanks.

  Regards,
  Arnout

> ---
>   package/iperf/iperf.hash | 2 +-
>   package/iperf/iperf.mk   | 2 +-
>   2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/package/iperf/iperf.hash b/package/iperf/iperf.hash
> index 35ed2a10c1..bd5643af95 100644
> --- a/package/iperf/iperf.hash
> +++ b/package/iperf/iperf.hash
> @@ -1,5 +1,5 @@
>   # From https://sourceforge.net/projects/iperf2/files/
> -sha1  f1b7835eb74094b1a1849faeafe35b7c362f4ab5  iperf-2.1.4.tar.gz
> +sha1  b9d0868a6cdd970c1835d3d1a264dd54907f2c5c  iperf-2.1.5.tar.gz
>   
>   # Locally computed:
>   sha256  062b392e87b8e227aca74fef0a99b04fe0382d4518957041b508a56885b4d4f9  iperf-2.1.4.tar.gz
> diff --git a/package/iperf/iperf.mk b/package/iperf/iperf.mk
> index 34cbe532fd..a3d95535b3 100644
> --- a/package/iperf/iperf.mk
> +++ b/package/iperf/iperf.mk
> @@ -4,7 +4,7 @@
>   #
>   ################################################################################
>   
> -IPERF_VERSION = 2.1.4
> +IPERF_VERSION = 2.1.5
>   IPERF_SITE = http://downloads.sourceforge.net/project/iperf2
>   IPERF_LICENSE = MIT-like
>   IPERF_LICENSE_FILES = COPYING
> 
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-12-12 12:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-06 21:44 [Buildroot] [PATCH v1] package/iperf: bump version to 2.1.5 Peter Seiderer
2021-12-12 12:15 ` Arnout Vandecappelle

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.