diff options
author | Michael Pratt <mpratt@google.com> | 2020-06-17 12:32:59 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-06-17 12:34:33 -0700 |
commit | 6d806ee7198422973a2e4efa9b539de7792b933f (patch) | |
tree | 460a7f620751543e0470977979068b70a1618910 /pkg/sentry/fsimpl/host | |
parent | e5d97cbcc1e64185b8fab1cf563c8754edd2e52e (diff) |
Remove various uses of 'blacklist'
Updates #2972
PiperOrigin-RevId: 316942245
Diffstat (limited to 'pkg/sentry/fsimpl/host')
-rw-r--r-- | pkg/sentry/fsimpl/host/tty.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/sentry/fsimpl/host/tty.go b/pkg/sentry/fsimpl/host/tty.go index 0fbc543b1..4ee9270cc 100644 --- a/pkg/sentry/fsimpl/host/tty.go +++ b/pkg/sentry/fsimpl/host/tty.go @@ -326,9 +326,9 @@ func (t *TTYFileDescription) checkChange(ctx context.Context, sig linux.Signal) task := kernel.TaskFromContext(ctx) if task == nil { // No task? Linux does not have an analog for this case, but - // tty_check_change is more of a blacklist of cases than a - // whitelist, and is surprisingly permissive. Allowing the - // change seems most appropriate. + // tty_check_change only blocks specific cases and is + // surprisingly permissive. Allowing the change seems + // appropriate. return nil } |