aboutsummaryrefslogtreecommitdiffstats
path: root/sys/linux/dev_ashmem.txt
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2022-04-24 11:40:38 +0200
committerDmitry Vyukov <dvyukov@google.com>2022-04-25 11:31:49 +0200
commit7d6ce61334a1437f59d058959ef93071446706f8 (patch)
tree680e8c1c501d6c5763eb14f6a19d496122b5ff3c /sys/linux/dev_ashmem.txt
parentf2db0910291c5e7619e0c6e6994d6a1740da8be5 (diff)
sys/linux: remove ashmem
It was deprecated and removed from the kernel: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=721412ed3d819e767cac2b06646bf03aa158aaec
Diffstat (limited to 'sys/linux/dev_ashmem.txt')
-rw-r--r--sys/linux/dev_ashmem.txt24
1 files changed, 0 insertions, 24 deletions
diff --git a/sys/linux/dev_ashmem.txt b/sys/linux/dev_ashmem.txt
deleted file mode 100644
index 8cec77506..000000000
--- a/sys/linux/dev_ashmem.txt
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 2017 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 <asm/ioctl.h>
-include <uapi/linux/fcntl.h>
-include <drivers/staging/android/uapi/ashmem.h>
-
-resource fd_ashmem[fd]
-
-openat$ashmem(fd const[AT_FDCWD], file ptr[in, string["/dev/ashmem"]], flags flags[open_flags], mode const[0]) fd_ashmem
-
-ioctl$ASHMEM_SET_NAME(fd fd_ashmem, cmd const[ASHMEM_SET_NAME], arg ptr[in, string])
-ioctl$ASHMEM_GET_NAME(fd fd_ashmem, cmd const[ASHMEM_GET_NAME], arg ptr[out, array[int8]])
-ioctl$ASHMEM_SET_SIZE(fd fd_ashmem, cmd const[ASHMEM_SET_SIZE], arg intptr)
-ioctl$ASHMEM_GET_SIZE(fd fd_ashmem, cmd const[ASHMEM_GET_SIZE], arg const[0])
-ioctl$ASHMEM_SET_PROT_MASK(fd fd_ashmem, cmd const[ASHMEM_SET_PROT_MASK], arg ptr[in, ashmem_pin])
-ioctl$ASHMEM_GET_PROT_MASK(fd fd_ashmem, cmd const[ASHMEM_GET_PROT_MASK], arg ptr[out, ashmem_pin])
-ioctl$ASHMEM_GET_PIN_STATUS(fd fd_ashmem, cmd const[ASHMEM_GET_PIN_STATUS], arg const[0])
-ioctl$ASHMEM_PURGE_ALL_CACHES(fd fd_ashmem, cmd const[ASHMEM_PURGE_ALL_CACHES], arg const[0])
-
-ashmem_pin {
- offset int32
- len int32
-}