mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-01 11:36:49 +00:00
b2e0775bc6
Upstream patches: 401-bridge-vlan.c-bridge-vlan.c-fix-build-with-gcc-14-on.patch 402-bpf-fix-warning-from-basename.patch 403-bpf-include-libgen.h-for-basename.patch The patch (400-rdma-include-libgen.h-for-basename.patch) was not submitted upstream but just adds a missing include for basename. Signed-off-by: Rany Hany <rany_hany@riseup.net>
70 lines
2.7 KiB
Diff
70 lines
2.7 KiB
Diff
From 53a89bfd86fff1a00cc77cabb8457a03eaa3bc7d Mon Sep 17 00:00:00 2001
|
|
From: Gabi Falk <gabifalk@gmx.com>
|
|
Date: Fri, 10 May 2024 14:36:12 +0000
|
|
Subject: [PATCH] bridge/vlan.c: bridge/vlan.c: fix build with gcc 14 on musl
|
|
systems
|
|
|
|
On glibc based systems the definition of 'struct timeval' is pulled in
|
|
with inclusion of <stdlib.h> header, but on musl based systems it
|
|
doesn't work this way. Missing definition triggers an
|
|
incompatible-pointer-types error with gcc 14 (warning on previous
|
|
versions of gcc):
|
|
|
|
../include/json_print.h:80:30: warning: 'struct timeval' declared inside parameter list will not be visible outside of this definition or declaration
|
|
80 | _PRINT_FUNC(tv, const struct timeval *)
|
|
| ^~~~~~~
|
|
../include/json_print.h:50:37: note: in definition of macro '_PRINT_FUNC'
|
|
50 | type value); \
|
|
| ^~~~
|
|
../include/json_print.h:80:30: warning: 'struct timeval' declared inside parameter list will not be visible outside of this definition or declaration
|
|
80 | _PRINT_FUNC(tv, const struct timeval *)
|
|
| ^~~~~~~
|
|
../include/json_print.h:55:45: note: in definition of macro '_PRINT_FUNC'
|
|
55 | type value) \
|
|
| ^~~~
|
|
../include/json_print.h: In function 'print_tv':
|
|
../include/json_print.h:58:48: error: passing argument 5 of 'print_color_tv' from incompatible pointer type [-Wincompatible-pointer-types]
|
|
58 | value); \
|
|
| ^~~~~
|
|
| |
|
|
| const struct timeval *
|
|
|
|
Signed-off-by: Gabi Falk <gabifalk@gmx.com>
|
|
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
|
|
---
|
|
bridge/vlan.c | 1 +
|
|
bridge/vni.c | 1 +
|
|
vdpa/vdpa.c | 1 +
|
|
3 files changed, 3 insertions(+)
|
|
|
|
--- a/bridge/vlan.c
|
|
+++ b/bridge/vlan.c
|
|
@@ -4,6 +4,7 @@
|
|
#include <unistd.h>
|
|
#include <fcntl.h>
|
|
#include <sys/socket.h>
|
|
+#include <sys/time.h>
|
|
#include <net/if.h>
|
|
#include <netinet/in.h>
|
|
#include <linux/if_bridge.h>
|
|
--- a/bridge/vni.c
|
|
+++ b/bridge/vni.c
|
|
@@ -10,6 +10,7 @@
|
|
#include <string.h>
|
|
#include <fcntl.h>
|
|
#include <sys/socket.h>
|
|
+#include <sys/time.h>
|
|
#include <net/if.h>
|
|
#include <netinet/in.h>
|
|
#include <linux/if_link.h>
|
|
--- a/vdpa/vdpa.c
|
|
+++ b/vdpa/vdpa.c
|
|
@@ -3,6 +3,7 @@
|
|
#include <stdio.h>
|
|
#include <getopt.h>
|
|
#include <errno.h>
|
|
+#include <sys/time.h>
|
|
#include <linux/genetlink.h>
|
|
#include <linux/if_ether.h>
|
|
#include <linux/vdpa.h>
|