diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-07-15 22:20:36 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-07-15 22:20:36 +0000 |
commit | c75b9053f6dd6312317c0c5d9ba36f8f00db8e88 (patch) | |
tree | 94f7a049b70d4dd929d1ea74e7df336fb42569ea /pkg/sentry/fs | |
parent | a89a57d437616c9d2463a8d78c37080e4d6edf19 (diff) | |
parent | db653bb34baeba24b8b658eb0985e4c5185344cb (diff) |
Merge release-20200622.1-164-gdb653bb34 (automated)
Diffstat (limited to 'pkg/sentry/fs')
-rw-r--r-- | pkg/sentry/fs/host/socket_iovec.go | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/pkg/sentry/fs/host/socket_iovec.go b/pkg/sentry/fs/host/socket_iovec.go index 5c18dbd5e..905afb50d 100644 --- a/pkg/sentry/fs/host/socket_iovec.go +++ b/pkg/sentry/fs/host/socket_iovec.go @@ -17,15 +17,12 @@ package host import ( "syscall" - "gvisor.dev/gvisor/pkg/abi/linux" + "gvisor.dev/gvisor/pkg/iovec" "gvisor.dev/gvisor/pkg/syserror" ) // LINT.IfChange -// maxIovs is the maximum number of iovecs to pass to the host. -var maxIovs = linux.UIO_MAXIOV - // copyToMulti copies as many bytes from src to dst as possible. func copyToMulti(dst [][]byte, src []byte) { for _, d := range dst { @@ -76,7 +73,7 @@ func buildIovec(bufs [][]byte, maxlen int64, truncate bool) (length int64, iovec } } - if iovsRequired > maxIovs { + if iovsRequired > iovec.MaxIovs { // The kernel will reject our call if we pass this many iovs. // Use a single intermediate buffer instead. b := make([]byte, stopLen) |