diff options
author | Jamie Liu <jamieliu@google.com> | 2020-04-09 17:29:43 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-04-09 17:30:51 -0700 |
commit | 257225c34b81ff0d0b5ce8ae333f5905f9e86cce (patch) | |
tree | 2f0c6277cceb451301e3c1c003d7384a852c0a2c /pkg | |
parent | 2a28e3e9c3463cf68cfa639425cfdcc298ad357a (diff) |
Downgrade VFS1-specific FIXME to a NOTE.
PiperOrigin-RevId: 305794509
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/sentry/fs/dirent.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/sentry/fs/dirent.go b/pkg/sentry/fs/dirent.go index 0266a5287..65be12175 100644 --- a/pkg/sentry/fs/dirent.go +++ b/pkg/sentry/fs/dirent.go @@ -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. |