!1 Update software to v1.1.5
Merge pull request !1 from chengquan/master
This commit is contained in:
commit
c014b54475
@ -0,0 +1,37 @@
|
|||||||
|
From b2388765e0c4405442faa13845419f6a35d0134c Mon Sep 17 00:00:00 2001
|
||||||
|
From: Phil Sutter <phil@nwl.cc>
|
||||||
|
Date: Mon, 2 Dec 2019 18:29:56 +0100
|
||||||
|
Subject: [PATCH] tests: flowtable: Don't check NFTNL_FLOWTABLE_SIZE
|
||||||
|
|
||||||
|
Marshalling code around that attribute has been dropped by commit
|
||||||
|
d1c4b98c733a5 ("flowtable: remove NFTA_FLOWTABLE_SIZE") so it's value is
|
||||||
|
lost during the test.
|
||||||
|
|
||||||
|
Assuming that NFTNL_FLOWTABLE_SIZE will receive kernel support at a
|
||||||
|
later point, leave the test code in place but just comment it out.
|
||||||
|
|
||||||
|
Fixes: d1c4b98c733a5 ("flowtable: remove NFTA_FLOWTABLE_SIZE")
|
||||||
|
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
||||||
|
Acked-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||||
|
---
|
||||||
|
tests/nft-flowtable-test.c | 2 ++
|
||||||
|
1 file changed, 2 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/tests/nft-flowtable-test.c b/tests/nft-flowtable-test.c
|
||||||
|
index 3edb00d..8ab8d4c 100644
|
||||||
|
--- a/tests/nft-flowtable-test.c
|
||||||
|
+++ b/tests/nft-flowtable-test.c
|
||||||
|
@@ -33,9 +33,11 @@ static void cmp_nftnl_flowtable(struct nftnl_flowtable *a, struct nftnl_flowtabl
|
||||||
|
if (nftnl_flowtable_get_u32(a, NFTNL_FLOWTABLE_USE) !=
|
||||||
|
nftnl_flowtable_get_u32(b, NFTNL_FLOWTABLE_USE))
|
||||||
|
print_err("Flowtable use mismatches");
|
||||||
|
+#if 0
|
||||||
|
if (nftnl_flowtable_get_u32(a, NFTNL_FLOWTABLE_SIZE) !=
|
||||||
|
nftnl_flowtable_get_u32(b, NFTNL_FLOWTABLE_SIZE))
|
||||||
|
print_err("Flowtable size mismatches");
|
||||||
|
+#endif
|
||||||
|
if (nftnl_flowtable_get_u32(a, NFTNL_FLOWTABLE_FLAGS) !=
|
||||||
|
nftnl_flowtable_get_u32(b, NFTNL_FLOWTABLE_FLAGS))
|
||||||
|
print_err("Flowtable flags mismatches");
|
||||||
|
--
|
||||||
|
2.19.1
|
||||||
Binary file not shown.
BIN
libnftnl-1.1.5.tar.bz2
Normal file
BIN
libnftnl-1.1.5.tar.bz2
Normal file
Binary file not shown.
@ -1,12 +1,14 @@
|
|||||||
Name: libnftnl
|
Name: libnftnl
|
||||||
Version: 1.1.1
|
Version: 1.1.5
|
||||||
Release: 6
|
Release: 2
|
||||||
Summary: Library for low-level interaction with nftables Netlink's API over libmnl
|
Summary: Library for low-level interaction with nftables Netlink's API over libmnl
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
URL: http://netfilter.org/projects/libnftnl/
|
URL: http://netfilter.org/projects/libnftnl/
|
||||||
Source0: http://ftp.netfilter.org/pub/libnftnl/libnftnl-%{version}.tar.bz2
|
Source0: http://ftp.netfilter.org/pub/libnftnl/libnftnl-%{version}.tar.bz2
|
||||||
|
|
||||||
BuildRequires: libmnl-devel jansson-devel gcc
|
Patch6000: backport-tests-flowtable-Don-t-check-NFTNL_FLOOWTABLE_SIZE.patch
|
||||||
|
|
||||||
|
BuildRequires: libmnl-devel jansson-devel gcc libnftnl
|
||||||
|
|
||||||
# replace old libnftables package
|
# replace old libnftables package
|
||||||
Provides: libnftables = %{version}-%{release}
|
Provides: libnftables = %{version}-%{release}
|
||||||
@ -18,7 +20,7 @@ to the in-kernel nf_tables subsystem.
|
|||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Summary: Development files for %{name}
|
Summary: Development files for %{name}
|
||||||
Requires: %{name}%{_isa} = %{version}-%{release}
|
Requires: %{name} = %{version}-%{release}
|
||||||
# replace old libnftables-devel package
|
# replace old libnftables-devel package
|
||||||
Provides: libnftables-devel = %{version}-%{release}
|
Provides: libnftables-devel = %{version}-%{release}
|
||||||
Obsoletes: libnftables-devel < 0-0.6
|
Obsoletes: libnftables-devel < 0-0.6
|
||||||
@ -28,7 +30,7 @@ The %{name}-devel package contains libraries and header files for
|
|||||||
developing applications that use %{name}.
|
developing applications that use %{name}.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%autosetup -n %{name}-%{version} -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure --disable-static --disable-silent-rules --with-json-parsing
|
%configure --disable-static --disable-silent-rules --with-json-parsing
|
||||||
@ -38,6 +40,9 @@ developing applications that use %{name}.
|
|||||||
%make_install
|
%make_install
|
||||||
%delete_la
|
%delete_la
|
||||||
|
|
||||||
|
# Include previous ABI version for temporary binary compatibility
|
||||||
|
cp -a %{_libdir}/libnftnl.so.7* %{buildroot}%{_libdir}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
make %{?_smp_mflags} check
|
make %{?_smp_mflags} check
|
||||||
|
|
||||||
@ -51,6 +56,12 @@ make %{?_smp_mflags} check
|
|||||||
%{_includedir}/libnftnl
|
%{_includedir}/libnftnl
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Apr 28 2020 Yufa Fang<fangyufa1@huawei.com> - 1.1.5-2
|
||||||
|
- include previous ABI version for temporary binary compatibility
|
||||||
|
|
||||||
|
* Fri Apr 24 2020 Yufa Fang<fangyufa1@huawei.com> - 1.1.5-1
|
||||||
|
- update to 1.1.5 and fix flowtable tests failure
|
||||||
|
|
||||||
* Tue Sep 17 2019 openEuler Buildteam <buildteam@openeuler.org> - 1.1.1-6
|
* Tue Sep 17 2019 openEuler Buildteam <buildteam@openeuler.org> - 1.1.1-6
|
||||||
- Package init
|
- Package init
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user