From c88c96bf8bda355b5e53776116e8abe5ecbd5660 Mon Sep 17 00:00:00 2001 From: Andrea Cervesato Date: Thu, 12 Dec 2024 15:06:19 +0100 Subject: [PATCH] doc: update blacklist removing untested syscalls getmsg, getpmsg, putmsg, putpmsg are UNIMPLEMENTED(2), put them to blacklist. In this way they aren't shown in "Untested syscalls" table, which is supposed to be only for tested syscalls. Fixes: 7248e5c5f7 ("doc: update syscalls statistics") Signed-off-by: Petr Vorel --- doc/conf.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/conf.py b/doc/conf.py index f648ee2d12d..c6a84ea5810 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -104,8 +104,12 @@ def generate_syscalls_stats(_): 'cachectl', 'create_module', 'get_kernel_syms', + 'getmsg', + 'getpmsg', 'mq_getsetattr', 'nfsservctl', + 'putmsg', + 'putpmsg', 'query_module', 'reserved177', 'reserved193',