From 9f528bbcc8a3d94c9be27a0eecc12022d4b3bfaa Mon Sep 17 00:00:00 2001 From: Andrey Konovalov Date: Fri, 1 Feb 2019 01:08:17 +0100 Subject: sys/linux: rename dev descriptions files Prefix file names of descriptions of /dev/* files with dev_. And give some of them more appropriate names. --- sys/linux/dev_userio.txt | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 sys/linux/dev_userio.txt (limited to 'sys/linux/dev_userio.txt') diff --git a/sys/linux/dev_userio.txt b/sys/linux/dev_userio.txt new file mode 100644 index 000000000..d7f17e572 --- /dev/null +++ b/sys/linux/dev_userio.txt @@ -0,0 +1,18 @@ +# Copyright 2018 syzkaller project authors. All rights reserved. +# Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. + +include +include + +resource fd_userio[fd] + +openat$userio(fd const[AT_FDCWD], file ptr[in, string["/dev/userio"]], flags flags[open_flags], mode const[0]) fd_userio + +write$USERIO_CMD_REGISTER(fd fd_userio, data ptr[in, userio_cmd[USERIO_CMD_REGISTER]], len len[data]) +write$USERIO_CMD_SET_PORT_TYPE(fd fd_userio, data ptr[in, userio_cmd[USERIO_CMD_SET_PORT_TYPE]], len len[data]) +write$USERIO_CMD_SEND_INTERRUPT(fd fd_userio, data ptr[in, userio_cmd[USERIO_CMD_SEND_INTERRUPT]], len len[data]) + +type userio_cmd[TYPE] { + type const[TYPE, int8] + data int8 +} -- cgit mrf-deployment