aboutsummaryrefslogtreecommitdiffstats
path: root/sys/linux/socket_netlink_route.txt.const
Commit message (Collapse)AuthorAgeFilesLines
* pkg/compiler: add consts to all files that mention themDmitry Vyukov2024-11-131-0/+2
| | | | | | | | | We already do this in most cases except for template structs (nlattr notably). Add consts that are used in template structs to all files that use them. This helps to avoid flakiness, and allows to replace descriptions files with other descriptions files without regenerating all const files. This also fixes check for presence of descriptions for sys/linux/auto.txt.json.
* sys/linux: regenerate automatic descriptionsDmitry Vyukov2024-11-111-0/+190
|
* sys/linux: add automatic_helper attribute to some syscalls and run ↵Pimyn Girgis2024-10-091-4/+0
| | | | syz-declextract
* sys/linux: remove auto-manual descriptions and run syz-declextractPimyn Girgis2024-09-091-21/+3
|
* sys/linux: result of running syz-declextractPimyn Girgis2024-09-031-114/+0
| | | | Added the result of running syz-declextract. Added auto-manual.txt containing necessary manually written descriptions.
* sys/linux: result of running syz-declextract and syz-env make extract on the ↵Pimyn Girgis2024-08-221-54/+0
| | | | default config of the Linux kernel
* sys/linux: update constsDmitry Vyukov2022-06-021-1/+1
| | | | | Update const files on the latest upstream commit d1dc87763f406d4e67caf16dbe438a5647692395
* sys/linux: fix bugs pointed out by syz-checkDmitry Vyukov2022-01-131-0/+33
| | | | Update #590
* sys/linux: support sticky fdb entriesPaul Chaignon2022-01-031-0/+1
| | | | | | | The new neighbour flag NTF_STICKY was added upstream in commit v4.20-rc1~14^2~392. Signed-off-by: Paul Chaignon <paul@isovalent.com>
* sys/linux: describe NDA_FLAGS_EXT netlink attributePaul Chaignon2022-01-031-0/+2
| | | | | | | | The NDA_FLAGS_EXT netlink attribute was added upstream in commit v5.16-rc1~159^2~222^2~1, to allow for new neighbor flags. The only such flag currently supported is NTF_EXT_MANAGED. Signed-off-by: Paul Chaignon <paul@isovalent.com>
* sys/linux: fix and regenerate consts on the latest kenrelDmitry Vyukov2021-11-121-1/+1
| | | | Fix missed includes and renamed constants and regenerate const files on 89d714ab60.
* sys/linux: describe creation of batadv devicesDmitry Vyukov2021-10-211-0/+1
| | | | See: https://elixir.bootlin.com/linux/v5.15-rc6/source/include/uapi/linux/batman_adv.h#L692
* sys/linux: update constsZi Fan Tan2021-07-281-6/+0
| | | | | | | Update dev_vhci consts as they were updated to use inclusive language in commit 3d4f9c00492b and 6397729bb74d. Remove caif_hsi consts as they were removed in commit ca75bcf0a83b. Remove raw driver ioctls as they were removed in commit 603e4922f1c8.
* sys/linux: add lwtunnel_encap_seg6 descriptionIoana-Ruxandra Stăncioi2020-08-191-0/+4
| | | | | Uncommented because the kernel fixed the seg6_iptunnel.h uapi header https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=88fab21c691bb1ff164e540735237a385e3afeaf
* sys/linux: switch to the new .const formatDmitry Vyukov2020-08-131-0/+662
This reduces number of const files/lines from 1288/96599 to 158/11603. Const files are generated on next-20200813. Update #1983