Skip to content

Commit

Permalink
Release v2.5.1
Browse files Browse the repository at this point in the history
- Fix soft lockup on kernels with xtables targets used via nftables.
- Fix compilation with Linux 5.8 and with CentOS 8.
  • Loading branch information
aabc committed Aug 12, 2020
1 parent 2c723f2 commit e100fc4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CREDITS
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@ Patch authors and submitters:
Thadeu Lima de Souza Cascardo @ Canonical [2019]
dbugnar [2019]
Vadim Fedorenko [2019]
Paolo Pisati @ Canonical [2020]
Jeroen Roovers @ Gentoo [2020]


Project supporters:
Expand Down
5 changes: 5 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
ipt-netflow NEWS
================

2.5.1 (2020-08-12)
* Maintenance release.
- Fix soft lockup on kernels with xtables targets used via nftables.
- Fix compilation with Linux 5.8 and with CentOS 8.

2.5 (2020-04-24)
* Minor maintenance release.
- Compilation compatibility with kernels up to 5.6.
Expand Down
2 changes: 1 addition & 1 deletion ipt_NETFLOW.c
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
# endif
#endif

#define IPT_NETFLOW_VERSION "2.5" /* Note that if you are using git, you
#define IPT_NETFLOW_VERSION "2.5.1" /* Note that if you are using git, you
will see version in other format. */
#include "version.h"
#ifdef GITVERSION
Expand Down
2 changes: 1 addition & 1 deletion openwrt/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ PKG_NAME:=ipt-netflow
PKG_RELEASE:=2

PKG_SOURCE_URL:=https://github.com/aabc/$(PKG_NAME).git
PKG_VERSION:=2.5
PKG_VERSION:=2.5.1
PKG_SOURCE_VERSION:=v$(PKG_VERSION)

#TO BUILD development version uncomment 2 rows below and remove patches
Expand Down

3 comments on commit e100fc4

@yura-mdj
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi, I have a problem on Centos 7.8.2003
Linux 3.10.0-1127.18.2.el7.x86_64 #1 SMP Sun Jul 26 15:27:06 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
-------------------Module version: 2.5.1-------------------
CC [M] /usr/src/ipt-netflow/ipt_NETFLOW.o
/usr/src/ipt-netflow/ipt_NETFLOW.c: In function ‘netflow_target’:
/usr/src/ipt-netflow/ipt_NETFLOW.c:5294:3: error: implicit declaration of function ‘nf_bridge_info_get’ [-Werror=implicit-function-declaration]
copy_dev(nf->o_ifphys, physoutdev, if_out);
netflow.txt

@aabc
Copy link
Owner Author

@aabc aabc commented on e100fc4 Aug 20, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@yura-mdj Thanks for the report. I will try to reproduce it and fix.

@aabc
Copy link
Owner Author

@aabc aabc commented on e100fc4 Aug 23, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reproduced and created issue #147

Please sign in to comment.