diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-06-11 15:36:43 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-06-11 15:36:43 -0700 |
commit | 4f111b6384209e2ed2d1cace7684ec537b24a57d (patch) | |
tree | d8db372ec2e52d973daecbdc6bd2df46fffbdc82 /pkg | |
parent | d58d57606a460d49b8870d2c48cb75f662f65fda (diff) | |
parent | cbfb537eef7c531b596c3aecd947ee6920bea2d7 (diff) |
Merge pull request #2863 from lubinszARM:pr_sndbuf
PiperOrigin-RevId: 315991648
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/sentry/fs/host/socket.go | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/pkg/sentry/fs/host/socket.go b/pkg/sentry/fs/host/socket.go index b6e94583e..cfb089e43 100644 --- a/pkg/sentry/fs/host/socket.go +++ b/pkg/sentry/fs/host/socket.go @@ -22,7 +22,6 @@ import ( "gvisor.dev/gvisor/pkg/context" "gvisor.dev/gvisor/pkg/fd" "gvisor.dev/gvisor/pkg/fdnotifier" - "gvisor.dev/gvisor/pkg/log" "gvisor.dev/gvisor/pkg/refs" "gvisor.dev/gvisor/pkg/sentry/fs" "gvisor.dev/gvisor/pkg/sentry/socket/control" @@ -39,11 +38,6 @@ import ( // LINT.IfChange -// maxSendBufferSize is the maximum host send buffer size allowed for endpoint. -// -// N.B. 8MB is the default maximum on Linux (2 * sysctl_wmem_max). -const maxSendBufferSize = 8 << 20 - // ConnectedEndpoint is a host FD backed implementation of // transport.ConnectedEndpoint and transport.Receiver. // @@ -103,10 +97,6 @@ func (c *ConnectedEndpoint) init() *syserr.Error { if err != nil { return syserr.FromError(err) } - if sndbuf > maxSendBufferSize { - log.Warningf("Socket send buffer too large: %d", sndbuf) - return syserr.ErrInvalidEndpointState - } c.stype = linux.SockType(stype) c.sndbuf = int64(sndbuf) |