summaryrefslogtreecommitdiffhomepage
path: root/pkg/p9/client.go
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2020-02-06 18:10:38 +0000
committergVisor bot <gvisor-bot@google.com>2020-02-06 18:10:38 +0000
commit1daf3bb5f4c39797f9ce90f59356a61f1b502305 (patch)
tree633d29c77c972e1fa141699f88e2bdea84041f9f /pkg/p9/client.go
parent971856a97882eee6fc216b12e8e20bba0f14c231 (diff)
parent5ff780891e229dbde00d9a37c2f8b6681e592fdb (diff)
Merge release-20200127.0-86-g5ff7808 (automated)
Diffstat (limited to 'pkg/p9/client.go')
-rw-r--r--pkg/p9/client.go9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkg/p9/client.go b/pkg/p9/client.go
index 4045e41fa..a6f493b82 100644
--- a/pkg/p9/client.go
+++ b/pkg/p9/client.go
@@ -22,6 +22,7 @@ import (
"golang.org/x/sys/unix"
"gvisor.dev/gvisor/pkg/flipcall"
"gvisor.dev/gvisor/pkg/log"
+ "gvisor.dev/gvisor/pkg/pool"
"gvisor.dev/gvisor/pkg/sync"
"gvisor.dev/gvisor/pkg/unet"
)
@@ -74,10 +75,10 @@ type Client struct {
socket *unet.Socket
// tagPool is the collection of available tags.
- tagPool pool
+ tagPool pool.Pool
// fidPool is the collection of available fids.
- fidPool pool
+ fidPool pool.Pool
// messageSize is the maximum total size of a message.
messageSize uint32
@@ -155,8 +156,8 @@ func NewClient(socket *unet.Socket, messageSize uint32, version string) (*Client
}
c := &Client{
socket: socket,
- tagPool: pool{start: 1, limit: uint64(NoTag)},
- fidPool: pool{start: 1, limit: uint64(NoFID)},
+ tagPool: pool.Pool{Start: 1, Limit: uint64(NoTag)},
+ fidPool: pool.Pool{Start: 1, Limit: uint64(NoFID)},
pending: make(map[Tag]*response),
recvr: make(chan bool, 1),
messageSize: messageSize,