net/ena: add device argument to disable LLQ
[dpdk.git] / doc / guides / rel_notes / release_22_07.rst
1 .. SPDX-License-Identifier: BSD-3-Clause
2    Copyright 2022 The DPDK contributors
3
4 .. include:: <isonum.txt>
5
6 DPDK Release 22.07
7 ==================
8
9 .. **Read this first.**
10
11    The text in the sections below explains how to update the release notes.
12
13    Use proper spelling, capitalization and punctuation in all sections.
14
15    Variable and config names should be quoted as fixed width text:
16    ``LIKE_THIS``.
17
18    Build the docs and view the output file to ensure the changes are correct::
19
20       ninja -C build doc
21       xdg-open build/doc/guides/html/rel_notes/release_22_07.html
22
23
24 New Features
25 ------------
26
27 .. This section should contain new features added in this release.
28    Sample format:
29
30    * **Add a title in the past tense with a full stop.**
31
32      Add a short 1-2 sentence description in the past tense.
33      The description should be enough to allow someone scanning
34      the release notes to understand the new feature.
35
36      If the feature adds a lot of sub-features you can use a bullet list
37      like this:
38
39      * Added feature foo to do something.
40      * Enhanced feature bar to do something else.
41
42      Refer to the previous release notes for examples.
43
44      Suggested order in release notes items:
45      * Core libs (EAL, mempool, ring, mbuf, buses)
46      * Device abstraction libs and PMDs (ordered alphabetically by vendor name)
47        - ethdev (lib, PMDs)
48        - cryptodev (lib, PMDs)
49        - eventdev (lib, PMDs)
50        - etc
51      * Other libs
52      * Apps, Examples, Tools (if significant)
53
54      This section is a comment. Do not overwrite or remove it.
55      Also, make sure to start the actual text at the margin.
56      =======================================================
57
58 * **Added initial RISC-V architecture support.***
59
60   Added EAL implementation for RISC-V architecture.
61   The initial device the porting was tested on is
62   a HiFive Unmatched development board based on the SiFive Freedom U740 SoC.
63   In theory this implementation should work
64   with any ``rv64gc`` ISA compatible implementation
65   with MMU supporting a reasonable address space size (U740 uses sv39 MMU).
66
67 * **Added Sequence Lock.**
68
69   Added a new synchronization primitive: the sequence lock
70   (seqlock). A seqlock allows for low overhead, parallel reads. The
71   DPDK seqlock uses a spinlock to serialize multiple writing threads.
72
73 * **Added protocol based input color selection for meter.**
74
75   Added new functions ``rte_mtr_color_in_protocol_set()``,
76   ``rte_mtr_color_in_protocol_get()``,
77   ``rte_mtr_color_in_protocol_priority_get()``,
78   ``rte_mtr_meter_vlan_table_update()``
79   and updated ``struct rte_mtr_params`` and ``struct rte_mtr_capabilities`` to
80   support protocol based input color selection for meter.
81
82 * **Added telemetry for module EEPROM.**
83
84   Added telemetry command to dump module EEPROM.
85   Added support for module EEPROM information format defined in:
86
87     * SFF-8079 revision 1.7
88     * SFF-8472 revision 12.0
89     * SFF-8636 revision 2.7
90
91 * **Added vhost API to get the number of in-flight packets.**
92
93   Added an API which can get the number of in-flight packets in
94   vhost async data path without using lock.
95
96 * **Added vhost async dequeue API to receive packets from guest.**
97
98   Added vhost async dequeue API which can leverage DMA devices to
99   accelerate receiving packets from guest.
100
101 * **Added vhost API to get the device type of a vDPA device.**
102
103   Added an API which can get the device type of vDPA device.
104
105 * **Updated Amazon ena driver.**
106
107   The new driver version (v2.7.0) includes:
108
109   * Added fast mbuf free feature support.
110   * Added ``enable_llq`` device argument for controlling the PMD LLQ
111     (Low Latency Queue) mode.
112
113 * **Updated Intel iavf driver.**
114
115   * Added Tx QoS queue rate limitation support.
116   * Added quanta size configuration support.
117   * Added ``DEV_RX_OFFLOAD_TIMESTAMP`` support.
118   * Added Protocol Agnostic Flow Offloading support in AVF FDIR and RSS.
119
120 * **Updated Intel ice driver.**
121
122  * Added support for RSS RETA configure in DCF mode.
123  * Added support for RSS HASH configure in DCF mode.
124  * Added support for MTU configure in DCF mode.
125  * Added support for promisc configuration in DCF mode.
126  * Added support for MAC configuration in DCF mode.
127  * Added support for VLAN filter and offload configuration in DCF mode.
128  * Added Tx QoS queue / queue group rate limitation configure support.
129  * Added Tx QoS queue / queue group priority configuration support.
130  * Added Tx QoS queue weight configuration support.
131
132 * **Updated Intel igc driver.**
133
134   Added Intel Foxville I226 devices in ``igc`` driver.
135   See the doc:`../nics/igc` NIC guide for more details.
136
137 * **Updated Mellanox mlx5 driver.**
138
139   * Added support for promiscuous mode on Windows.
140   * Added support for MTU on Windows.
141   * Added matching and RSS on IPsec ESP.
142
143 * **Updated VMware vmxnet3 networking driver.**
144
145   * Added version 5 support.
146   * Added RETA query and RETA update support.
147   * Added version 6 support with some new features:
148
149     * Increased maximum MTU up to 9190;
150     * Increased maximum number of Rx and Tx queues;
151     * Removed power-of-two limitations on Rx and Tx queue size;
152     * Extended interrupt structures (required for additional queues).
153
154 * **Updated Wangxun ngbe driver.**
155
156   * Added support for yt8531s PHY.
157
158 * **Added Elliptic Curve Diffie-Hellman (ECDH) algorithm in cryptodev.**
159
160   Added support for Elliptic Curve Diffie Hellman (ECDH) asymmetric
161   algorithm in cryptodev.
162
163 * **Updated Marvell cnxk crypto driver.**
164
165   * Added AH mode support in lookaside protocol (IPsec) for CN9K & CN10K.
166   * Added AES-GMAC support in lookaside protocol (IPsec) for CN9K & CN10K.
167
168 * **Updated Intel QuickAssist Technology (QAT) crypto PMD.**
169
170   * Added support for secp384r1 elliptic curve.
171
172 * **Added eventdev API to quiesce an event port.**
173
174   Added the function ``rte_event_port_quiesce()``
175   to quiesce any lcore-specific resources consumed by the event port,
176   when the lcore is no more associated with an event port.
177
178 * **Added support for setting queue attributes at runtime in eventdev.**
179
180   Added new API ``rte_event_queue_attr_set()``, to set event queue attributes
181   at runtime.
182
183 * **Added new queues attributes weight and affinity in eventdev.**
184
185   Defined new event queue attributes weight and affinity as below:
186
187   * ``RTE_EVENT_QUEUE_ATTR_WEIGHT``
188   * ``RTE_EVENT_QUEUE_ATTR_AFFINITY``
189
190 * **Added telemetry to dmadev library.**
191
192   Added telemetry callback functions which allow for a list of DMA devices,
193   statistics and other DMA device information to be queried.
194
195 * **Added scalar version of the LPM library.**
196
197   Added scalar implementation of ``rte_lpm_lookupx4``.
198   This is a fall-back implementation for platforms that
199   don't support vector operations.
200
201 * **Merged l3fwd-acl into l3fwd example.**
202
203   Merged l3fwd-acl code into l3fwd as l3fwd-acl contains duplicate
204   and common functions to l3fwd.
205
206
207 Removed Items
208 -------------
209
210 .. This section should contain removed items in this release. Sample format:
211
212    * Add a short 1-2 sentence description of the removed item
213      in the past tense.
214
215    This section is a comment. Do not overwrite or remove it.
216    Also, make sure to start the actual text at the margin.
217    =======================================================
218
219
220 API Changes
221 -----------
222
223 .. This section should contain API changes. Sample format:
224
225    * sample: Add a short 1-2 sentence description of the API change
226      which was announced in the previous releases and made in this release.
227      Start with a scope label like "ethdev:".
228      Use fixed width quotes for ``function_names`` or ``struct_names``.
229      Use the past tense.
230
231    This section is a comment. Do not overwrite or remove it.
232    Also, make sure to start the actual text at the margin.
233    =======================================================
234
235 * The DPDK header file ``rte_altivec.h``,
236   which is a wrapper for the PPC header file ``altivec.h``,
237   undefines the AltiVec keyword ``vector``.
238   The alternative keyword ``__vector`` should be used instead.
239
240 * Experimental structures ``struct rte_mtr_params``
241   and ``struct rte_mtr_capabilities`` updated to support
242   protocol based input color for meter.
243
244
245 ABI Changes
246 -----------
247
248 .. This section should contain ABI changes. Sample format:
249
250    * sample: Add a short 1-2 sentence description of the ABI change
251      which was announced in the previous releases and made in this release.
252      Start with a scope label like "ethdev:".
253      Use fixed width quotes for ``function_names`` or ``struct_names``.
254      Use the past tense.
255
256    This section is a comment. Do not overwrite or remove it.
257    Also, make sure to start the actual text at the margin.
258    =======================================================
259
260 * No ABI change that would break compatibility with 21.11.
261
262
263 Known Issues
264 ------------
265
266 .. This section should contain new known issues in this release. Sample format:
267
268    * **Add title in present tense with full stop.**
269
270      Add a short 1-2 sentence description of the known issue
271      in the present tense. Add information on any known workarounds.
272
273    This section is a comment. Do not overwrite or remove it.
274    Also, make sure to start the actual text at the margin.
275    =======================================================
276
277
278 Tested Platforms
279 ----------------
280
281 .. This section should contain a list of platforms that were tested
282    with this release.
283
284    The format is:
285
286    * <vendor> platform with <vendor> <type of devices> combinations
287
288      * List of CPU
289      * List of OS
290      * List of devices
291      * Other relevant details...
292
293    This section is a comment. Do not overwrite or remove it.
294    Also, make sure to start the actual text at the margin.
295    =======================================================