Skip to content

Commit 31c2899

Browse files
authored
Merge branch 'golang:master' into h2c-disable-keepalive
2 parents 3c859a7 + 022530c commit 31c2899

File tree

435 files changed

+45351
-24344
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

435 files changed

+45351
-24344
lines changed

bpf/instructions_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ package bpf
66

77
import (
88
"fmt"
9-
"io/ioutil"
9+
"os"
1010
"reflect"
1111
"strconv"
1212
"strings"
@@ -98,7 +98,7 @@ func TestInterop(t *testing.T) {
9898
}
9999
t.Logf("Assembled program is %d instructions long", len(out))
100100

101-
bs, err := ioutil.ReadFile(allInstructionsExpected)
101+
bs, err := os.ReadFile(allInstructionsExpected)
102102
if err != nil {
103103
t.Fatalf("reading %s: %s", allInstructionsExpected, err)
104104
}

bpf/vm_bpf_test.go

+4-16
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import (
1414
"golang.org/x/net/ipv4"
1515
"golang.org/x/net/ipv6"
1616
"golang.org/x/net/nettest"
17+
"golang.org/x/sys/cpu"
1718
)
1819

1920
// A virtualMachine is a BPF virtual machine which can process an
@@ -22,18 +23,6 @@ type virtualMachine interface {
2223
Run(in []byte) (int, error)
2324
}
2425

25-
// canUseOSVM indicates if the OS BPF VM is available on this platform.
26-
func canUseOSVM() bool {
27-
// OS BPF VM can only be used on platforms where x/net/ipv4 supports
28-
// attaching a BPF program to a socket.
29-
switch runtime.GOOS {
30-
case "linux":
31-
return true
32-
}
33-
34-
return false
35-
}
36-
3726
// All BPF tests against both the Go VM and OS VM are assumed to
3827
// be used with a UDP socket. As a result, the entire contents
3928
// of a UDP datagram is sent through the BPF program, but only
@@ -55,11 +44,10 @@ func testVM(t *testing.T, filter []bpf.Instruction) (virtualMachine, func(), err
5544
t: t,
5645
}
5746

58-
// If available, add the OS VM for tests which verify that both the Go
59-
// VM and OS VM have exactly the same output for the same input program
60-
// and packet.
47+
// For linux with a little endian CPU, the Go VM and OS VM have exactly the
48+
// same output for the same input program and packet. Compare both.
6149
done := func() {}
62-
if canUseOSVM() {
50+
if runtime.GOOS == "linux" && !cpu.IsBigEndian {
6351
osVM, osVMDone := testOSVM(t, filter)
6452
done = func() { osVMDone() }
6553
mvm.osVM = osVM

bpf/vm_instructions.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ func jumpIfCommon(cond JumpTest, skipTrue, skipFalse uint8, regA uint32, value u
9494

9595
func loadAbsolute(ins LoadAbsolute, in []byte) (uint32, bool) {
9696
offset := int(ins.Off)
97-
size := int(ins.Size)
97+
size := ins.Size
9898

9999
return loadCommon(in, offset, size)
100100
}
@@ -121,7 +121,7 @@ func loadExtension(ins LoadExtension, in []byte) uint32 {
121121

122122
func loadIndirect(ins LoadIndirect, in []byte, regX uint32) (uint32, bool) {
123123
offset := int(ins.Off) + int(regX)
124-
size := int(ins.Size)
124+
size := ins.Size
125125

126126
return loadCommon(in, offset, size)
127127
}

context/context_test.go

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// license that can be found in the LICENSE file.
44

55
//go:build !go1.7
6-
// +build !go1.7
76

87
package context
98

context/ctxhttp/ctxhttp_test.go

+2-4
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,12 @@
33
// license that can be found in the LICENSE file.
44

55
//go:build !plan9
6-
// +build !plan9
76

87
package ctxhttp
98

109
import (
1110
"context"
1211
"io"
13-
"io/ioutil"
1412
"net/http"
1513
"net/http/httptest"
1614
"testing"
@@ -50,7 +48,7 @@ func TestNoTimeout(t *testing.T) {
5048
t.Fatal(err)
5149
}
5250
defer res.Body.Close()
53-
slurp, err := ioutil.ReadAll(res.Body)
51+
slurp, err := io.ReadAll(res.Body)
5452
if err != nil {
5553
t.Fatal(err)
5654
}
@@ -103,7 +101,7 @@ func TestCancelAfterHangingRequest(t *testing.T) {
103101
done := make(chan struct{})
104102

105103
go func() {
106-
b, err := ioutil.ReadAll(resp.Body)
104+
b, err := io.ReadAll(resp.Body)
107105
if len(b) != 0 || err == nil {
108106
t.Errorf(`Read got (%q, %v); want ("", error)`, b, err)
109107
}

context/go17.go

+2-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// license that can be found in the LICENSE file.
44

55
//go:build go1.7
6-
// +build go1.7
76

87
package context
98

@@ -32,7 +31,7 @@ var DeadlineExceeded = context.DeadlineExceeded
3231
// call cancel as soon as the operations running in this Context complete.
3332
func WithCancel(parent Context) (ctx Context, cancel CancelFunc) {
3433
ctx, f := context.WithCancel(parent)
35-
return ctx, CancelFunc(f)
34+
return ctx, f
3635
}
3736

3837
// WithDeadline returns a copy of the parent context with the deadline adjusted
@@ -46,7 +45,7 @@ func WithCancel(parent Context) (ctx Context, cancel CancelFunc) {
4645
// call cancel as soon as the operations running in this Context complete.
4746
func WithDeadline(parent Context, deadline time.Time) (Context, CancelFunc) {
4847
ctx, f := context.WithDeadline(parent, deadline)
49-
return ctx, CancelFunc(f)
48+
return ctx, f
5049
}
5150

5251
// WithTimeout returns WithDeadline(parent, time.Now().Add(timeout)).

context/go19.go

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// license that can be found in the LICENSE file.
44

55
//go:build go1.9
6-
// +build go1.9
76

87
package context
98

context/pre_go17.go

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// license that can be found in the LICENSE file.
44

55
//go:build !go1.7
6-
// +build !go1.7
76

87
package context
98

context/pre_go19.go

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// license that can be found in the LICENSE file.
44

55
//go:build !go1.9
6-
// +build !go1.9
76

87
package context
98

dict/dict.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ func (c *Client) Define(dict, word string) ([]*Defn, error) {
140140
return def, err
141141
}
142142

143-
// Fields returns the fields in s.
143+
// fields returns the fields in s.
144144
// Fields are space separated unquoted words
145145
// or quoted with single or double quote.
146146
func fields(s string) ([]string, error) {

dns/dnsmessage/example_test.go

+4-12
Original file line numberDiff line numberDiff line change
@@ -12,41 +12,33 @@ import (
1212
"golang.org/x/net/dns/dnsmessage"
1313
)
1414

15-
func mustNewName(name string) dnsmessage.Name {
16-
n, err := dnsmessage.NewName(name)
17-
if err != nil {
18-
panic(err)
19-
}
20-
return n
21-
}
22-
2315
func ExampleParser() {
2416
msg := dnsmessage.Message{
2517
Header: dnsmessage.Header{Response: true, Authoritative: true},
2618
Questions: []dnsmessage.Question{
2719
{
28-
Name: mustNewName("foo.bar.example.com."),
20+
Name: dnsmessage.MustNewName("foo.bar.example.com."),
2921
Type: dnsmessage.TypeA,
3022
Class: dnsmessage.ClassINET,
3123
},
3224
{
33-
Name: mustNewName("bar.example.com."),
25+
Name: dnsmessage.MustNewName("bar.example.com."),
3426
Type: dnsmessage.TypeA,
3527
Class: dnsmessage.ClassINET,
3628
},
3729
},
3830
Answers: []dnsmessage.Resource{
3931
{
4032
Header: dnsmessage.ResourceHeader{
41-
Name: mustNewName("foo.bar.example.com."),
33+
Name: dnsmessage.MustNewName("foo.bar.example.com."),
4234
Type: dnsmessage.TypeA,
4335
Class: dnsmessage.ClassINET,
4436
},
4537
Body: &dnsmessage.AResource{A: [4]byte{127, 0, 0, 1}},
4638
},
4739
{
4840
Header: dnsmessage.ResourceHeader{
49-
Name: mustNewName("bar.example.com."),
41+
Name: dnsmessage.MustNewName("bar.example.com."),
5042
Type: dnsmessage.TypeA,
5143
Class: dnsmessage.ClassINET,
5244
},

0 commit comments

Comments
 (0)