aboutsummaryrefslogtreecommitdiffstats
path: root/sys/linux/socket_netlink_route_s390x.const
Commit message (Collapse)AuthorAgeFilesLines
* sys/linux: switch to the new .const formatDmitry Vyukov2020-08-131-661/+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: add descriptions for RTM_(NEW|DEL|GET)NEXTHOPAlbert van der Linde2020-08-081-0/+21
| | | | https://elixir.bootlin.com/linux/v5.8-rc4/source/net/ipv4/nexthop.c#L1961
* sys/linux: add lwtunnel_encap_seg6_localRuxandra Stăncioi2020-07-241-0/+12
| | | | | https://elixir.bootlin.com/linux/latest/source/include/uapi/linux/seg6_local.h#L21 https://elixir.bootlin.com/linux/latest/source/net/ipv6/seg6_local.c#L649
* sys/linux: add lwtunnel_encap_bpf descriptionRuxandra Stăncioi2020-07-241-0/+7
| | | | | https://elixir.bootlin.com/linux/latest/source/include/uapi/linux/lwtunnel.h#L102 https://elixir.bootlin.com/linux/latest/source/net/core/lwt_bpf.c#L364
* sys/linux: add lwtunnel_encap_ip6 descriptionRuxandra Stăncioi2020-07-241-0/+7
| | | | https://elixir.bootlin.com/linux/latest/source/net/ipv4/ip_tunnel_core.c#L713
* sys/linux: add lwtunnel_encap_ila descriptionRuxandra Stăncioi2020-07-241-0/+13
| | | | | | https://elixir.bootlin.com/linux/latest/source/net/ipv6/ila/ila_lwt.c#L121 The comment is about their statement in the kernel file: https://elixir.bootlin.com/linux/latest/source/net/ipv6/ila/ila_lwt.c#L196
* sys/linux: add lwtunnel_encap_ip descriptionRuxandra Stăncioi2020-07-241-0/+21
| | | | | | | | | https://elixir.bootlin.com/linux/latest/source/include/uapi/linux/lwtunnel.h#L102 https://elixir.bootlin.com/linux/latest/source/net/ipv4/ip_tunnel_core.c#L219 The policies added have a suffix (_lwt), because they already exist in syzkaller with the kernel name. An example of a union with the same name described in sys/linux/socket_netlink_route_sched.txt: https://elixir.bootlin.com/linux/latest/source/net/sched/cls_flower.c#L709
* sys/linux: add lwtunnel_encap_mpls descriptionRuxandra Stăncioi2020-07-241-0/+2
| | | | https://elixir.bootlin.com/linux/latest/source/net/mpls/mpls_iptunnel.c#L25
* sys/linux: add ipv6_rpl_sr_hdr descriptionRuxandra Stăncioi2020-07-241-0/+2
| | | | | https://elixir.bootlin.com/linux/latest/source/include/uapi/linux/rpl.h#L19 update google#533
* sys/linux: add descriptions for RTM_(NEW|DEL|GET)MDBAlbert van der Linde2020-07-221-0/+10
| | | | https://elixir.bootlin.com/linux/latest/source/net/bridge/br_mdb.c#L837
* sys/linux: add descriptions for RTM_(NEW|DEL|GET)VLANAlbert van der Linde2020-07-221-0/+24
| | | | https://elixir.bootlin.com/linux/latest/source/net/bridge/br_vlan.c#L2045
* sys/linux: add descriptions for RTM_(NEW|DEL|GET)ADDRLABELAlbert van der Linde2020-07-221-0/+5
| | | | https://elixir.bootlin.com/linux/latest/source/net/ipv6/addrlabel.c#L625
* sys/linux: add descriptions for RTM_(NEW|DEL|GET)LINKPROPAlbert van der Linde2020-07-221-0/+2
| | | | https://elixir.bootlin.com/linux/latest/source/net/core/rtnetlink.c#L5565
* sys/linux: first 64bit big-endian architecture s390xAlexander Egorenkov2020-06-251-0/+535
* 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>