| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | sys: split socket.txt into multiple files based on socket type | Andrey Konovalov | 2017-02-09 | 1 | -71/+0 |
| | | | | | | This just moves syscall descriptions and fixes up includes without any semantic changes. | ||||
| * | sys: specify resources in text descriptions | Dmitry Vyukov | 2016-08-27 | 1 | -16/+18 |
| | | | | | | | Currently to add a new resource one needs to modify multiple source files, which complicates descirption of new system calls. Move resource descriptions from source code to text desciptions. | ||||
| * | overhaul syscall description generation process | Dmitry Vyukov | 2016-08-26 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | This splits generation process into two phases: 1. Extract values of constants from linux kernel sources. 2. Generate Go code. Constant values are checked in. The advantage is that the second phase is now completely independent from linux source files, kernel version, presence of headers for particular drivers, etc. This allows to change what Go code we generate any time without access to all kernel headers (which in future won't be limited to only upstream headers). Constant extraction process does require proper kernel sources, but this can be done only once by the person who added the driver and has access to the required sources. Then the constant values are checked in for others to use. Consant extraction process is per-file/per-arch. That is, if I am adding a driver that is not present upstream and that works only on a single arch, I will check in constants only for that driver and for that arch. | ||||
| * | sys: add removed defines to fix generate in linux-next | Lorenzo Stoakes | 2016-03-11 | 1 | -0/+4 |
| | | | | | | This patch redefines constants that were removed in patches between 4.4 and linux-next, so both linux-next and mainline work with make generate. | ||||
| * | sys: add basic netlink support for real | Dmitry Vyukov | 2016-01-23 | 1 | -7/+45 |
| | | |||||
| * | sys: add basic netlink support | Dmitry Vyukov | 2016-01-23 | 1 | -0/+26 |
