diff options
| author | Joey Jiao <joeyjiaojg@gmail.com> | 2021-06-01 09:08:19 +0800 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2021-06-02 09:01:34 +0200 |
| commit | 0740de696b19a870c7208bd97f3194988281c282 (patch) | |
| tree | b9440713aa3d1e24b2862402cc4c3d4106d16e8c /sys/linux | |
| parent | 032639db52e37f547ea03f03fce37eb8568eb482 (diff) | |
all: support exclude globs in descriptor
Diffstat (limited to 'sys/linux')
| -rw-r--r-- | sys/linux/sys.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/linux/sys.txt b/sys/linux/sys.txt index ab39e6ded..5a8732085 100644 --- a/sys/linux/sys.txt +++ b/sys/linux/sys.txt @@ -78,7 +78,8 @@ type signalnoptr intptr[0:65] syz_execute_func(text ptr[in, text[target]]) -openat$sysfs(fd const[AT_FDCWD], dir ptr[in, glob["/sys/**/*"]], flags flags[open_flags], mode flags[open_mode]) fd +# Exclude /sys/power/state as reported in https://lkml.org/lkml/2021/5/27/653 +openat$sysfs(fd const[AT_FDCWD], dir ptr[in, glob["/sys/**/*:-/sys/power/state"]], flags flags[open_flags], mode flags[open_mode]) fd open(file ptr[in, filename], flags flags[open_flags], mode flags[open_mode]) fd # Just so that we have something that creates fd_dir resources. |
