diff options
Diffstat (limited to 'pkg/sentry/devices/quotedev')
-rw-r--r-- | pkg/sentry/devices/quotedev/BUILD | 2 | ||||
-rw-r--r-- | pkg/sentry/devices/quotedev/quotedev.go | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/pkg/sentry/devices/quotedev/BUILD b/pkg/sentry/devices/quotedev/BUILD index d09214e3e..ee946610a 100644 --- a/pkg/sentry/devices/quotedev/BUILD +++ b/pkg/sentry/devices/quotedev/BUILD @@ -9,8 +9,8 @@ go_library( deps = [ "//pkg/abi/linux", "//pkg/context", + "//pkg/errors/linuxerr", "//pkg/sentry/fsimpl/devtmpfs", "//pkg/sentry/vfs", - "//pkg/syserror", ], ) diff --git a/pkg/sentry/devices/quotedev/quotedev.go b/pkg/sentry/devices/quotedev/quotedev.go index 6114cb724..140856a4a 100644 --- a/pkg/sentry/devices/quotedev/quotedev.go +++ b/pkg/sentry/devices/quotedev/quotedev.go @@ -18,9 +18,9 @@ package quotedev import ( "gvisor.dev/gvisor/pkg/abi/linux" "gvisor.dev/gvisor/pkg/context" + "gvisor.dev/gvisor/pkg/errors/linuxerr" "gvisor.dev/gvisor/pkg/sentry/fsimpl/devtmpfs" "gvisor.dev/gvisor/pkg/sentry/vfs" - "gvisor.dev/gvisor/pkg/syserror" ) const ( @@ -35,7 +35,7 @@ type quoteDevice struct{} // Open implements vfs.Device.Open. // TODO(b/157161182): Add support for attestation ioctls. func (quoteDevice) Open(ctx context.Context, mnt *vfs.Mount, vfsd *vfs.Dentry, opts vfs.OpenOptions) (*vfs.FileDescription, error) { - return nil, syserror.EIO + return nil, linuxerr.EIO } // Register registers all devices implemented by this package in vfsObj. |