From 773117bf811a6e7f9d13bb966dc4956774e88207 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 17 Jan 2020 16:59:20 +0100 Subject: tools/syz-check: also check arm/arm64 They mostly duplicate the warnings we already have for amd64/386. But uncovered few very interesting local things (e.g. epoll_event is packed only on amd64, so arm/arm64 layout is wrong, but 386 is correct because int64 alignment is different). Update #590 --- sys/linux/socket.txt.warn | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'sys/linux/socket.txt.warn') diff --git a/sys/linux/socket.txt.warn b/sys/linux/socket.txt.warn index 9b03e38ea..6b588dddd 100644 --- a/sys/linux/socket.txt.warn +++ b/sys/linux/socket.txt.warn @@ -15,18 +15,18 @@ no-such-struct: recv_msghdr no-such-struct: recv_mmsghdr no-such-struct: cmsghdr_t no-such-struct: cmsghdr_unaligned -compiler: unsupported syscall: ioctl$SIOCGSTAMP due to missing const SIOCGSTAMP [386] -compiler: unsupported syscall: ioctl$SIOCGSTAMPNS due to missing const SIOCGSTAMPNS [386] +compiler: unsupported syscall: ioctl$SIOCGSTAMP due to missing const SIOCGSTAMP [386,arm] +compiler: unsupported syscall: ioctl$SIOCGSTAMPNS due to missing const SIOCGSTAMPNS [386,arm] no-such-struct: ifreq_dev_t no-such-struct: ifr_ifru no-such-struct: vlan_args no-such-struct: vlan_args_u no-such-struct: devname_mask no-such-struct: ifs_ifsu -bad-field-size: ifconf.req/ifc_len: syz=16 kernel=4 [amd64] -bad-field-size: ifconf.req/ifc_len: syz=8 kernel=4 [386] -bad-field-offset: ifconf.buf/ifc_ifcu: syz=16 kernel=8 [amd64] -bad-field-size: ifconf.buf/ifc_ifcu: syz=8 kernel=4 [386] +bad-field-size: ifconf.req/ifc_len: syz=16 kernel=4 [amd64,arm64] +bad-field-size: ifconf.req/ifc_len: syz=8 kernel=4 [386,arm] +bad-field-size: ifconf.buf/ifc_ifcu: syz=16 kernel=8 [amd64,arm64] +bad-field-offset: ifconf.buf/ifc_ifcu: syz=8 kernel=4 [386,arm] no-such-struct: ifconf_buf no-such-struct: ifconf_req no-such-struct: brctl_arg -- cgit mrf-deployment