[LTP] [PATCH 2/2] doc: Add URL to the sources in syscalls list
Petr Vorel
pvorel@suse.cz
Fri Nov 15 12:04:10 CET 2024
Hi all,
> Hi Petr,
> On 11/15/24 04:39, Petr Vorel wrote:
> > + # Or syscalls are here to get their folder.
> > + white_list = {
> > + 'epoll_pwait2': 'epoll_pwait',
> > + 'fadvise64': 'fadvise',
> > + 'fanotify_init': 'fanotify',
> > + 'fanotify_mark': 'fanotify',
> > + 'futex_wait': 'futex',
> > + 'futex_waitv': 'futex',
> > + 'futex_wake': 'futex',
> > + 'getdents64': 'getdents',
> > + 'inotify_add_watch': 'inotify',
> > + 'inotify_rm_watch': 'inotify',
> > + 'inotify_init1': 'inotify',
> > + 'io_uring_enter': 'io_uring',
> > + 'io_uring_register': 'io_uring',
> > + 'io_uring_setup': 'io_uring',
> > + 'ioprio_get': 'ioprio',
> > + 'ioprio_set': 'ioprio',
> > + 'landlock_add_rule': 'landlock',
> > + 'landlock_create_ruleset': 'landlock',
> > + 'landlock_restrict_self': 'landlock',
> > + 'lsetxattr': 'lgetxattr', # llistxattr, lremovexattr
> > + 'newfstatat': 'fstatat',
> > + 'pkey_alloc': 'pkeys',
> > + 'pkey_free': 'pkeys',
> > + 'pkey_mprotect': 'pkeys',
> > + 'pread64': 'preadv',
> > + 'prlimit64': 'getrlimit',
> > + 'process_vm_readv': 'cma',
> > + 'process_vm_writev': 'cma',
> > + 'pselect6': 'select',
> > + 'pwrite64': 'pwrite',
> > + 'quotactl_fd': 'quotactl',
> > + 'rt_sigpending': 'sigpending',
> > + 'semtimedop': 'ipc/semop',
> > + 'sethostname': 'setdomainname',
> > + 'timerfd_gettime': 'timerfd',
> > + 'timerfd_settime': 'timerfd',
> > + 'timerfd_create': 'timerfd',
> > + }
> The problem with this approach and the reason why I didn't use it, is that
> if you change the testing folder, you need to update the docs generator
> script. But I also see the goal, so probably this is the only approach we
> should follow.
Also, my first version was to match only syscalls, which are the folder with the
same name as the syscall. If we prefer this is better, I can post this version.
@Andrea @Cyril: Other think I would like to have our metadata doc somehow
generated for the master. But that would require to have installed asciidoctor
on container, that will not work for sphinx. Also our metadata syntax is somehow
LTP specific (at least /*\ starter) and having doc on 2 places
(readthedocs https://linux-test-project.readthedocs.io/ and static metadata doc
file uploaded to releases (e.g.
https://github.com/linux-test-project/ltp/releases/download/20240930/metadata.20240930.html)
is not optimal. I also like python scripting more than perl (used for metadata).
Other option would be to drop metadata syntax and transform docs to sphinx
format. But that would require a lot of scripting, we would not want to do it manually.
Also, doc added to releases vs. online doc:
* Should we add generated readthedocs to releases? One could have docs forever.
* Should we have also the latest release doc in online readthedocs? Or even for
* all releases? ATM we have just master.
Kind regards,
Petr
> Andrea
More information about the ltp
mailing list