diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-04-10 00:41:49 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-04-10 00:41:49 +0000 |
commit | 3885a08fa592810679aa96a6911ee61e483d4c3c (patch) | |
tree | 22ea9284eba301966fff4328362068a8051ff23d /pkg | |
parent | fb11826bb693b55cb1908ef635a5fe3e4bfe1f93 (diff) | |
parent | 257225c34b81ff0d0b5ce8ae333f5905f9e86cce (diff) |
Merge release-20200323.0-112-g257225c (automated)
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. |