diff options
author | gVisor bot <gvisor-bot@google.com> | 2019-10-08 01:20:27 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-10-08 01:20:27 +0000 |
commit | a91b819e136c187caf4004d3dc8002ccb2ed51e7 (patch) | |
tree | 605c3c3c70c747dc0bdb3018c6963c2d3b0ef349 /pkg/sentry/fs | |
parent | dbcfde4c5e84490202b690769f982ada179c003e (diff) | |
parent | 1de0cf3563502c1460964fc2fc9dca1ee447449a (diff) |
Merge release-20190806.1-246-g1de0cf3 (automated)
Diffstat (limited to 'pkg/sentry/fs')
-rw-r--r-- | pkg/sentry/fs/tmpfs/tmpfs.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/sentry/fs/tmpfs/tmpfs.go b/pkg/sentry/fs/tmpfs/tmpfs.go index 159fb7c08..69089c8a8 100644 --- a/pkg/sentry/fs/tmpfs/tmpfs.go +++ b/pkg/sentry/fs/tmpfs/tmpfs.go @@ -324,7 +324,7 @@ type Fifo struct { // NewFifo creates a new named pipe. func NewFifo(ctx context.Context, owner fs.FileOwner, perms fs.FilePermissions, msrc *fs.MountSource) *fs.Inode { // First create a pipe. - p := pipe.NewPipe(ctx, true /* isNamed */, pipe.DefaultPipeSize, usermem.PageSize) + p := pipe.NewPipe(true /* isNamed */, pipe.DefaultPipeSize, usermem.PageSize) // Build pipe InodeOperations. iops := pipe.NewInodeOperations(ctx, perms, p) |