db205674846495475609a68fef4e170b4f1a10f8
[dpdk.git] / doc / guides / rel_notes / release_16_11.rst
1 DPDK Release 16.11
2 ==================
3
4 .. **Read this first.**
5
6    The text below explains how to update the release notes.
7
8    Use proper spelling, capitalization and punctuation in all sections.
9
10    Variable and config names should be quoted as fixed width text: ``LIKE_THIS``.
11
12    Build the docs and view the output file to ensure the changes are correct::
13
14       make doc-guides-html
15
16       firefox build/doc/html/guides/rel_notes/release_16_11.html
17
18
19 New Features
20 ------------
21
22 .. This section should contain new features added in this release. Sample format:
23
24    * **Add a title in the past tense with a full stop.**
25
26      Add a short 1-2 sentence description in the past tense. The description
27      should be enough to allow someone scanning the release notes to understand
28      the new feature.
29
30      If the feature adds a lot of sub-features you can use a bullet list like this.
31
32      * Added feature foo to do something.
33      * Enhanced feature bar to do something else.
34
35      Refer to the previous release notes for examples.
36
37      This section is a comment. Make sure to start the actual text at the margin.
38
39
40 * **Added software parser for packet type.**
41
42   * Added a new function ``rte_pktmbuf_read()`` to read the packet data from an
43     mbuf chain, linearizing if required.
44   * Added a new function ``rte_net_get_ptype()`` to parse an Ethernet packet
45     in an mbuf chain and retrieve its packet type by software.
46   * Added new functions ``rte_get_ptype_*()`` to dump a packet type as a string.
47
48 * **Improved offloads support in mbuf.**
49
50   * Added a new function ``rte_raw_cksum_mbuf()`` to process the checksum of
51     data embedded in an mbuf chain.
52   * Added new Rx checksum flags in mbufs to describe more states: unknown,
53     good, bad, or not present (useful for virtual drivers). This modification
54     was done for IP and L4.
55   * Added a new RX LRO mbuf flag, used when packets are coalesced. This
56     flag indicates that the segment size of original packets is known.
57
58 * **Added vhost-user dequeue zero copy support**
59
60   The copy in dequeue path is saved, which is meant to improve the performance.
61   In the VM2VM case, the boost is quite impressive. The bigger the packet size,
62   the bigger performance boost you may get. However, for VM2NIC case, there
63   are some limitations, yet the boost is not that impressive as VM2VM case.
64   It may even drop quite a bit for small packets.
65
66   For such reason, this feature is disabled by default. It can be enabled when
67   ``RTE_VHOST_USER_DEQUEUE_ZERO_COPY`` flag is given. Check the vhost section
68   at programming guide for more information.
69
70 * **Added vhost-user indirect descriptors support.**
71
72   If indirect descriptor feature is negotiated, each packet sent by the guest
73   will take exactly one slot in the enqueue virtqueue. Without the feature, in
74   current version, even 64 bytes packets take two slots with Virtio PMD on guest
75   side.
76
77   The main impact is better performance for 0% packet loss use-cases, as it
78   behaves as if the virtqueue size was enlarged, so more packets can be buffered
79   in case of system perturbations. On the downside, small performance degradation
80   is measured when running micro-benchmarks.
81
82 * **Added vhost PMD xstats.**
83
84   Added extended statistics to vhost PMD from per port perspective.
85
86 * **Supported offloads with virtio.**
87
88   * Rx/Tx checksums
89   * LRO
90   * TSO
91
92 * **Added virtio NEON support for ARM.**
93
94 * **Updated the ixgbe base driver.**
95
96   Updated the ixgbe base driver, including the following changes:
97
98   * add X550em_a 10G PHY support
99   * support flow control auto negotiation for X550em_a 1G PHY
100   * add X550em_a FW ALEF support
101   * increase mailbox version to ixgbe_mbox_api_13
102   * add two MAC ops for Hyper-V support
103
104 * **Updated the QAT PMD.**
105
106   The QAT PMD was updated with following support:
107
108   * MD5_HMAC algorithm
109   * SHA224-HMAC algorithm
110   * SHA384-HMAC algorithm
111   * GMAC algorithm
112   * KASUMI (F8 and F9) algorithm
113   * 3DES algorithm
114   * NULL algorithm
115   * C3XXX device
116   * C62XX device
117
118 * **Added openssl PMD.**
119
120   A new crypto PMD has been added, which provides several ciphering and hashing.
121   All cryptography operations are using Openssl library crypto API.
122
123 * **Updated the IPsec example with following support:**
124
125   * configuration file
126   * AES CBC IV generation with cipher forward function
127   * AES GCM/CTR mode
128
129 * **Added support for new gcc -march option.**
130
131   The GCC 4.9 ``-march`` option supports the Intel processor code names.
132   The config option ``RTE_MACHINE`` can be used to pass code names to the compiler as ``-march`` flag.
133
134
135 Resolved Issues
136 ---------------
137
138 .. This section should contain bug fixes added to the relevant sections. Sample format:
139
140    * **code/section Fixed issue in the past tense with a full stop.**
141
142      Add a short 1-2 sentence description of the resolved issue in the past tense.
143      The title should contain the code/lib section like a commit message.
144      Add the entries in alphabetic order in the relevant sections below.
145
146    This section is a comment. Make sure to start the actual text at the margin.
147
148
149 EAL
150 ~~~
151
152
153 Drivers
154 ~~~~~~~
155
156
157 Libraries
158 ~~~~~~~~~
159
160
161 Examples
162 ~~~~~~~~
163
164
165 Other
166 ~~~~~
167
168
169 Known Issues
170 ------------
171
172 .. This section should contain new known issues in this release. Sample format:
173
174    * **Add title in present tense with full stop.**
175
176      Add a short 1-2 sentence description of the known issue in the present
177      tense. Add information on any known workarounds.
178
179    This section is a comment. Make sure to start the actual text at the margin.
180
181
182 API Changes
183 -----------
184
185 .. This section should contain API changes. Sample format:
186
187    * Add a short 1-2 sentence description of the API change. Use fixed width
188      quotes for ``rte_function_names`` or ``rte_struct_names``. Use the past tense.
189
190    This section is a comment. Make sure to start the actual text at the margin.
191
192 * The driver names have been changed. It especially impacts ``--vdev`` arguments.
193   Examples: ``eth_pcap`` becomes ``net_pcap``
194   and ``cryptodev_aesni_mb_pmd`` becomes ``crypto_aesni_mb``.
195
196 * The log history is removed.
197
198 * The ``rte_ivshmem`` feature (including library and EAL code) has been removed
199   in 16.11 because it had some design issues which were not planned to be fixed.
200
201 * The ``file_name`` data type of ``struct rte_port_source_params`` and
202   ``struct rte_port_sink_params`` is changed from `char *`` to ``const char *``.
203
204 * **Improved device/driver hierarchy and generalized hotplugging**
205
206   Device and driver relationship has been restructured by introducing generic
207   classes. This paves way for having PCI, VDEV and other device types as
208   just instantiated objects rather than classes in themselves. Hotplugging too
209   has been generalized into EAL so that ethernet or crypto devices can use the
210   common infrastructure.
211
212   * removed ``pmd_type`` as way of segregation of devices
213   * moved ``numa_node`` and ``devargs`` into ``rte_driver`` from
214     ``rte_pci_driver``. These can now be used by any instantiated object of
215     ``rte_driver``.
216   * added ``rte_device`` class and all PCI and VDEV devices inherit from it
217   * renamed devinit/devuninit handlers to probe/remove to make it more
218     semantically correct with respect to device<=>driver relationship
219   * moved hotplugging support to EAL. Hereafter, PCI and vdev can use the
220     APIs ``rte_eal_dev_attach`` and ``rte_eal_dev_detach``.
221   * helpers and support macros have been renamed to make them more synonymous
222     with their device types
223     (e.g. ``PMD_REGISTER_DRIVER`` => ``RTE_PMD_REGISTER_PCI``)
224   * Device naming functions have been generalized from ethdev and cryptodev
225     to EAL. ``rte_eal_pci_device_name`` has been introduced for obtaining
226     unique device name from PCI Domain-BDF description.
227   * Virtual device registration APIs have been added: ``rte_eal_vdrv_register``
228     and ``rte_eal_vdrv_unregister``.
229
230
231 ABI Changes
232 -----------
233
234 .. This section should contain ABI changes. Sample format:
235
236    * Add a short 1-2 sentence description of the ABI change that was announced in
237      the previous releases and made in this release. Use fixed width quotes for
238      ``rte_function_names`` or ``rte_struct_names``. Use the past tense.
239
240    This section is a comment. Make sure to start the actual text at the margin.
241
242
243
244 Shared Library Versions
245 -----------------------
246
247 .. Update any library version updated in this release and prepend with a ``+``
248    sign, like this:
249
250      libethdev.so.4
251      librte_acl.so.2
252    + librte_cfgfile.so.2
253      librte_cmdline.so.2
254
255
256
257 The libraries prepended with a plus sign were incremented in this version.
258
259 .. code-block:: diff
260
261    + libethdev.so.5
262      librte_acl.so.2
263      librte_cfgfile.so.2
264      librte_cmdline.so.2
265    + librte_cryptodev.so.2
266      librte_distributor.so.1
267    + librte_eal.so.3
268      librte_hash.so.2
269      librte_ip_frag.so.1
270      librte_jobstats.so.1
271      librte_kni.so.2
272      librte_kvargs.so.1
273      librte_lpm.so.2
274      librte_mbuf.so.2
275      librte_mempool.so.2
276      librte_meter.so.1
277      librte_pdump.so.1
278      librte_pipeline.so.3
279      librte_pmd_bond.so.1
280      librte_pmd_ring.so.2
281      librte_port.so.3
282      librte_power.so.1
283      librte_reorder.so.1
284      librte_ring.so.1
285      librte_sched.so.1
286      librte_table.so.2
287      librte_timer.so.1
288      librte_vhost.so.3
289
290
291 Tested Platforms
292 ----------------
293
294 .. This section should contain a list of platforms that were tested with this release.
295
296    The format is:
297
298    #. Platform name.
299
300       * Platform details.
301       * Platform details.
302
303    This section is a comment. Make sure to start the actual text at the margin.
304
305
306 Tested NICs
307 -----------
308
309 .. This section should contain a list of NICs that were tested with this release.
310
311    The format is:
312
313    #. NIC name.
314
315       * NIC details.
316       * NIC details.
317
318    This section is a comment. Make sure to start the actual text at the margin.
319
320
321 Tested OSes
322 -----------
323
324 .. This section should contain a list of OSes that were tested with this release.
325    The format is as follows, in alphabetical order:
326
327    * CentOS 7.0
328    * Fedora 23
329    * Fedora 24
330    * FreeBSD 10.3
331    * Red Hat Enterprise Linux 7.2
332    * SUSE Enterprise Linux 12
333    * Ubuntu 15.10
334    * Ubuntu 16.04 LTS
335    * Wind River Linux 8
336
337    This section is a comment. Make sure to start the actual text at the margin.