diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2024-09-16 16:28:00 +0300 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2024-09-18 16:55:40 +0300 |
commit | 6ff2c290147a65027fb04b154a52723a6efabced (patch) | |
tree | 6cc556179f3fd8efbd4455862a01c1de337df914 /MAINTAINERS | |
parent | 4a39ac5b7d62679c07a3e3d12b0f6982377d8a7d (diff) | |
download | linux-6ff2c290147a65027fb04b154a52723a6efabced.tar.xz |
MAINTAINERS: make vDSO getrandom matches more generic
Rather than specifying matches for every architecture, what we actually
want is an extglob-like thing, such as:
F: **/vdso/*getrandom*
Unfortunately, this isn't possible, but get_maintainers.pl does support
a "N:" directive that uses regexes, so just encode that extglob
statement as an ordinary regex.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'MAINTAINERS')
-rw-r--r-- | MAINTAINERS | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/MAINTAINERS b/MAINTAINERS index 8a76c256229c..cba8bfedeadd 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -19217,10 +19217,7 @@ F: drivers/char/random.c F: include/linux/random.h F: include/uapi/linux/random.h F: drivers/virt/vmgenid.c -F: include/vdso/getrandom.h -F: lib/vdso/getrandom.c -F: arch/x86/entry/vdso/vgetrandom* -F: arch/x86/include/asm/vdso/getrandom* +N: ^.*/vdso/[^/]*getrandom[^/]+$ RAPIDIO SUBSYSTEM M: Matt Porter <mporter@kernel.crashing.org> |