-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
48 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,11 +3,11 @@ | |
# Now you only need to update the version number in two places - below, | ||
# and in the README | ||
|
||
AC_INIT([libtrace],[4.0.21],[[email protected]],[libtrace]) | ||
AC_INIT([libtrace],[4.0.22],[[email protected]],[libtrace]) | ||
|
||
LIBTRACE_MAJOR=4 | ||
LIBTRACE_MID=0 | ||
LIBTRACE_MINOR=21 | ||
LIBTRACE_MINOR=22 | ||
|
||
# OpenSolaris hides libraries like libncurses in /usr/gnu/lib, which is not | ||
# searched by default - add it to LDFLAGS so we at least have a chance of | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,18 @@ | ||
libtrace4 (4.0.22-1) unstable; urgency=medium | ||
|
||
* Fix segmentation fault when closing an ndag input that had | ||
set a hasher function and was configured to use multiple | ||
processing threads. | ||
* Disable setting a hasher function on ndag inputs, as this | ||
is not generally a good idea anyway (ndag inputs are already | ||
hashed by the ndag sender). | ||
* Fix problem where trace_write_packet() would throw an error on | ||
ring outputs because a write could not be completed without | ||
blocking and there was no mechanism for trying the write again | ||
later. | ||
|
||
-- Shane Alcock <[email protected]> Wed, 14 Jun 2023 17:48:08 +1200 | ||
|
||
libtrace4 (4.0.21-1) unstable; urgency=medium | ||
|
||
* Fixed issue where idle per packets threads would use 100% CPU | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Name: libtrace4 | ||
Version: 4.0.21 | ||
Release: 2%{?dist} | ||
Version: 4.0.22 | ||
Release: 1%{?dist} | ||
Summary: C Library for capturing and analysing network packets | ||
|
||
License: LGPLv3 | ||
|
@@ -127,6 +127,9 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' | |
|
||
|
||
%changelog | ||
* Wed Jun 14 2023 Shane Alcock <[email protected]> - 4.0.22-1 | ||
- Updated for 4.0.22 release | ||
|
||
* Mon May 22 2023 Shane Alcock <[email protected]> - 4.0.21-2 | ||
- Rebuild 4.0.21 to resolve DPDK dependency problems | ||
|
||
|