diff --git a/iproute2-4.17.0.tar.sign b/iproute2-4.17.0.tar.sign deleted file mode 100644 index 8fc56dc..0000000 Binary files a/iproute2-4.17.0.tar.sign and /dev/null differ diff --git a/iproute2-4.17.0.tar.xz b/iproute2-4.17.0.tar.xz deleted file mode 100644 index 1a54e9c..0000000 --- a/iproute2-4.17.0.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6fa991b092315887775b9e47dc6a89af7ae09dd3ad4ccff754d055c566b4be6e -size 675268 diff --git a/iproute2-4.18.0.tar.sign b/iproute2-4.18.0.tar.sign new file mode 100644 index 0000000..28d1e53 Binary files /dev/null and b/iproute2-4.18.0.tar.sign differ diff --git a/iproute2-4.18.0.tar.xz b/iproute2-4.18.0.tar.xz new file mode 100644 index 0000000..6a23e94 --- /dev/null +++ b/iproute2-4.18.0.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9e6c70c95f513871c5e1f4e452c04fcb3c4d8a05be651bd794cd994a52daa45 +size 692868 diff --git a/iproute2.changes b/iproute2.changes index 704a173..a81a9de 100644 --- a/iproute2.changes +++ b/iproute2.changes @@ -1,3 +1,32 @@ +------------------------------------------------------------------- +Fri Aug 31 05:27:00 UTC 2018 - mkubecek@suse.cz + +- Update to new upstream release 4.18 + * tc: more JSON output + * vxlan: fix ttl inherit behavior + * gre/gre6: allow clearing {,i,o}{key,seq,csum} flags + * bpf: don't offload perf array maps + * tipc: Add support to set and get MTU for UDP bearer + * tc: flower: add support for verbose logging + * rdma: print driver resource attributes + * devlink: introduce support for showing port flavours + * ip address: Add support for address metric + * ip route: print RTA_CACHEINFO if it exists + * ip route get: support for sport, dport and ipproto match + * ip route: Add support for a few routing protocols + * ip address: strengthen check on 'label' input + * ip: add rmnet initial support + * tc: fix batch force option + * ip address: Fix and make consistent label match handling + * ip: add support for seg6local End.BPF action + * lib/namespace: avoid double-mounting /sys + * tc: flush output after each command in batch mode + * ip link: don't stop batch processing + * various command output fixes + * documentation improvements +- rdma-sync-some-IP-headers-with-glibc.patch: + drop (present in 4.18) + ------------------------------------------------------------------- Wed Aug 1 08:28:16 UTC 2018 - mkubecek@suse.cz diff --git a/iproute2.spec b/iproute2.spec index fca8289..5d80786 100644 --- a/iproute2.spec +++ b/iproute2.spec @@ -17,9 +17,9 @@ Name: iproute2 -Version: 4.17 +Version: 4.18 Release: 0 -%define rversion 4.17.0 +%define rversion 4.18.0 Summary: Linux network configuration utilities License: GPL-2.0-only Group: Productivity/Networking/Routing @@ -37,7 +37,6 @@ Patch3: add-explicit-typecast-to-avoid-gcc-warning.patch Patch4: xfrm-support-displaying-transformations-used-for-Mob.patch Patch6: split-link-and-compile-steps-for-binaries.patch Patch7: examples-fix-bashisms-in-example-script.patch -Patch8: rdma-sync-some-IP-headers-with-glibc.patch Patch102: Revert-emp-fix-warning-on-deprecated-bison-directive.patch BuildRequires: bison BuildRequires: db-devel @@ -85,7 +84,7 @@ bash command line completion support for iproute. %prep %setup -qn %name-%rversion -%patch -P 1 -P 2 -P 3 -P 4 -P 6 -P 7 -P 8 -p1 +%patch -P 1 -P 2 -P 3 -P 4 -P 6 -P 7 -p1 %if 0%{?sles_version} == 11 %patch -P 102 -p1 %endif diff --git a/rdma-sync-some-IP-headers-with-glibc.patch b/rdma-sync-some-IP-headers-with-glibc.patch deleted file mode 100644 index 5c0b7c6..0000000 --- a/rdma-sync-some-IP-headers-with-glibc.patch +++ /dev/null @@ -1,33 +0,0 @@ -From: Hoang Le -Date: Wed, 13 Jun 2018 11:09:56 +0700 -Subject: rdma: sync some IP headers with glibc -Patch-mainline: v4.18.0 -Git-commit: 5887ff0922a06d978d3271df9f01fcb04fadc75f - -In the commit 9a362cc71a45, new userspace header: - (i.e rdma/rdma_user_cm.h -> linux/in6.h) -is included before the kernel space header: - (i.e utils.h -> resolv.h -> netinet/in.h). - -This leads to unsynchronous some IP headers and compiler got failure -with error: redefinition of some structs IP. - -In this commit, just reorder this including to make them in-sync. - -Signed-off-by: Hoang Le -Acked-by: Leon Romanovsky -Signed-off-by: Stephen Hemminger ---- - rdma/rdma.h | 1 + - 1 file changed, 1 insertion(+) - ---- a/rdma/rdma.h -+++ b/rdma/rdma.h -@@ -15,6 +15,7 @@ - #include - #include - #include -+#include - #include - #include - #include