<feed xmlns='http://www.w3.org/2005/Atom'>
<title>go, branch go1.7rc6</title>
<subtitle>Fork of Go programming language with my patches.</subtitle>
<id>http://git.kilabit.info/go/atom?h=go1.7rc6</id>
<link rel='self' href='http://git.kilabit.info/go/atom?h=go1.7rc6'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/'/>
<updated>2016-08-08T18:42:30Z</updated>
<entry>
<title>go1.7rc6</title>
<updated>2016-08-08T18:42:30Z</updated>
<author>
<name>Chris Broadfoot</name>
<email>cbro@golang.org</email>
</author>
<published>2016-08-08T18:41:16Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=1e933ed7c091bd8e077ffd123234af10a69e3978'/>
<id>urn:sha1:1e933ed7c091bd8e077ffd123234af10a69e3978</id>
<content type='text'>
Change-Id: Ie76b5af0ecc4c64c523110b44483c06e7031237c
Reviewed-on: https://go-review.googlesource.com/25582
Reviewed-by: Chris Broadfoot &lt;cbro@golang.org&gt;
</content>
</entry>
<entry>
<title>all: merge master into release-branch.go1.7</title>
<updated>2016-08-08T18:30:51Z</updated>
<author>
<name>Chris Broadfoot</name>
<email>cbro@golang.org</email>
</author>
<published>2016-08-08T18:28:55Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=78d024a5880a3a1b6e779a6585344b6c20a200ec'/>
<id>urn:sha1:78d024a5880a3a1b6e779a6585344b6c20a200ec</id>
<content type='text'>
7a62274 net/http: make Transport use new connection if over HTTP/2 concurrency limit
219ca60 doc: fix required OS X version inconsistency for binary downloads
26015b9 runtime: make stack 16-byte aligned for external code in _rt0_amd64_linux_lib
9fde86b runtime, syscall: fix kernel gettimeofday ABI change on iOS 10
3a03e87 os: check for waitid returning ENOSYS
1031675 net/http: update bundled http2 for flow control window adjustment fix
da070be syscall: fix Gettimeofday on macOS Sierra
f135c32 runtime: initialize hash algs before typemap

Change-Id: Ie176f3db1e253d75ae8e56b16d3fd9900b37dde3
</content>
</entry>
<entry>
<title>net/http: make Transport use new connection if over HTTP/2 concurrency limit</title>
<updated>2016-08-08T17:53:51Z</updated>
<author>
<name>Brad Fitzpatrick</name>
<email>bradfitz@golang.org</email>
</author>
<published>2016-08-08T17:14:01Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=7a622740655bb5fcbd160eb96887032314842e6e'/>
<id>urn:sha1:7a622740655bb5fcbd160eb96887032314842e6e</id>
<content type='text'>
The Go HTTP/1 client will make as many new TCP connections as the user requests.

The HTTP/2 client tried to have that behavior, but the policy of
whether a connection is re-usable didn't take into account the extra 1
stream counting against SETTINGS_MAX_CONCURRENT_STREAMS so in practice
users were getting errors.

For example, if the server's advertised max concurrent streams is 100
and 200 concurrrent Go HTTP requests ask for a connection at once, all
200 will think they can reuse that TCP connection, but then 100 will
fail later when the number of concurrent streams exceeds 100.

Instead, recognize the "no cached connections" error value in the
shouldRetryRequest method, so those 100 will retry a new connection.

This is the conservative fix for Go 1.7 so users don't get errors, and
to match the HTTP/1 behavior. Issues #13957 and #13774 are the more
involved bugs for Go 1.8.

Updates #16582
Updates #13957

Change-Id: I1f15a7ce60c07a4baebca87675836d6fe03993e8
Reviewed-on: https://go-review.googlesource.com/25580
TryBot-Result: Gobot Gobot &lt;gobot@golang.org&gt;
Reviewed-by: Ian Lance Taylor &lt;iant@golang.org&gt;
Reviewed-by: Chris Broadfoot &lt;cbro@golang.org&gt;
Run-TryBot: Brad Fitzpatrick &lt;bradfitz@golang.org&gt;
</content>
</entry>
<entry>
<title>doc: fix required OS X version inconsistency for binary downloads</title>
<updated>2016-08-06T19:30:57Z</updated>
<author>
<name>Brad Fitzpatrick</name>
<email>bradfitz@golang.org</email>
</author>
<published>2016-08-06T17:12:03Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=219ca602ab3f9d7d857bc1640e2b9e01475cdc3d'/>
<id>urn:sha1:219ca602ab3f9d7d857bc1640e2b9e01475cdc3d</id>
<content type='text'>
Updates #16625

Change-Id: Icac6705828bd9b29379596ba64b34d922b9002c3
Reviewed-on: https://go-review.googlesource.com/25548
Reviewed-by: Ian Lance Taylor &lt;iant@golang.org&gt;
</content>
</entry>
<entry>
<title>runtime: make stack 16-byte aligned for external code in _rt0_amd64_linux_lib</title>
<updated>2016-08-05T23:56:07Z</updated>
<author>
<name>Shenghou Ma</name>
<email>minux@golang.org</email>
</author>
<published>2016-08-05T23:16:07Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=26015b95634de49bc5b4ac998e8a2d1fcb8eca79'/>
<id>urn:sha1:26015b95634de49bc5b4ac998e8a2d1fcb8eca79</id>
<content type='text'>
Fixes #16618.

Change-Id: Iffada12e8672bbdbcf2e787782c497e2c45701b1
Reviewed-on: https://go-review.googlesource.com/25550
Run-TryBot: Minux Ma &lt;minux@golang.org&gt;
Reviewed-by: Arjan Van De Ven &lt;arjan.van.de.ven@intel.com&gt;
Reviewed-by: Ian Lance Taylor &lt;iant@golang.org&gt;
TryBot-Result: Gobot Gobot &lt;gobot@golang.org&gt;
</content>
</entry>
<entry>
<title>runtime, syscall: fix kernel gettimeofday ABI change on iOS 10</title>
<updated>2016-08-05T20:47:34Z</updated>
<author>
<name>Shenghou Ma</name>
<email>minux@golang.org</email>
</author>
<published>2016-08-05T01:34:06Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=9fde86b0124b8c75000eb5d05887eff922a24566'/>
<id>urn:sha1:9fde86b0124b8c75000eb5d05887eff922a24566</id>
<content type='text'>
Fixes #16570 on iOS.

Thanks Daniel Burhans for reporting the bug and testing the fix.

Change-Id: I43ae7b78c8f85a131ed3d93ea59da9f32a02cd8f
Reviewed-on: https://go-review.googlesource.com/25481
Reviewed-by: Ian Lance Taylor &lt;iant@golang.org&gt;
Reviewed-by: Brad Fitzpatrick &lt;bradfitz@golang.org&gt;
</content>
</entry>
<entry>
<title>os: check for waitid returning ENOSYS</title>
<updated>2016-08-05T19:48:42Z</updated>
<author>
<name>Ian Lance Taylor</name>
<email>iant@golang.org</email>
</author>
<published>2016-08-05T02:53:52Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=3a03e877cc03c1fd155055e60a3f1f9cb8bda8d0'/>
<id>urn:sha1:3a03e877cc03c1fd155055e60a3f1f9cb8bda8d0</id>
<content type='text'>
Reportedly waitid is not available for Ubuntu on Windows.

Fixes #16610.

Change-Id: Ia724f45a85c6d3467b847da06d8c65d280781dcd
Reviewed-on: https://go-review.googlesource.com/25507
Run-TryBot: Ian Lance Taylor &lt;iant@golang.org&gt;
TryBot-Result: Gobot Gobot &lt;gobot@golang.org&gt;
Reviewed-by: Brad Fitzpatrick &lt;bradfitz@golang.org&gt;
</content>
</entry>
<entry>
<title>net/http: update bundled http2 for flow control window adjustment fix</title>
<updated>2016-08-05T17:08:52Z</updated>
<author>
<name>Brad Fitzpatrick</name>
<email>bradfitz@golang.org</email>
</author>
<published>2016-08-05T16:42:31Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=10316757cec3c2744ea61088e0fc905cfeb28fb2'/>
<id>urn:sha1:10316757cec3c2744ea61088e0fc905cfeb28fb2</id>
<content type='text'>
Updates bundled http2 to x/net/http2 git rev 075e191 for:

   http2: adjust flow control on open streams when processing SETTINGS
   https://golang.org/cl/25508

Fixes #16612

Change-Id: Ib0513201bff44ab747a574ae6894479325c105d2
Reviewed-on: https://go-review.googlesource.com/25543
Run-TryBot: Chris Broadfoot &lt;cbro@golang.org&gt;
Reviewed-by: Ian Lance Taylor &lt;iant@golang.org&gt;
Reviewed-by: Chris Broadfoot &lt;cbro@golang.org&gt;
TryBot-Result: Gobot Gobot &lt;gobot@golang.org&gt;
</content>
</entry>
<entry>
<title>syscall: fix Gettimeofday on macOS Sierra</title>
<updated>2016-08-04T21:42:44Z</updated>
<author>
<name>Brad Fitzpatrick</name>
<email>bradfitz@golang.org</email>
</author>
<published>2016-08-04T19:21:05Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=da070bed19fb23a8dd1b9f974c7fdf1f247fdba0'/>
<id>urn:sha1:da070bed19fb23a8dd1b9f974c7fdf1f247fdba0</id>
<content type='text'>
Fixes #16606

Change-Id: I57465061b90e901293cd8b6ef756d6aa84ebd4a3
Reviewed-on: https://go-review.googlesource.com/25495
Reviewed-by: Quentin Smith &lt;quentin@golang.org&gt;
Reviewed-by: Ian Lance Taylor &lt;iant@golang.org&gt;
Run-TryBot: Quentin Smith &lt;quentin@golang.org&gt;
TryBot-Result: Gobot Gobot &lt;gobot@golang.org&gt;
</content>
</entry>
<entry>
<title>runtime: initialize hash algs before typemap</title>
<updated>2016-08-04T17:39:05Z</updated>
<author>
<name>David Crawshaw</name>
<email>crawshaw@golang.org</email>
</author>
<published>2016-08-04T17:09:29Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=f135c326402aaa757aa96aad283a91873d4ae124'/>
<id>urn:sha1:f135c326402aaa757aa96aad283a91873d4ae124</id>
<content type='text'>
When compiling with -buildmode=shared, a map[int32]*_type is created for
each extra module mapping duplicate types back to a canonical object.
This is done in the function typelinksinit, which is called before the
init function that sets up the hash functions for the map
implementation. The result is typemap becomes unusable after
runtime initialization.

The fix in this CL is to move algorithm init before typelinksinit in
the runtime setup process. (For 1.8, we may want to turn typemap into
a sorted slice of types and use binary search.)

Manually tested on GOOS=linux with:

	GOHOSTARCH=386 GOARCH=386 ./make.bash &amp;&amp; \
		go install -buildmode=shared std &amp;&amp; \
		cd ../test &amp;&amp; \
		go run run.go -linkshared

Fixes #16590

Change-Id: Idc08c50cc70d20028276fbf564509d2cd5405210
Reviewed-on: https://go-review.googlesource.com/25469
Run-TryBot: David Crawshaw &lt;crawshaw@golang.org&gt;
Reviewed-by: Keith Randall &lt;khr@golang.org&gt;
</content>
</entry>
</feed>
