diff options
author | Ian Lewis <ianlewis@google.com> | 2021-06-13 19:21:46 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-06-13 19:23:55 -0700 |
commit | 5c9e84622305dc9fd4e9b81eeb7309b8a894f99e (patch) | |
tree | cfa81aaac2356fc205b5f55a701d30ca3c2786bf /pkg/sentry/kernel | |
parent | b92e8ee8d6744d81383f4265faa008ccce894f5e (diff) |
Remove usermem dependency from marshal
Both marshal and usermem are depended on by many packages and a dependency on
marshal can often create circular dependencies. marshal should consider adding
internal dependencies carefully moving forward.
Fixes #6160
PiperOrigin-RevId: 379199882
Diffstat (limited to 'pkg/sentry/kernel')
-rw-r--r-- | pkg/sentry/kernel/pipe/pipe_util.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/sentry/kernel/pipe/pipe_util.go b/pkg/sentry/kernel/pipe/pipe_util.go index 24e467e93..3fa5d1d2f 100644 --- a/pkg/sentry/kernel/pipe/pipe_util.go +++ b/pkg/sentry/kernel/pipe/pipe_util.go @@ -135,7 +135,7 @@ func (p *Pipe) Ioctl(ctx context.Context, io usermem.IO, args arch.SyscallArgume v = math.MaxInt32 // Silently truncate. } // Copy result to userspace. - iocc := primitive.IOCopyContext{ + iocc := usermem.IOCopyContext{ IO: io, Ctx: ctx, Opts: usermem.IOOpts{ |