aboutsummaryrefslogtreecommitdiffstats
path: root/sys/linux/dev_vfio_s390x.const
Commit message (Collapse)AuthorAgeFilesLines
* sys/linux: switch to the new .const formatDmitry Vyukov2020-08-131-20/+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: first 64bit big-endian architecture s390xAlexander Egorenkov2020-06-251-0/+20
* 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>