changelog: backport more dpdk 16.07 library linking fixes
[deb_dpdk.git] / debian / changelog
1 dpdk (16.04-1) UNRELEASED; urgency=medium
2
3   [ Christian Ehrhardt ]
4   * Merge with upstream DPDK 16.04 release
5   * droping patches/backports that are already upstream in DPDK 16.04
6     - d/p/ubuntu-fix-doc-installpath.patch
7     - d/p/ubuntu-fix-testpmd-without-xen.patch
8     - d/p/ubuntu-fix-lpm-use-after-free-and-leak.patch
9     - d/p/ubuntu-backport-[01-32,34-35] backports for stability
10     - d/p/ubuntu-backport-[36-37] but keep doc and example changes in d/*
11   * droping patches for soname / linking fixups.
12     - Upstream now goes with proper soname/abi/api handling per sublib plus a
13       linker script.
14     - dropped d/p/ubuntu-combined-shared-lib-abiversion.patch
15     - dropped d/p/ubuntu-fix-library-linkage.patch
16   * keeping patches:
17     - d/p/ubuntu-backport-38-* fix for memory leak
18       this now applies as is, so changed from a modified backport to match the
19       post 16.04 upstream commit now.
20     - d/p/ubuntu-backport-33-vhost-user-add-error-handling-for-fd-1023.patch
21     - doc and example changes that were related to d/p/ubuntu-backport-[36-37]
22     - d/p/ubuntu-fix-vhost-user-socket-permission.patch adapted for dpdk-16.04:
23       In the new build system with sublibs the exposed function needs to be
24       listed in lib/librte_eal/linuxapp/eal/rte_eal_version.map
25   * adding upstream backports - can be dropped when merging DPDK 16.07.
26     - d/p/ubuntu-backport-39-lpm-fix-freeing-in-compatibility-mode.patch
27       This was formerly part of a combined patch that we dropped because the
28       majority is upstream (d/p/ubuntu-fix-lpm-use-after-free-and-leak.patch).
29     - d/p/ubuntu-backport-40-linking-fixes-stage-[1-4]-4.patch
30       d/p/ubuntu-backport-44-linking-cleanup.patch
31       Fixing underlinking and overlinking issues in apps and libraries.
32     - d/p/ubuntu-backport-41-fix-install-tar-1.29.patch
33       Fix issues with tar >=1.29 (Yakkety)
34     - d/p/ubuntu-backport-43-increase-default-logging-level.patch
35       avoid default debug messages causing a perf degradation
36     - d/p/ubuntu-backport-43-fix-level-type-retrieving.patch
37       Fix type retrieving which was broken in standard threads
38   * adapt to new build system
39     - drop enabling the following build config symbols as they no more exist
40         CONFIG_RTE_BUILD_COMBINE_LIBS
41     - Sub-Libraries are now packaged in a versioned package per library. That
42       allows consumers of dpdk to just depend on what they need. As well as
43       installation of multiple .so versions concurrently.
44     - added the hidden dependency of librte_eal to librte_mempool
45   * Adding DKMS package for rte_kni (LP: #1592786)
46
47   [ Ricardo Salveti ]
48   * Adding support for ARM64:
49     - debian/control: adding arm64 to the supported architecture list
50     - debian/rules: supporting dpdk config and machine for arm64
51     - d/p/ubuntu-fix-xenvirt-support-dynamic-page-size.patch: fix build
52       failure on arm64
53     - debian/dpdk-sdk-env.sh: generating the right RTE_TARGET during build
54       time, so we can also make it compatible with ARM64
55     - debian/tests: also making tests compatible with ARM64
56   * Adding DKMS package for igb_uio
57   * Build static dpdk with -fPIC so it can be used by shared libraries
58   * debian/copyright: fixing Canonical's copyright entry
59   * Renaming symbol files so they can match the right package
60   * Drop the arch specific symbol files, as they are identical
61
62   [ Anders Roxell ]
63   * debian/dpdk.init: add remote_fs (lintian)
64   * debian/control: fixing week-library-dev-dependency (lintian)
65
66  -- Christian Ehrhardt <christian.ehrhardt@canonical.com>  Tue, 17 May 2016 14:23:21 +0200
67
68 dpdk (2.2.0-0ubuntu9) yakkety; urgency=medium
69
70   * d/p/ubuntu-backport-[36-37] fix virtio issues (LP: #1570195):
71     - don't let DPDK initialize virtio devices still in use by the kernel
72     - this avoids conflicts between kernel and dpdk usage of those devices
73     - an admin now has to unbind/bind devices as on physical hardware
74     - this is in the dpdk 16.04 release and delta can then be dropped
75     - d/dpdk-doc.README.Debian update for changes in virtio-pci handling
76     - d/dpdk.interfaces update for changes in virtio-pci handling
77   * d/p/ubuntu-backport-38... fix for memory leak (LP: #1570466):
78     - call vhost_destroy_device on removing vhost user ports to fix memory leak
79     - this likely is in the dpdk 16.07 release and delta can then be dropped
80   * d/p/ubuntu-fix-vhost-user-socket-permission.patch fox (LP: #1546565):
81     - when vhost_user sockets are created they are owner:group of the process
82     - the DPDK api to create those has no way to specify owner:group
83     - to fix that without breaking the API and potential workaround code in
84       consumers of the library like openvswitch 2.6 for example. This patch
85       adds an EAL commandline option to specify user:group created vhost_user
86       sockets should have.
87
88  -- Christian Ehrhardt <christian.ehrhardt@canonical.com>  Wed, 27 Apr 2016 07:52:48 -0500
89
90 dpdk (2.2.0-0ubuntu7) xenial; urgency=medium
91
92   * Increase max_map_count after setting huge pages (LP: #1507921):
93     - The default config of 65530 would cause issues as soon as about 64GB or
94       more are used as 2M huge pages for dpdk.
95     - Increase this value to base+2*#hugepages to avoid issues on huge systems.
96   * d/p/ubuntu-backport-[28-32,34-35] backports for stability (LP: #1568838):
97      - these will be in the 16.04 dpdk release, delta can then be dropped.
98      - 5 fixes that do not change api/behaviour but fix serious issues.
99         - 01 f82f705b lpm: fix allocation of an existing object
100         - 02 f9bd3342 hash: fix multi-process support
101         - 03 1aadacb5 hash: fix allocation of an existing object
102         - 04 5d7bfb73 hash: fix race condition at creation
103         - 05 fe671356 vfio: fix resource leak
104         - 06 356445f9 port: fix ring writer buffer overflow
105         - 07 52f7a5ae port: fix burst size mask type
106   * d/p/ubuntu-backport-33-vhost-user-add-error-handling-for-fd-1023.patch
107      - this will likely be in dpdk release 16.07 and delta can then be dropped.
108      - fixes a crash on using fd's >1023 (LP: #1566874)
109   * d/p/ubuntu-fix-lpm-use-after-free-and-leak.patch fix lpm_free (LP: #1569375)
110      - the old patches had an error freeing a pointer which had no meta data
111      - that lead to a crash on any lpm_free call
112      - folded into the fix that generally covers the lpm allocation and free
113        weaknesses already (also there this particular mistake was added)
114
115  -- Christian Ehrhardt <christian.ehrhardt@canonical.com>  Tue, 12 Apr 2016 16:13:47 +0200
116
117 dpdk (2.2.0-0ubuntu6) xenial; urgency=medium
118
119   * d/dpdk-init fix handling of multiple huge page sizes (LP: #1557532):
120      - dpdk-init now ensures non-default-hugepage-size mountpoints are
121        available as well.
122      - extra mountpoints are only created if requested in dpdk.conf and not yet
123        available (e.g. by the admin).
124   * d/dpdk-init fix issues with unassigned devices (LP: #1558485):
125      - dpdk-init no more checks /sys/.../driver of the device unconditionally
126      - removed the superfluous tr call in that path
127   * d/p/ubuntu-fix-lpm-use-after-free-and-leak.patch lpm/lpm6 (LP: #1554009):
128      - lpm/lpm6 fix use after free on lpm[6]_create
129      - lpm/lpm6 fix missing frees of rules_tbl substructure
130      - lpm/lpm6 fix missing free of lpm due to early exit
131      - make RTE_LOG messages of the failed allocation unique
132   * d/p/ubuntu-backport-[01-26] backport for stability (LP: #1559981):
133      - these will be in the following dpdk release and delta can then be dropped
134      - 26 fixes that do not change api/behaviour but fix serious issues
135         - 01 d3a274ce app/testpmd: handle SIGINT and SIGTERM
136         - 02 308df2bf Handle SIGINT and SIGTERM in l3fwd.
137         - 03 da82ee17 tools: fix unbinding failure handling
138         - 04 16c1814c tools: support Python 3 in bind script
139         - 05 bb9f4085 tools: support binding to built-in kernel modules
140         - 06 6e7caa1a eal/linux: support built-in kernel modules
141         - 07 86f36ff9 mempool: fix leak when creation fails
142         - 08 ca67ed28 vhost: fix leak of fds and mmaps
143         - 09 fa11a8a7 port: fix crash for ring writer nodrop
144         - 10 04f36690 port: fix crash for ethdev writer nodrop
145         - 11 c7a4ff80 i40e: fix overflow
146         - 12 097e920c i40e: fix inverted check for no refcount
147         - 13 330aa319 i40e: fix VLAN filtering
148         - 14 9f44dd3d i40e/base: fix missing check for stopped admin queue
149         - 15 8a880736 i40e/base: fix driver load failure
150         - 16 7656a546 fm10k: fix VLAN flag in scattered Rx
151         - 17 c6fb0e55 pcap: fix captured frame length
152         - 18 6e027237 bonding: fix detach of bonded device
153         - 19 df3e8ad7 bonding: fix detach of slave devices
154         - 20 786c990a bonding: copy entire config structure in mode 4
155         - 21 6698820b bonding: do not ignore multicast in mode 4
156         - 22 8997a10b bonding: fix active slaves with no primary
157         - 23 7a7122ed bonding: do not activate slave twice
158         - 24 2186fff3 bonding: fix crash when no slave device
159         - 25 c680a4a8 virtio: fix crash in statistics functions
160         - 26 3b1e3e4e virtio: fix descriptors pointing to the same buffer
161   * d/p/ubuntu-backport-27-virtio-fix-restart.patch for (LP: #1559981):
162      - fixing re-initializing the ethdev as openvswitch-dpdk does in the
163        virtio pmd driver by moving the detection of already being initialized
164        from virtio_dev_close to virtio_dev_start/stop
165      - this will be in the following dpdk release and delta can then be dropped
166   * d/rules build with debuginfo (LP: #1560839):
167      - exporting CFLAGS for all dpdk build processes
168      - dh_strip will automatically and create -dbgsym packages accordingly
169
170  -- Christian Ehrhardt <christian.ehrhardt@canonical.com>  Wed, 23 Mar 2016 10:34:50 +0100
171
172 dpdk (2.2.0-0ubuntu5) xenial; urgency=medium
173
174   * d/t/test-initscripts fix issues regarding 1G hugepages
175      - the dep8 was already taking care of 1G hugepages being not supported in
176        some environments. But it was failing when supported, but not enough
177        memory available.
178
179  -- Christian Ehrhardt <christian.ehrhardt@canonical.com>  Wed, 09 Mar 2016 17:19:24 +0000
180
181 dpdk (2.2.0-0ubuntu4) xenial; urgency=medium
182
183   * harden d/dpdk-init for configuration issues (LP: #1551601):
184      - detect and warn about bad bus specifications.
185      - detect and warn about incomplete device specifications.
186      - detect and warn about non existing pci IDs.
187      - avoid failing when working with unassigned devices.
188      - d/t/test-initscripts now testing various misconfigs.
189      - d/t/test-initscripts now also verifying service status.
190   * d/dpdk-init d/dpdk.conf now also support 1G hugepages (LP: #1551767):
191      - detect and warn if 1G pages are not available but configured.
192      - d/t/test-initscripts now also testing hugepage allocations.
193      - d/dpdk.conf has an option to drop caches to incease the likeliness of
194        successful 1G hugepage allocations (default off).
195   * d/rules replaced uname -m with DEB_HOST_GNU_CPU (LP: #1551796):
196   * fix testpmd to run without Xen environment (LP: #1551752):
197      - upstream discussion is slow, but we need a fix now. We can drop this
198        and change to the upstream solution when it is available.
199   * avoid errors due to missing modules (LP: #1554397):
200      - d/dpdk-init gracefully warns about missing modules.
201      - d/control now suggests linux-image-generic.
202      - d/dpdk.interfaces has a comment that makes the user aware.
203   * d/dpdk-init fix failure loading vfio-pci (LP: #1554214):
204      - d/dpdk-init no more converts "-" to "_" to make vfio-pci work
205      - d/dpdk.interfaces enhanced comments and updated examples
206      - d/dpdk-doc.README.debian got extra notes about using some modules
207   * unify whitespace/tabs in packaging and scripts
208      - tabs/spaces to just spaces in d/dpdk-init and d/dpdk.init.
209      - few remaining spaces to tabs in d/rules
210   * d/t/test-* now satisfy shellcheck
211   * d/* fix various comments and guides to be more readable
212   * d/dpdk-init and d/copyright updated copyright information
213
214  -- Christian Ehrhardt <christian.ehrhardt@canonical.com>  Wed, 09 Mar 2016 08:48:58 +0000
215
216 dpdk (2.2.0-0ubuntu3) xenial; urgency=medium
217
218   * Guard dep8 tests against non supported platforms (LP: #1551158):
219     - d/t/control now avoids failing due to "dependencies are unsatisfiable"
220       when fetching packages. The packages architecture restrictions got added
221       to avoid that.
222     - d/t/check-dpdk-supported-arch.sh is called by all DPDK tests to ensure
223       the platform is supported. If not it skips the test.
224
225  -- Christian Ehrhardt <christian.ehrhardt@canonical.com>  Mon, 29 Feb 2016 11:03:39 +0000
226
227 dpdk (2.2.0-0ubuntu2) xenial; urgency=medium
228
229   [ Christian Ehrhardt ]
230   * fix libdpdk.so library linking (LP: #1547517)
231     - libdpdk.so now has proper linkage information (was underlinked)
232       Note: this can be dropped when moving to DPDK 2.3 with linker script
233             instead of combined shared lib.
234     - remove reference to extra linkage needed when building against -ldpdk
235       in dpdk-doc README.
236     - add dep8 d/t/test-linkage to verify linking dpdk works as expected.
237   * d/control remove ${shlibs:Depends} on package with no linked binary
238     avoiding dpkg-gencontrol build warning about unknown ${shlibs:Depends}.
239   * d/dpdk-doc.README.debian fix path to DPDK build environment variable
240     helper script in README file.
241   * Update VCS Info in d/control to include our repositories.
242
243   [  James Page ]
244   * d/*: wrap-and-sort.
245   * d/control: Trim trailing whitespace.
246
247  -- Christian Ehrhardt <christian.ehrhardt@canonical.com>  Thu, 25 Feb 2016 16:07:21 +0000
248
249 dpdk (2.2.0-0ubuntu1) xenial; urgency=low
250
251   * Merge from Upstream to DPDK 2.2
252     Remaining changes:
253     - Set soabi for the combined shared library
254   * Drop changes:
255     - configuring RTE_LIBNAME to dpdk as it is the upstream default now
256     - enabled formerly non building components as they build properly in 2.2
257     - d/p/ubunut-avoid-texlive-fonts-extra, d/control:
258       Replace use of DejaVuSansMono is no more needed as upstream changed the
259       font. Thereby we can drop our delta.
260     - d/p/ubuntu-fix-gcc5-ftbs.patch no more needed with DPDK 2.2
261   * Added changes
262     - Disable CONFIG_RTE_NEXT_ABI as required for packaging (git 506f51cc)
263     - Enable LIBRTE_PMD_PCAP which is useful for some DPDK testcase examples
264       this adds a build dependency to libpcap-dev
265     - Fully support DH_VERBOSE for build debugging convenience
266     - adapt to new make infrastructure of dpdk 2.2
267     - d/README.debian: convert into d/dpdk-doc.README.debian
268     - d/dpdk-doc.README.debian: update recommendations about sdk env variables
269     - d/dpdk-sdk-env.sh: now deployed in /usr/share/dpdk to be opt in
270     - enable XEN support for dpdk (LP: #1521289).
271
272  -- Christian Ehrhardt <christian.ehrhardt@canonical.com>  Wed, 17 Feb 2016 09:29:28 +0100
273
274 dpdk (2.0.0-0ubuntu3) xenial; urgency=medium
275
276   * Only generate HTML documentation, easing backports to 14.04 and
277     reducing the time to build and size of the -doc package (LP: #1524700).
278
279  -- James Page <james.page@ubuntu.com>  Thu, 10 Dec 2015 10:23:51 +0000
280
281 dpdk (2.0.0-0ubuntu2) xenial; urgency=low
282
283   * d/p/ubunut-avoid-texlive-fonts-extra, d/control:
284     Replace use of DejaVuSansMono by courier and drop dependency on the
285     texlive-fonts-extra package (which is in universe).
286   * d/watch added to allow use of uscan to check for upstream releases.
287   * d/dpdk-init: fix error if bash variables could not be resolved that
288     appeared as "[: -gt: unexpected operator" (had no functional impact)
289   * d/dpdk-init:
290     Replace use of head and cut (in /usr/bin) commands with sed (in /bin)
291     while also adding /usr/bin to the PATH used on direct /etc/init.d/dpdk
292     invocation. The PATH is only updated to be on the safe side, there
293     should be no other commands from /usr/bin used (LP: #1516543).
294   * d/t/test-mountpoint: add dep8 test to cover the issue of LP #1517075.
295   * d/dpdk-dev.install: Copy the SDK makefiles into place (LP: #1517075).
296
297  -- Stefan Bader <stefan.bader@canonical.com>  Tue, 17 Nov 2015 11:50:15 +0100
298
299 dpdk (2.0.0-0ubuntu1) wily; urgency=low
300
301   * Initial release (LP: #1487538)
302
303  -- Stefan Bader <stefan.bader@canonical.com>  Mon, 01 Jun 2015 18:46:38 +0200