aboutsummaryrefslogtreecommitdiffstats
path: root/sys/linux/sys_s390x.const
Commit message (Collapse)AuthorAgeFilesLines
* sys/linux: switch to the new .const formatDmitry Vyukov2020-08-131-840/+0
| | | | | | | This reduces number of const files/lines from 1288/96599 to 158/11603. Const files are generated on next-20200813. Update #1983
* sys/linux: assorted improvements for vhciDmitry Vyukov2020-07-301-2/+2
| | | | | | | | | | | | | | | | Regenerate const files on next-20200729. Change conn handle to 200 because it also seems to be matches against phy_handle fields which are int8 (current 256 does not fit into int8). Use 200 for all handle's and all phy_handle's. Remove hci_evt_le_cis_req, it does not seem to be used in the kernel. Restrict some event types and statuses. Add rssi field to hci_ev_le_advertising_info. Use bytesize for some of the data length fields.
* sys/linux: add description for copy_file_rangeAlbert van der Linde2020-07-251-0/+1
|
* sys/linux: added descs for preadv2, pwritev2Necip Fazil Yildiran2020-07-241-0/+7
|
* sys/linux: /dev/snapshot descriptions (#1934)handeharputlu2020-07-141-1/+0
|
* sys/linux: improved the desc for ioprio priority valuesNecip Fazil Yildiran2020-07-091-0/+8
| | | | | ioprio priority values (as passed to ioprio_set()) take values from a limited range. This fact was reflected in the descriptions.
* sys/linux: add close_rangeJiaheng Hu2020-07-081-0/+2
| | | | | Added description for close_range which is currently in linux-next (https://lore.kernel.org/lkml/20200602204219.186620-2-christian.brauner@ubuntu.com/).
* sys/linux: add process_madviseJiaheng Hu2020-07-071-0/+1
| | | | | Adde description for process_madvise syscall in linux-next (https://lore.kernel.org/lkml/20200622192900.22757-4-minchan@kernel.org).
* sys/linux: add new flags into clone3Jiaheng Hu2020-07-071-0/+2
| | | | | Added the CLONE_INTO_CGROUP and CLONE_CLEAR_SIGHAND flag for the clone3 syscall.
* sys/linux: add riscv_flush_icache syscallDmitry Vyukov2020-07-011-0/+30
| | | | +extract constants on next-20200701
* sys/linux: add faccessat2Jiaheng Hu2020-06-291-0/+2
| | | | Added the faccessat2 description (linux 5.8) (https://git.kernel.org/linus/c8ffd8bcdd28296a).
* sys/linux: first 64bit big-endian architecture s390xAlexander Egorenkov2020-06-251-0/+788
* mmap syscall is special on Linux s390x because the parameters for this syscall are passed as a struct on user stack instead of registers. * Introduce the SyscallTrampolines table into targets.Target to address the above problem. * There is a bug in Linux kernel s390x which causes QEMU TCG to hang when KASAN is enabled. The bug has been fixed in the forthcoming Linux 5.8 version. Until then do not enable KASAN when using QEMU TCG, QEMU KVM shall have no problems with KASAN. Signed-off-by: Alexander Egorenkov <Alexander.Egorenkov@ibm.com>