diff options
author | gVisor bot <gvisor-bot@google.com> | 2019-08-12 20:40:07 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-08-12 20:40:07 +0000 |
commit | f626b3a1c36d7553dc39cc90364b5fcd317860c9 (patch) | |
tree | ce8b3553e567c9e5015e925db2ab3baeb832e784 /pkg/tcpip/link | |
parent | 30bbd43c6dc26ce67f08b23d6de308bc689f10e4 (diff) | |
parent | eac690e358e25897bb878fdfd1ad7036054162e2 (diff) |
Merge eac690e3 (automated)
Diffstat (limited to 'pkg/tcpip/link')
-rw-r--r-- | pkg/tcpip/link/fdbased/mmap.go | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/pkg/tcpip/link/fdbased/mmap.go b/pkg/tcpip/link/fdbased/mmap.go index fe19c2bc2..2dca173c2 100644 --- a/pkg/tcpip/link/fdbased/mmap.go +++ b/pkg/tcpip/link/fdbased/mmap.go @@ -16,10 +16,8 @@ package fdbased -import "gvisor.dev/gvisor/pkg/tcpip" - // Stubbed out version for non-linux/non-amd64 platforms. -func newPacketMMapDispatcher(fd int, e *endpoint) (linkDispatcher, *tcpip.Error) { +func newPacketMMapDispatcher(fd int, e *endpoint) (linkDispatcher, error) { return nil, nil } |