2 changes: 1 addition & 1 deletion sysdeps/mach/hurd/if_index.c
Expand Up @@ -166,7 +166,7 @@ libc_hidden_weak (if_nameindex)
IFNAME (which has space for at least IFNAMSIZ characters). Return
IFNAME, or NULL on error. */
char *
__if_indextoname (unsigned int ifindex, char *ifname)
__if_indextoname (unsigned int ifindex, char ifname[IF_NAMESIZE])
{
struct ifreq ifr;
int fd = __opensock ();
Expand Down
2 changes: 1 addition & 1 deletion sysdeps/unix/sysv/linux/if_index.c
Expand Up @@ -215,7 +215,7 @@ libc_hidden_weak (if_nameindex)


char *
__if_indextoname (unsigned int ifindex, char *ifname)
__if_indextoname (unsigned int ifindex, char ifname[IF_NAMESIZE])
{
/* We may be able to do the conversion directly, rather than searching a
list. This ioctl is not present in kernels before version 2.1.50. */
Expand Down
12 changes: 12 additions & 0 deletions sysdeps/unix/sysv/linux/test-errno-linux.c
Expand Up @@ -44,6 +44,7 @@
#include <sys/time.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <libc-diag.h>

/* This is not an exhaustive test: only system calls that can be
persuaded to fail with a consistent error code and no side effects
Expand Down Expand Up @@ -171,7 +172,18 @@ do_test (void)
allocation. */
fails |= test_wrp2 (LIST (EINVAL, ENOMEM), mlock, (void *) -1, 1);
fails |= test_wrp (EINVAL, nanosleep, &ts, &ts);

DIAG_POP_NEEDS_COMMENT;

#if __GNUC_PREREQ (9, 0)
/* Suppress valid GCC warning:
'poll' specified size 18446744073709551608 exceeds maximum object size
*/
DIAG_IGNORE_NEEDS_COMMENT (9, "-Wstringop-overflow=");
#endif
fails |= test_wrp (EINVAL, poll, &pollfd, -1, 0);
DIAG_POP_NEEDS_COMMENT;

/* quotactl returns ENOSYS for kernels not configured with
CONFIG_QUOTA, and may return EPERM if called within certain types
of containers. Linux 5.4 added additional argument validation
Expand Down