From owner-svn-ports-all@freebsd.org Fri Aug 18 15:57:24 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 30CB0DE9A88; Fri, 18 Aug 2017 15:57:24 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F05D369AD4; Fri, 18 Aug 2017 15:57:23 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7IFvN2p001896; Fri, 18 Aug 2017 15:57:23 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7IFvNAJ001894; Fri, 18 Aug 2017 15:57:23 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201708181557.v7IFvNAJ001894@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 18 Aug 2017 15:57:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r448243 - in head/benchmarks/iperf: . files X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/benchmarks/iperf: . files X-SVN-Commit-Revision: 448243 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Aug 2017 15:57:24 -0000 Author: sunpoet Date: Fri Aug 18 15:57:22 2017 New Revision: 448243 URL: https://svnweb.freebsd.org/changeset/ports/448243 Log: Add upstream patch to fix 32 bit constant - Bump PORTREVISION for package change Obtained from: https://sourceforge.net/p/iperf2/code/ci/33812baeb46fce55e45b5ebc7da9dbdd8112a386/ Notified by: Robert McMahon MFH: 2017Q3 Added: head/benchmarks/iperf/files/patch-src-Client.cpp (contents, props changed) Modified: head/benchmarks/iperf/Makefile Modified: head/benchmarks/iperf/Makefile ============================================================================== --- head/benchmarks/iperf/Makefile Fri Aug 18 15:53:33 2017 (r448242) +++ head/benchmarks/iperf/Makefile Fri Aug 18 15:57:22 2017 (r448243) @@ -3,6 +3,7 @@ PORTNAME= iperf PORTVERSION= 2.0.10 +PORTREVISION= 1 CATEGORIES= benchmarks MASTER_SITES= SF/${PORTNAME}2 Added: head/benchmarks/iperf/files/patch-src-Client.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/benchmarks/iperf/files/patch-src-Client.cpp Fri Aug 18 15:57:22 2017 (r448243) @@ -0,0 +1,11 @@ +--- src/Client.cpp.orig 2017-08-09 03:54:14 UTC ++++ src/Client.cpp +@@ -680,7 +680,7 @@ void Client::Run( void ) { + + // store datagram ID into buffer + if (isSeqNo64b(mSettings)) { +- mBuf_UDP->id = htonl((reportstruct->packetID & 0xFFFFFFFFFL)); ++ mBuf_UDP->id = htonl((reportstruct->packetID & 0xFFFFFFFFL)); + mBuf_UDP->id2 = htonl((((reportstruct->packetID & 0xFFFFFFFF00000000LL) >> 32) | 0x80000000L)); + } else { + mBuf_UDP->id = htonl(((reportstruct->packetID & 0xFFFFFFFFL) | 0x80000000L));