Downgrade VFS1-specific FIXME to a NOTE.

PiperOrigin-RevId: 305794509
This commit is contained in:
Jamie Liu 2020-04-09 17:29:43 -07:00 committed by gVisor bot
parent 2a28e3e9c3
commit 257225c34b
1 changed files with 3 additions and 3 deletions

View File

@ -312,9 +312,9 @@ func (d *Dirent) SyncAll(ctx context.Context) {
// There is nothing to sync for a read-only filesystem.
if !d.Inode.MountSource.Flags.ReadOnly {
// FIXME(b/34856369): This should be a mount traversal, not a
// Dirent traversal, because some Inodes that need to be synced
// may no longer be reachable by name (after sys_unlink).
// NOTE(b/34856369): This should be a mount traversal, not a Dirent
// traversal, because some Inodes that need to be synced may no longer
// be reachable by name (after sys_unlink).
//
// Write out metadata, dirty page cached pages, and sync disk/remote
// caches.