aboutsummaryrefslogtreecommitdiffstats
path: root/sys/linux/dev_nbd.txt.const
Commit message (Collapse)AuthorAgeFilesLines
* sys/linux: fix error defined attributesLin Ma2025-04-071-0/+1
| | | | | | | | | | | | Definitions for attribute `NBD_ATTR_SOCKETS`, `NL80211_ATTR_BSS_SELECT`, `NL80211_ATTR_PEER_MEASUREMENTS`, and `NL80211_ATTR_SCHED_SCAN_MATCH` have some errors. Fix them carefully, Check related parse functions: nbd_genl_reconfigure, parse_bss_select, nl80211_pmsr_start and nl80211_parse_sched_scan for details. Signed-off-by: Lin Ma <linma@zju.edu.cn>
* pkg/compiler: add consts to all files that mention themDmitry Vyukov2024-11-131-0/+9
| | | | | | | | | 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: result of running syz-declextractPimyn Girgis2024-09-031-9/+0
| | | | Added the result of running syz-declextract. Added auto-manual.txt containing necessary manually written descriptions.
* sys/linux: fix errorsYu Hao2022-09-281-0/+1
|
* sys/linux: fix bugs pointed out by syz-checkDmitry Vyukov2022-01-131-0/+1
| | | | Update #590
* sys/linux: switch to the new .const formatDmitry Vyukov2020-08-131-0/+40
This reduces number of const files/lines from 1288/96599 to 158/11603. Const files are generated on next-20200813. Update #1983