diff options
author | Jamie Liu <jamieliu@google.com> | 2021-06-24 17:59:12 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-06-24 18:03:15 -0700 |
commit | ccd2d607e5b51b0940c2c267305d7b565ba99102 (patch) | |
tree | 50a71d215fac3b8a65aa15dcaff8d143aed95229 /pkg/sentry/fs/host/socket_iovec.go | |
parent | 4470caec4e2fea10f5d116894ca6b3fc9d78789b (diff) |
Internal change.
PiperOrigin-RevId: 381375705
Diffstat (limited to 'pkg/sentry/fs/host/socket_iovec.go')
-rw-r--r-- | pkg/sentry/fs/host/socket_iovec.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/sentry/fs/host/socket_iovec.go b/pkg/sentry/fs/host/socket_iovec.go index 7380d75e7..fd48aff11 100644 --- a/pkg/sentry/fs/host/socket_iovec.go +++ b/pkg/sentry/fs/host/socket_iovec.go @@ -16,7 +16,7 @@ package host import ( "golang.org/x/sys/unix" - "gvisor.dev/gvisor/pkg/iovec" + "gvisor.dev/gvisor/pkg/sentry/hostfd" "gvisor.dev/gvisor/pkg/syserror" ) @@ -72,7 +72,7 @@ func buildIovec(bufs [][]byte, maxlen int64, truncate bool) (length int64, iovec } } - if iovsRequired > iovec.MaxIovs { + if iovsRequired > hostfd.MaxSendRecvMsgIov { // The kernel will reject our call if we pass this many iovs. // Use a single intermediate buffer instead. b := make([]byte, stopLen) |