Redirect TODOs to more specific issues

Closes #1623

PiperOrigin-RevId: 315681993
This commit is contained in:
Fabricio Voznika 2020-06-10 06:50:10 -07:00 committed by gVisor bot
parent 67565078bb
commit 203dc121f6
2 changed files with 2 additions and 2 deletions

View File

@ -75,7 +75,7 @@ var _ fs.FileOperations = (*byteReader)(nil)
// newByteReaderFile creates a fake file to read data from.
//
// TODO(gvisor.dev/issue/1623): Convert to VFS2.
// TODO(gvisor.dev/issue/2921): Convert to VFS2.
func newByteReaderFile(ctx context.Context, data []byte) *fs.File {
// Create a fake inode.
inode := fs.NewInode(

View File

@ -168,7 +168,7 @@ func Fcntl(t *kernel.Task, args arch.SyscallArguments) (uintptr, *kernel.Syscall
err := tmpfs.AddSeals(file, args[2].Uint())
return 0, nil, err
default:
// TODO(gvisor.dev/issue/1623): Everything else is not yet supported.
// TODO(gvisor.dev/issue/2920): Everything else is not yet supported.
return 0, nil, syserror.EINVAL
}
}