diff options
author | Hans Dedecker <dedeckeh@gmail.com> | 2020-06-13 21:18:57 +0200 |
---|---|---|
committer | Hans Dedecker <dedeckeh@gmail.com> | 2020-06-13 21:36:27 +0200 |
commit | a241f439dcedabe0b083d01243334e767e52f498 (patch) | |
tree | 6981fd8577d8dc6c670e4a8d5332bf9b15767094 /package/network/utils/iproute2/patches | |
parent | c0ddb85a1d2361fe1d627878d1b05cd5c2bc5c62 (diff) | |
download | upstream-a241f439dcedabe0b083d01243334e767e52f498.tar.gz upstream-a241f439dcedabe0b083d01243334e767e52f498.tar.bz2 upstream-a241f439dcedabe0b083d01243334e767e52f498.zip |
iproute2: update to 5.7.0
Update iproute2 to latest stable 5.7.0; for the changes see https://lwn.net/Articles/822152/
Signed-off-by: Hans Dedecker <dedeckeh@gmail.com>
Diffstat (limited to 'package/network/utils/iproute2/patches')
-rw-r--r-- | package/network/utils/iproute2/patches/001-devlink-update-include-files.patch | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/package/network/utils/iproute2/patches/001-devlink-update-include-files.patch b/package/network/utils/iproute2/patches/001-devlink-update-include-files.patch new file mode 100644 index 0000000000..ab43fb7700 --- /dev/null +++ b/package/network/utils/iproute2/patches/001-devlink-update-include-files.patch @@ -0,0 +1,46 @@ +From 12fafa27c7b306e6c397e858f4d5a8159500f659 Mon Sep 17 00:00:00 2001 +From: Stephen Hemminger <stephen@networkplumber.org> +Date: Thu, 11 Jun 2020 09:46:46 -0700 +Subject: [PATCH] devlink: update include files + +Use the tool iwyu to get more complete list of includes for +all the bits used by devlink. + +This should also fix build with musl libc. + +Fixes: c4dfddccef4e ("fix JSON output of mon command") +Reported-off-by: Dan Robertson <dan@dlrobertson.com> +Signed-off-by: Stephen Hemminger <stephen@networkplumber.org> +--- + devlink/devlink.c | 9 ++++++++- + 1 file changed, 8 insertions(+), 1 deletion(-) + +--- a/devlink/devlink.c ++++ b/devlink/devlink.c +@@ -19,18 +19,25 @@ + #include <limits.h> + #include <errno.h> + #include <inttypes.h> ++#include <signal.h> ++#include <time.h> ++#include <netinet/in.h> ++#include <arpa/inet.h> + #include <sys/sysinfo.h> + #define _LINUX_SYSINFO_H /* avoid collision with musl header */ + #include <linux/genetlink.h> + #include <linux/devlink.h> ++#include <linux/netlink.h> + #include <libmnl/libmnl.h> + #include <netinet/ether.h> ++#include <sys/select.h> ++#include <sys/socket.h> + #include <sys/types.h> + + #include "SNAPSHOT.h" + #include "list.h" + #include "mnlg.h" +-#include "json_writer.h" ++#include "json_print.h" + #include "utils.h" + #include "namespace.h" + |