1# Copyright 2022 The ChromiumOS Authors 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5# Policy file for the vhost-user transport over a socket. 6 7# FIONBIO: for setting non-blocking mode over the socket. 8# TCGETS/TCSETS: used on FD 0, probably for serial. 9# b/239779171: try moving this to the serial device once we can extend ioctls across policy files. 10ioctl: arg1 == FIONBIO || arg1 == TCGETS || arg1 == TCSETS 11# For accepting a client connection over the socket. 12accept4: 1 13