examples/vm_power: show warning when more than 64 cores
[dpdk.git] / doc / guides / rel_notes / known_issues.rst
1 ..  BSD LICENSE
2     Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
3     All rights reserved.
4
5     Redistribution and use in source and binary forms, with or without
6     modification, are permitted provided that the following conditions
7     are met:
8
9     * Redistributions of source code must retain the above copyright
10     notice, this list of conditions and the following disclaimer.
11     * Redistributions in binary form must reproduce the above copyright
12     notice, this list of conditions and the following disclaimer in
13     the documentation and/or other materials provided with the
14     distribution.
15     * Neither the name of Intel Corporation nor the names of its
16     contributors may be used to endorse or promote products derived
17     from this software without specific prior written permission.
18
19     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20     "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21     LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22     A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23     OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24     SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25     LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26     DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27     THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28     (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29     OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30
31 Known Issues and Limitations
32 ============================
33
34 This section describes known issues with the DPDK software.
35
36 Unit Test for Link Bonding may fail at test_tlb_tx_burst()
37 ----------------------------------------------------------
38 +--------------------------------+--------------------------------------------------------------------------------------+
39 | Title                          | Unit Test for Link Bonding may fail at test_tlb_tx_burst()                           |
40 |                                |                                                                                      |
41 +================================+======================================================================================+
42 | Reference #                    | IXA00390304                                                                          |
43 |                                |                                                                                      |
44 +--------------------------------+--------------------------------------------------------------------------------------+
45 | Description                    | Unit tests will fail at test_tlb_tx_burst function with error for uneven distribution|
46 |                                | of packets.                                                                          |
47 |                                |                                                                                      |
48 +--------------------------------+--------------------------------------------------------------------------------------+
49 | Implication                    | Unit test link_bonding_autotest will fail                                            |
50 |                                |                                                                                      |
51 |                                |                                                                                      |
52 +--------------------------------+--------------------------------------------------------------------------------------+
53 | Resolution/ Workaround         | There is no workaround available.                                                    |
54 |                                |                                                                                      |
55 +--------------------------------+--------------------------------------------------------------------------------------+
56 | Affected Environment/ Platform | Fedora 20                                                                            |
57 |                                |                                                                                      |
58 +--------------------------------+--------------------------------------------------------------------------------------+
59 | Driver/Module                  | Link Bonding                                                                         |
60 |                                |                                                                                      |
61 +--------------------------------+--------------------------------------------------------------------------------------+
62
63
64 Pause Frame Forwarding does not work properly on igb
65 ----------------------------------------------------
66
67 +--------------------------------+--------------------------------------------------------------------------------------+
68 | Title                          | Pause Frame forwarding does not work properly on igb                                 |
69 |                                |                                                                                      |
70 +================================+======================================================================================+
71 | Reference #                    | IXA00384637                                                                          |
72 |                                |                                                                                      |
73 +--------------------------------+--------------------------------------------------------------------------------------+
74 | Description                    | For igb  devices rte_eth_flow_ctrl_set is not working as expected.                   |
75 |                                | Pause frames are always forwarded on igb, regardless of the RFCE, MPMCF and DPF      |
76 |                                | registers.                                                                           |
77 |                                |                                                                                      |
78 +--------------------------------+--------------------------------------------------------------------------------------+
79 | Implication                    | Pause frames will never be rejected by the host on 1G NICs and they will always be   |
80 |                                | forwarded.                                                                           |
81 |                                |                                                                                      |
82 +--------------------------------+--------------------------------------------------------------------------------------+
83 | Resolution/ Workaround         | There is no workaround available.                                                    |
84 |                                |                                                                                      |
85 +--------------------------------+--------------------------------------------------------------------------------------+
86 | Affected Environment/ Platform | All                                                                                  |
87 |                                |                                                                                      |
88 +--------------------------------+--------------------------------------------------------------------------------------+
89 | Driver/Module                  | Poll Mode Driver (PMD)                                                               |
90 |                                |                                                                                      |
91 +--------------------------------+--------------------------------------------------------------------------------------+
92
93 In packets provided by the PMD, some flags are missing
94 ------------------------------------------------------
95
96 +--------------------------------+--------------------------------------------------------------------------------------+
97 | Title                          | In packets provided by the PMD, some flags are missing                               |
98 |                                |                                                                                      |
99 +================================+======================================================================================+
100 | Reference #                    | 3                                                                                    |
101 |                                |                                                                                      |
102 +--------------------------------+--------------------------------------------------------------------------------------+
103 | Description                    | In packets provided by the PMD, some flags are missing.                              |
104 |                                | The application does not have access to information provided by the hardware         |
105 |                                | (packet is broadcast, packet is multicast, packet is IPv4 and so on).                |
106 |                                |                                                                                      |
107 +--------------------------------+--------------------------------------------------------------------------------------+
108 | Implication                    | The “ol_flags” field in the “rte_mbuf” structure is not correct and should not be    |
109 |                                | used.                                                                                |
110 |                                |                                                                                      |
111 +--------------------------------+--------------------------------------------------------------------------------------+
112 | Resolution                     | The application has to parse the Ethernet header itself to get the information,      |
113 |                                | which is slower.                                                                     |
114 |                                |                                                                                      |
115 +--------------------------------+--------------------------------------------------------------------------------------+
116 | Affected Environment/ Platform | All                                                                                  |
117 |                                |                                                                                      |
118 +--------------------------------+--------------------------------------------------------------------------------------+
119 | Driver/Module                  | Poll Mode Driver (PMD)                                                               |
120 |                                |                                                                                      |
121 +--------------------------------+--------------------------------------------------------------------------------------+
122
123 The rte_malloc library is not fully implemented
124 -----------------------------------------------
125
126 +--------------------------------+--------------------------------------------------------------------------------------+
127 | Title                          | The rte_malloc library is not fully implemented                                      |
128 |                                |                                                                                      |
129 +================================+======================================================================================+
130 | Reference #                    | 6                                                                                    |
131 |                                |                                                                                      |
132 +--------------------------------+--------------------------------------------------------------------------------------+
133 | Description                    | The rte_malloc library is not fully implemented.                                     |
134 |                                |                                                                                      |
135 +--------------------------------+--------------------------------------------------------------------------------------+
136 | Implication                    | All debugging features of rte_malloc library described in architecture documentation |
137 |                                | are not yet implemented.                                                             |
138 |                                |                                                                                      |
139 +--------------------------------+--------------------------------------------------------------------------------------+
140 | Resolution                     | No workaround available.                                                             |
141 |                                |                                                                                      |
142 +--------------------------------+--------------------------------------------------------------------------------------+
143 | Affected Environment/ Platform | All                                                                                  |
144 |                                |                                                                                      |
145 +--------------------------------+--------------------------------------------------------------------------------------+
146 | Driver/Module                  | rte_malloc                                                                           |
147 |                                |                                                                                      |
148 +--------------------------------+--------------------------------------------------------------------------------------+
149
150 HPET reading is slow
151 --------------------
152
153 +--------------------------------+--------------------------------------------------------------------------------------+
154 | Title                          | HPET reading is slow                                                                 |
155 |                                |                                                                                      |
156 +================================+======================================================================================+
157 | Reference #                    | 7                                                                                    |
158 |                                |                                                                                      |
159 +--------------------------------+--------------------------------------------------------------------------------------+
160 | Description                    | Reading the HPET chip is slow.                                                       |
161 |                                |                                                                                      |
162 +--------------------------------+--------------------------------------------------------------------------------------+
163 | Implication                    | An application that calls “rte_get_hpet_cycles()” or “rte_timer_manage()” runs       |
164 |                                | slower.                                                                              |
165 |                                |                                                                                      |
166 +--------------------------------+--------------------------------------------------------------------------------------+
167 | Resolution                     | The application should not call these functions too often in the main loop.          |
168 |                                | An alternative is to use the TSC register through “rte_rdtsc()” which is faster,     |
169 |                                | but specific to an lcore and is a cycle reference, not a time reference.             |
170 |                                |                                                                                      |
171 +--------------------------------+--------------------------------------------------------------------------------------+
172 | Affected Environment/ Platform | All                                                                                  |
173 |                                |                                                                                      |
174 +--------------------------------+--------------------------------------------------------------------------------------+
175 | Driver/Module                  | Environment Abstraction Layer (EAL)                                                  |
176 |                                |                                                                                      |
177 +--------------------------------+--------------------------------------------------------------------------------------+
178
179 HPET timers do not work on the Osage customer reference platform
180 ----------------------------------------------------------------
181
182 +--------------------------------+--------------------------------------------------------------------------------------+
183 | Title                          | HPET timers do not work on the Osage customer reference platform                     |
184 |                                |                                                                                      |
185 +================================+======================================================================================+
186 | Reference #                    | 17                                                                                   |
187 |                                |                                                                                      |
188 +--------------------------------+--------------------------------------------------------------------------------------+
189 | Description                    | HPET timers do not work on the Osage customer reference platform                     |
190 |                                | which includes an Intel® Xeon® processor 5500 series processor) using the            |
191 |                                | released BIOS from Intel.                                                            |
192 |                                |                                                                                      |
193 +--------------------------------+--------------------------------------------------------------------------------------+
194 | Implication                    | On Osage boards, the implementation of the “rte_delay_us()” function must be changed |
195 |                                | to not use the HPET timer.                                                           |
196 |                                |                                                                                      |
197 +--------------------------------+--------------------------------------------------------------------------------------+
198 | Resolution                     | This can be addressed by building the system with the “CONFIG_RTE_LIBEAL_USE_HPET=n” |
199 |                                | configuration option or by using the --no-hpet EAL option.                           |
200 |                                |                                                                                      |
201 +--------------------------------+--------------------------------------------------------------------------------------+
202 | Affected Environment/ Platform | The Osage customer reference platform.                                               |
203 |                                |                                                                                      |
204 |                                | Other vendor platforms with Intel®  Xeon® processor 5500 series processors should    |
205 |                                | work correctly, provided the BIOS supports HPET.                                     |
206 |                                |                                                                                      |
207 +--------------------------------+--------------------------------------------------------------------------------------+
208 | Driver/Module                  | lib/librte_eal/common/include/rte_cycles.h                                           |
209 |                                |                                                                                      |
210 +--------------------------------+--------------------------------------------------------------------------------------+
211
212 Not all variants of supported NIC types have been used in testing
213 -----------------------------------------------------------------
214
215 +--------------------------------+--------------------------------------------------------------------------------------+
216 | Title                          | Not all variants of supported NIC types have been used in testing                    |
217 |                                |                                                                                      |
218 +================================+======================================================================================+
219 | Reference #                    | 28                                                                                   |
220 |                                |                                                                                      |
221 +--------------------------------+--------------------------------------------------------------------------------------+
222 | Description                    | The supported network interface cards can come in a number of variants with          |
223 |                                | different device ID's. Not all of these variants have been tested with the Intel®    |
224 |                                | DPDK.                                                                                |
225 |                                |                                                                                      |
226 |                                | The NIC device identifiers used during testing:                                      |
227 |                                |                                                                                      |
228 |                                | *   Intel® Ethernet Controller XL710 for 40GbE QSFP+ [8086:1584]                     |
229 |                                |                                                                                      |
230 |                                | *   Intel® Ethernet Controller XL710 for 40GbE QSFP+ [8086:1583]                     |
231 |                                |                                                                                      |
232 |                                | *   Intel® Ethernet Controller X710 for 10GbE SFP+ [8086:1572]                       |
233 |                                |                                                                                      |
234 |                                | *   Intel® 82576 Gigabit Ethernet Controller [8086:10c9]                             |
235 |                                |                                                                                      |
236 |                                | *   Intel® 82576 Quad Copper Gigabit Ethernet Controller [8086:10e8]                 |
237 |                                |                                                                                      |
238 |                                | *   Intel® 82580 Dual Copper Gigabit Ethernet Controller [8086:150e]                 |
239 |                                |                                                                                      |
240 |                                | *   Intel® I350 Quad Copper Gigabit Ethernet Controller [8086:1521]                  |
241 |                                |                                                                                      |
242 |                                | *   Intel® 82599 Dual Fibre 10 Gigabit Ethernet Controller [8086:10fb]               |
243 |                                |                                                                                      |
244 |                                | *   Intel® Ethernet Server Adapter X520-T2 [8086: 151c]                              |
245 |                                |                                                                                      |
246 |                                | *   Intel® Ethernet Controller X540-T2 [8086:1528]                                   |
247 |                                |                                                                                      |
248 |                                | *   Intel® 82574L Gigabit Network Connection [8086:10d3]                             |
249 |                                |                                                                                      |
250 |                                | *   Emulated Intel® 82540EM Gigabit Ethernet Controller [8086:100e]                  |
251 |                                |                                                                                      |
252 |                                | *   Emulated Intel® 82545EM Gigabit Ethernet Controller [8086:100f]                  |
253 |                                |                                                                                      |
254 |                                | *   Intel® Ethernet Server Adapter X520-4 [8086:154a]                                |
255 |                                |                                                                                      |
256 |                                | *   Intel® Ethernet Controller I210 [8086:1533]                                      |
257 |                                |                                                                                      |
258 +--------------------------------+--------------------------------------------------------------------------------------+
259 | Implication                    | Risk of issues with untested variants.                                               |
260 |                                |                                                                                      |
261 +--------------------------------+--------------------------------------------------------------------------------------+
262 | Resolution                     | Use tested NIC variants. For those supported Ethernet controllers, additional device |
263 |                                | IDs may be added to the software if required.                                        |
264 |                                |                                                                                      |
265 +--------------------------------+--------------------------------------------------------------------------------------+
266 | Affected Environment/ Platform | All                                                                                  |
267 |                                |                                                                                      |
268 +--------------------------------+--------------------------------------------------------------------------------------+
269 | Driver/Module                  | Poll-mode drivers                                                                    |
270 |                                |                                                                                      |
271 +--------------------------------+--------------------------------------------------------------------------------------+
272
273 Multi-process sample app requires exact memory mapping
274 ------------------------------------------------------
275
276 +--------------------------------+--------------------------------------------------------------------------------------+
277 | Title                          | Multi-process sample app requires exact memory mapping                               |
278 |                                |                                                                                      |
279 +================================+======================================================================================+
280 | Reference #                    | 30                                                                                   |
281 |                                |                                                                                      |
282 +--------------------------------+--------------------------------------------------------------------------------------+
283 | Description                    | The multi-process example application assumes that                                   |
284 |                                | it is possible to map the hugepage memory to the same virtual addresses in client    |
285 |                                | and server applications. Occasionally, very rarely with 64-bit, this does not occur  |
286 |                                | and a client application will fail on startup. The Linux                             |
287 |                                | “address-space layout randomization” security feature can sometimes cause this to    |
288 |                                | occur.                                                                               |
289 |                                |                                                                                      |
290 +--------------------------------+--------------------------------------------------------------------------------------+
291 | Implication                    | A multi-process client application fails to initialize.                              |
292 |                                |                                                                                      |
293 +--------------------------------+--------------------------------------------------------------------------------------+
294 | Resolution                     | See the “Multi-process Limitations” section in the Intel®  DPDK Programmer’s Guide   |
295 |                                | for more information.                                                                |
296 |                                |                                                                                      |
297 +--------------------------------+--------------------------------------------------------------------------------------+
298 | Affected Environment/ Platform | All                                                                                  |
299 |                                |                                                                                      |
300 +--------------------------------+--------------------------------------------------------------------------------------+
301 | Driver/Module                  | Multi-process example application                                                    |
302 |                                |                                                                                      |
303 +--------------------------------+--------------------------------------------------------------------------------------+
304
305 Packets are not sent by the 1 GbE/10 GbE SR-IOV driver when the source MAC address is not the MAC address assigned to the VF NIC
306 --------------------------------------------------------------------------------------------------------------------------------
307
308 +--------------------------------+--------------------------------------------------------------------------------------+
309 | Title                          | Packets are not sent by the 1 GbE/10 GbE SR-IOV driver when the source MAC address   |
310 |                                | is not the MAC address assigned to the VF NIC                                        |
311 |                                |                                                                                      |
312 +================================+======================================================================================+
313 | Reference #                    | IXA00168379                                                                          |
314 |                                |                                                                                      |
315 +--------------------------------+--------------------------------------------------------------------------------------+
316 | Description                    | The 1 GbE/10 GbE SR-IOV driver can only send packets when the Ethernet header’s      |
317 |                                | source MAC address is the same as that of the VF NIC. The reason for this is that    |
318 |                                | the Linux “ixgbe” driver module in the host OS has its anti-spoofing feature enabled.|
319 |                                |                                                                                      |
320 +--------------------------------+--------------------------------------------------------------------------------------+
321 | Implication                    | Packets sent using the 1 GbE/10 GbE SR-IOV driver must have the source MAC address   |
322 |                                | correctly set to that of the VF NIC. Packets with other source address values are    |
323 |                                | dropped by the NIC if the application attempts to transmit them.                     |
324 |                                |                                                                                      |
325 +--------------------------------+--------------------------------------------------------------------------------------+
326 | Resolution/ Workaround         | Configure the Ethernet source address in each packet to match that of the VF NIC.    |
327 |                                |                                                                                      |
328 +--------------------------------+--------------------------------------------------------------------------------------+
329 | Affected Environment/ Platform | All                                                                                  |
330 |                                |                                                                                      |
331 +--------------------------------+--------------------------------------------------------------------------------------+
332 | Driver/Module                  | 1 GbE/10 GbE VF Poll Mode Driver (PMD)                                               |
333 |                                |                                                                                      |
334 +--------------------------------+--------------------------------------------------------------------------------------+
335
336 SR-IOV drivers do not fully implement the rte_ethdev API
337 --------------------------------------------------------
338
339 +--------------------------------+--------------------------------------------------------------------------------------+
340 | Title                          | SR-IOV drivers do not fully implement the rte_ethdev API                             |
341 |                                |                                                                                      |
342 +================================+======================================================================================+
343 | Reference #                    | 59                                                                                   |
344 |                                |                                                                                      |
345 +--------------------------------+--------------------------------------------------------------------------------------+
346 | Description                    | The SR-IOV drivers only supports the following rte_ethdev API functions:             |
347 |                                |                                                                                      |
348 |                                | *   rte_eth_dev_configure()                                                          |
349 |                                |                                                                                      |
350 |                                | *   rte_eth_tx_queue_setup()                                                         |
351 |                                |                                                                                      |
352 |                                | *   rte_eth_rx_queue_setup()                                                         |
353 |                                |                                                                                      |
354 |                                | *   rte_eth_dev_info_get()                                                           |
355 |                                |                                                                                      |
356 |                                | *   rte_eth_dev_start()                                                              |
357 |                                |                                                                                      |
358 |                                | *   rte_eth_tx_burst()                                                               |
359 |                                |                                                                                      |
360 |                                | *   rte_eth_rx_burst()                                                               |
361 |                                |                                                                                      |
362 |                                | *   rte_eth_dev_stop()                                                               |
363 |                                |                                                                                      |
364 |                                | *   rte_eth_stats_get()                                                              |
365 |                                |                                                                                      |
366 |                                | *   rte_eth_stats_reset()                                                            |
367 |                                |                                                                                      |
368 |                                | *   rte_eth_link_get()                                                               |
369 |                                |                                                                                      |
370 |                                | *   rte_eth_link_get_no_wait()                                                       |
371 |                                |                                                                                      |
372 +--------------------------------+--------------------------------------------------------------------------------------+
373 | Implication                    | Calling an unsupported function will result in an application error.                 |
374 |                                |                                                                                      |
375 +--------------------------------+--------------------------------------------------------------------------------------+
376 | Resolution/ Workaround         | Do not use other rte_ethdev API functions in applications that use the SR-IOV        |
377 |                                | drivers.                                                                             |
378 |                                |                                                                                      |
379 +--------------------------------+--------------------------------------------------------------------------------------+
380 | Affected Environment/ Platform | All                                                                                  |
381 |                                |                                                                                      |
382 +--------------------------------+--------------------------------------------------------------------------------------+
383 | Driver/Module                  | VF Poll Mode Driver (PMD)                                                            |
384 |                                |                                                                                      |
385 +--------------------------------+--------------------------------------------------------------------------------------+
386
387 PMD does not work with --no-huge EAL command line parameter
388 -----------------------------------------------------------
389
390 +--------------------------------+--------------------------------------------------------------------------------------+
391 | Title                          | PMD does not work with --no-huge EAL command line parameter                          |
392 |                                |                                                                                      |
393 +================================+======================================================================================+
394 | Reference #                    | IXA00373461                                                                          |
395 |                                |                                                                                      |
396 +--------------------------------+--------------------------------------------------------------------------------------+
397 | Description                    | Currently, the DPDK does not store any information about memory allocated by         |
398 |                                | malloc() (for example, NUMA node, physical address), hence PMD drivers do not work   |
399 |                                | when the --no-huge command line parameter is supplied to EAL.                        |
400 |                                |                                                                                      |
401 +--------------------------------+--------------------------------------------------------------------------------------+
402 | Implication                    | Sending and receiving data with PMD will not work.                                   |
403 |                                |                                                                                      |
404 +--------------------------------+--------------------------------------------------------------------------------------+
405 | Resolution/ Workaround         | Use huge page memory or use VFIO to map devices.                                     |
406 |                                |                                                                                      |
407 +--------------------------------+--------------------------------------------------------------------------------------+
408 | Affected Environment/ Platform | Systems running the DPDK on Linux                                                    |
409 |                                |                                                                                      |
410 +--------------------------------+--------------------------------------------------------------------------------------+
411 | Driver/Module                  | Poll Mode Driver (PMD)                                                               |
412 |                                |                                                                                      |
413 +--------------------------------+--------------------------------------------------------------------------------------+
414
415 Some hardware off-load functions are not supported by the VF Driver
416 -------------------------------------------------------------------
417
418 +--------------------------------+--------------------------------------------------------------------------------------+
419 | Title                          | Some hardware off-load functions are not supported by the VF Driver                  |
420 |                                |                                                                                      |
421 +================================+======================================================================================+
422 | Reference #                    | IXA00378813                                                                          |
423 |                                |                                                                                      |
424 +--------------------------------+--------------------------------------------------------------------------------------+
425 | Description                    | Currently, configuration of the following items is not supported by the VF driver:   |
426 |                                |                                                                                      |
427 |                                | *   IP/UDP/TCP checksum offload                                                      |
428 |                                |                                                                                      |
429 |                                | *   Jumbo Frame Receipt                                                              |
430 |                                |                                                                                      |
431 |                                | *   HW Strip CRC                                                                     |
432 |                                |                                                                                      |
433 +--------------------------------+--------------------------------------------------------------------------------------+
434 | Implication                    | Any configuration for these items in the VF register will be ignored. The behavior   |
435 |                                | is dependent on the current PF setting.                                              |
436 |                                |                                                                                      |
437 +--------------------------------+--------------------------------------------------------------------------------------+
438 | Resolution/ Workaround         | For the PF (Physical Function) status on which the VF driver depends, there is an    |
439 |                                | option item under PMD in the config file. For others, the VF will keep the same      |
440 |                                | behavior as PF setting.                                                              |
441 |                                |                                                                                      |
442 +--------------------------------+--------------------------------------------------------------------------------------+
443 | Affected Environment/ Platform | All                                                                                  |
444 |                                |                                                                                      |
445 +--------------------------------+--------------------------------------------------------------------------------------+
446 | Driver/Module                  | VF (SR-IOV) Poll Mode Driver (PMD)                                                   |
447 |                                |                                                                                      |
448 +--------------------------------+--------------------------------------------------------------------------------------+
449
450 Kernel crash on IGB port unbinding
451 ----------------------------------
452
453 +--------------------------------+--------------------------------------------------------------------------------------+
454 | Title                          | Kernel crash on IGB port unbinding                                                   |
455 |                                |                                                                                      |
456 +================================+======================================================================================+
457 | Reference #                    | 74                                                                                   |
458 |                                |                                                                                      |
459 +--------------------------------+--------------------------------------------------------------------------------------+
460 | Description                    | Kernel crash may occur                                                               |
461 |                                | when unbinding 1G ports from the igb_uio driver, on 2.6.3x kernels such as shipped   |
462 |                                | with Fedora 14.                                                                      |
463 |                                |                                                                                      |
464 +--------------------------------+--------------------------------------------------------------------------------------+
465 | Implication                    | Kernel crash occurs.                                                                 |
466 |                                |                                                                                      |
467 +--------------------------------+--------------------------------------------------------------------------------------+
468 | Resolution/ Workaround         | Use newer kernels or do not unbind ports.                                            |
469 |                                |                                                                                      |
470 +--------------------------------+--------------------------------------------------------------------------------------+
471 | Affected Environment/ Platform | 2.6.3x kernels such as  shipped with Fedora 14                                       |
472 |                                |                                                                                      |
473 +--------------------------------+--------------------------------------------------------------------------------------+
474 | Driver/Module                  | IGB Poll Mode Driver (PMD)                                                           |
475 |                                |                                                                                      |
476 +--------------------------------+--------------------------------------------------------------------------------------+
477
478 Twinpond and Ironpond NICs do not report link status correctly
479 --------------------------------------------------------------
480
481 +--------------------------------+--------------------------------------------------------------------------------------+
482 | Title                          | Twinpond and Ironpond NICs do not report link status correctly                       |
483 |                                |                                                                                      |
484 +================================+======================================================================================+
485 | Reference #                    | IXA00378800                                                                          |
486 |                                |                                                                                      |
487 +--------------------------------+--------------------------------------------------------------------------------------+
488 | Description                    | Twin Pond/Iron Pond NICs do not bring the physical link down when shutting down the  |
489 |                                | port.                                                                                |
490 |                                |                                                                                      |
491 +--------------------------------+--------------------------------------------------------------------------------------+
492 | Implication                    | The link is reported as up even after issuing "shutdown" command unless the cable is |
493 |                                | physically disconnected.                                                             |
494 |                                |                                                                                      |
495 +--------------------------------+--------------------------------------------------------------------------------------+
496 | Resolution/ Workaround         | None.                                                                                |
497 |                                |                                                                                      |
498 +--------------------------------+--------------------------------------------------------------------------------------+
499 | Affected Environment/ Platform | Twin Pond and Iron Pond NICs                                                         |
500 |                                |                                                                                      |
501 +--------------------------------+--------------------------------------------------------------------------------------+
502 | Driver/Module                  | Poll Mode Driver (PMD)                                                               |
503 |                                |                                                                                      |
504 +--------------------------------+--------------------------------------------------------------------------------------+
505
506 Discrepancies between statistics reported by different NICs
507 -----------------------------------------------------------
508
509 +--------------------------------+--------------------------------------------------------------------------------------+
510 | Title                          | Discrepancies between statistics reported by different NICs                          |
511 |                                |                                                                                      |
512 +================================+======================================================================================+
513 | Reference #                    | IXA00378113                                                                          |
514 |                                |                                                                                      |
515 +--------------------------------+--------------------------------------------------------------------------------------+
516 | Description                    | Gigabit Ethernet devices from Intel include CRC bytes when calculating packet        |
517 |                                | reception statistics regardless of hardware CRC stripping state, while 10-Gigabit    |
518 |                                | Ethernet devices from Intel do so only when hardware CRC stripping is disabled.      |
519 |                                |                                                                                      |
520 +--------------------------------+--------------------------------------------------------------------------------------+
521 | Implication                    | There may be a  discrepancy in how different NICs display packet reception           |
522 |                                | statistics.                                                                          |
523 |                                |                                                                                      |
524 +--------------------------------+--------------------------------------------------------------------------------------+
525 | Resolution/ Workaround         | None                                                                                 |
526 |                                |                                                                                      |
527 +--------------------------------+--------------------------------------------------------------------------------------+
528 | Affected Environment/ Platform | All                                                                                  |
529 |                                |                                                                                      |
530 +--------------------------------+--------------------------------------------------------------------------------------+
531 | Driver/Module                  | Poll Mode Driver (PMD)                                                               |
532 |                                |                                                                                      |
533 +--------------------------------+--------------------------------------------------------------------------------------+
534
535 Error reported opening files on DPDK initialization
536 ---------------------------------------------------
537
538
539 +--------------------------------+--------------------------------------------------------------------------------------+
540 | Title                          | Error reported opening files on DPDK initialization                                  |
541 |                                |                                                                                      |
542 +================================+======================================================================================+
543 | Reference #                    | 91                                                                                   |
544 |                                |                                                                                      |
545 +--------------------------------+--------------------------------------------------------------------------------------+
546 | Description                    | On DPDK application startup, errors may be reported when opening files as            |
547 |                                | part of the initialization process. This occurs if a large number, for example, 500  |
548 |                                | or more, or if hugepages are used, due to the per-process limit on the number of     |
549 |                                | open files.                                                                          |
550 |                                |                                                                                      |
551 +--------------------------------+--------------------------------------------------------------------------------------+
552 | Implication                    | The DPDK application may fail to run.                                                |
553 |                                |                                                                                      |
554 +--------------------------------+--------------------------------------------------------------------------------------+
555 | Resolution/ Workaround         | If using 2 MB hugepages, consider switching to a fewer number of 1 GB pages.         |
556 |                                | Alternatively, use the “ulimit” command to increase the number of files which can be |
557 |                                | opened by a process.                                                                 |
558 |                                |                                                                                      |
559 +--------------------------------+--------------------------------------------------------------------------------------+
560 | Affected Environment/ Platform | All                                                                                  |
561 |                                |                                                                                      |
562 +--------------------------------+--------------------------------------------------------------------------------------+
563 | Driver/Module                  | Environment Abstraction Layer (EAL)                                                  |
564 |                                |                                                                                      |
565 +--------------------------------+--------------------------------------------------------------------------------------+
566
567 Intel® QuickAssist Technology sample application does not work on a 32-bit OS on Shumway
568 ----------------------------------------------------------------------------------------
569
570 +--------------------------------+--------------------------------------------------------------------------------------+
571 | Title                          | Intel® QuickAssist Technology sample applications does not work on a 32- bit OS on   |
572 |                                | Shumway                                                                              |
573 |                                |                                                                                      |
574 +================================+======================================================================================+
575 | Reference #                    | 93                                                                                   |
576 |                                |                                                                                      |
577 +--------------------------------+--------------------------------------------------------------------------------------+
578 | Description                    | The Intel® Communications Chipset 89xx Series device does not fully support NUMA on  |
579 |                                | a 32-bit OS. Consequently, the sample application cannot work properly on Shumway,   |
580 |                                | since it requires NUMA on both nodes.                                                |
581 |                                |                                                                                      |
582 +--------------------------------+--------------------------------------------------------------------------------------+
583 | Implication                    | The sample application cannot work in 32-bit mode with emulated NUMA, on             |
584 |                                | multi-socket boards.                                                                 |
585 |                                |                                                                                      |
586 +--------------------------------+--------------------------------------------------------------------------------------+
587 | Resolution/ Workaround         | There is no workaround available.                                                    |
588 |                                |                                                                                      |
589 +--------------------------------+--------------------------------------------------------------------------------------+
590 | Affected Environment/ Platform | Shumway                                                                              |
591 |                                |                                                                                      |
592 +--------------------------------+--------------------------------------------------------------------------------------+
593 | Driver/Module                  | All                                                                                  |
594 |                                |                                                                                      |
595 +--------------------------------+--------------------------------------------------------------------------------------+
596
597 IEEE1588 support possibly not working with an Intel® Ethernet Controller I210 NIC
598 ---------------------------------------------------------------------------------
599
600 +--------------------------------+--------------------------------------------------------------------------------------+
601 | Title                          | IEEE1588 support may not work with an Intel® Ethernet Controller I210 NIC            |
602 |                                |                                                                                      |
603 +================================+======================================================================================+
604 | Reference #                    | IXA00380285                                                                          |
605 |                                |                                                                                      |
606 +--------------------------------+--------------------------------------------------------------------------------------+
607 | Description                    | IEEE1588 support is not working with an Intel® Ethernet Controller I210 NIC.         |
608 |                                |                                                                                      |
609 +--------------------------------+--------------------------------------------------------------------------------------+
610 | Implication                    | IEEE1588 packets are not forwarded correctly by the Intel® Ethernet Controller I210  |
611 |                                | NIC.                                                                                 |
612 |                                |                                                                                      |
613 +--------------------------------+--------------------------------------------------------------------------------------+
614 | Resolution/ Workaround         | There is no workaround available.                                                    |
615 |                                |                                                                                      |
616 +--------------------------------+--------------------------------------------------------------------------------------+
617 | Affected Environment/ Platform | All                                                                                  |
618 |                                |                                                                                      |
619 +--------------------------------+--------------------------------------------------------------------------------------+
620 | Driver/Module                  | IGB Poll Mode Driver                                                                 |
621 |                                |                                                                                      |
622 +--------------------------------+--------------------------------------------------------------------------------------+
623
624 Differences in how different Intel NICs handle maximum packet length for jumbo frame
625 ------------------------------------------------------------------------------------
626
627 +--------------------------------+--------------------------------------------------------------------------------------+
628 | Title                          | Differences in how different Intel NICs handle maximum packet length for jumbo frame |
629 |                                |                                                                                      |
630 +================================+======================================================================================+
631 | Reference #                    | 96                                                                                   |
632 |                                |                                                                                      |
633 +--------------------------------+--------------------------------------------------------------------------------------+
634 | Description                    | 10 Gigabit Ethernet devices from Intel do not take VLAN tags into account when       |
635 |                                | calculating packet size while Gigabit Ethernet devices do so for jumbo frames.       |
636 |                                |                                                                                      |
637 +--------------------------------+--------------------------------------------------------------------------------------+
638 | Implication                    | When receiving packets with VLAN tags, the actual maximum size of useful payload     |
639 |                                | that Intel Gigabit Ethernet devices are able to receive is 4 bytes (or 8 bytes in    |
640 |                                | the case of packets with extended VLAN tags) less than that of Intel 10 Gigabit      |
641 |                                | Ethernet devices.                                                                    |
642 |                                |                                                                                      |
643 +--------------------------------+--------------------------------------------------------------------------------------+
644 | Resolution/ Workaround         | Increase the configured maximum packet size when using Intel Gigabit Ethernet        |
645 |                                | devices.                                                                             |
646 |                                |                                                                                      |
647 +--------------------------------+--------------------------------------------------------------------------------------+
648 | Affected Environment/ Platform | All                                                                                  |
649 |                                |                                                                                      |
650 +--------------------------------+--------------------------------------------------------------------------------------+
651 | Driver/Module                  | Poll Mode Driver (PMD)                                                               |
652 |                                |                                                                                      |
653 +--------------------------------+--------------------------------------------------------------------------------------+
654
655 Binding PCI devices to igb_uio fails on Linux* kernel 3.9 when more than one device is used
656 -------------------------------------------------------------------------------------------
657
658 +--------------------------------+--------------------------------------------------------------------------------------+
659 | Title                          | Binding PCI devices to igb_uio fails on Linux* kernel 3.9 when more than one device  |
660 |                                | is used                                                                              |
661 |                                |                                                                                      |
662 +================================+======================================================================================+
663 | Reference #                    | 97                                                                                   |
664 |                                |                                                                                      |
665 +--------------------------------+--------------------------------------------------------------------------------------+
666 | Description                    | A known bug in the uio driver included in Linux* kernel version 3.9 prevents more    |
667 |                                | than one PCI device to be bound to the igb_uio driver.                               |
668 |                                |                                                                                      |
669 +--------------------------------+--------------------------------------------------------------------------------------+
670 | Implication                    | The Poll Mode Driver (PMD) will crash on initialization.                             |
671 |                                |                                                                                      |
672 +--------------------------------+--------------------------------------------------------------------------------------+
673 | Resolution/ Workaround         | Use earlier or later kernel versions, or apply the following                         |
674 |                                | `patch                                                                               |
675 |                                | <https://github.com/torvalds/linux/commit/5ed0505c713805f89473cdc0bbfb5110dfd840cb>`_|
676 |                                | .                                                                                    |
677 |                                |                                                                                      |
678 +--------------------------------+--------------------------------------------------------------------------------------+
679 | Affected Environment/ Platform | Linux* systems with kernel version 3.9                                               |
680 |                                |                                                                                      |
681 +--------------------------------+--------------------------------------------------------------------------------------+
682 | Driver/Module                  | igb_uio module                                                                       |
683 |                                |                                                                                      |
684 +--------------------------------+--------------------------------------------------------------------------------------+
685
686 GCC might generate Intel® AVX instructions for processors without Intel® AVX support
687 ------------------------------------------------------------------------------------
688
689 +--------------------------------+--------------------------------------------------------------------------------------+
690 | Title                          | Gcc might generate Intel® AVX instructions for processors without Intel® AVX support |
691 |                                |                                                                                      |
692 +================================+======================================================================================+
693 | Reference #                    | IXA00382439                                                                          |
694 |                                |                                                                                      |
695 +--------------------------------+--------------------------------------------------------------------------------------+
696 | Description                    | When compiling Intel®  DPDK (and any DPDK app), gcc may generate Intel® AVX          |
697 |                                | instructions, even when the processor does not support Intel® AVX.                   |
698 |                                |                                                                                      |
699 +--------------------------------+--------------------------------------------------------------------------------------+
700 | Implication                    | Any DPDK app might crash while starting up.                                          |
701 |                                |                                                                                      |
702 +--------------------------------+--------------------------------------------------------------------------------------+
703 | Resolution/ Workaround         | Either compile using icc or set EXTRA_CFLAGS=’-O3’ prior to compilation.             |
704 |                                |                                                                                      |
705 +--------------------------------+--------------------------------------------------------------------------------------+
706 | Affected Environment/ Platform | Platforms which processor does not support Intel® AVX.                               |
707 |                                |                                                                                      |
708 +--------------------------------+--------------------------------------------------------------------------------------+
709 | Driver/Module                  | Environment Abstraction Layer (EAL)                                                  |
710 |                                |                                                                                      |
711 +--------------------------------+--------------------------------------------------------------------------------------+
712
713 Ethertype filter could receive other packets (non-assigned) in Niantic
714 ----------------------------------------------------------------------
715
716 +--------------------------------+--------------------------------------------------------------------------------------+
717 | Title                          | Ethertype filter could receive other packets (non-assigned) in Niantic               |
718 |                                |                                                                                      |
719 +================================+======================================================================================+
720 | Reference #                    | IXA00169017                                                                          |
721 |                                |                                                                                      |
722 +--------------------------------+--------------------------------------------------------------------------------------+
723 | Description                    | On Intel®  Ethernet Controller 82599EB:                                              |
724 |                                |                                                                                      |
725 |                                | When Ethertype filter (priority enable) was set, unmatched packets also could be     |
726 |                                | received on the assigned queue, such as ARP packets without 802.1q tags or with the  |
727 |                                | user priority not equal to set value.                                                |
728 |                                |                                                                                      |
729 |                                | Launch the testpmd by disabling RSS and with multiply queues, then add the ethertype |
730 |                                | filter like: “add_ethertype_filter 0 ethertype 0x0806 priority enable 3 queue 2      |
731 |                                | index 1”, and then start forwarding.                                                 |
732 |                                |                                                                                      |
733 |                                | When sending ARP packets without 802.1q tag and with user priority as non-3 by       |
734 |                                | tester, all the ARP packets can be received on the assigned queue.                   |
735 |                                |                                                                                      |
736 +--------------------------------+--------------------------------------------------------------------------------------+
737 | Implication                    | The user priority comparing in Ethertype filter cannot work probably.                |
738 |                                | It is the NIC's issue due to the response from PAE: “In fact, ETQF.UP is not         |
739 |                                | functional, and the information will be added in errata of 82599 and X540.”          |
740 |                                |                                                                                      |
741 +--------------------------------+--------------------------------------------------------------------------------------+
742 | Resolution/ Workaround         | None                                                                                 |
743 |                                |                                                                                      |
744 +--------------------------------+--------------------------------------------------------------------------------------+
745 | Affected Environment/ Platform | All                                                                                  |
746 |                                |                                                                                      |
747 +--------------------------------+--------------------------------------------------------------------------------------+
748 | Driver/Module                  | Poll Mode Driver (PMD)                                                               |
749 |                                |                                                                                      |
750 +--------------------------------+--------------------------------------------------------------------------------------+
751
752 Cannot set link speed on Intel® 40G Ethernet controller
753 -------------------------------------------------------
754
755 +--------------------------------+--------------------------------------------------------------------------------------+
756 | Title                          | Cannot set link speed on Intel® 40G Ethernet controller                              |
757 |                                |                                                                                      |
758 +================================+======================================================================================+
759 | Reference #                    | IXA00386379                                                                          |
760 |                                |                                                                                      |
761 +--------------------------------+--------------------------------------------------------------------------------------+
762 | Description                    | On Intel® 40G Ethernet Controller:                                                   |
763 |                                |                                                                                      |
764 |                                | It cannot set the link to specific speed.                                            |
765 |                                |                                                                                      |
766 +--------------------------------+--------------------------------------------------------------------------------------+
767 | Implication                    | The link speed cannot be changed forcibly, though it can be configured by            |
768 |                                | application.                                                                         |
769 |                                |                                                                                      |
770 +--------------------------------+--------------------------------------------------------------------------------------+
771 | Resolution/ Workaround         | None                                                                                 |
772 |                                |                                                                                      |
773 +--------------------------------+--------------------------------------------------------------------------------------+
774 | Affected Environment/ Platform | All                                                                                  |
775 |                                |                                                                                      |
776 +--------------------------------+--------------------------------------------------------------------------------------+
777 | Driver/Module                  | Poll Mode Driver (PMD)                                                               |
778 |                                |                                                                                      |
779 +--------------------------------+--------------------------------------------------------------------------------------+
780
781 Stopping the port does not down the link on Intel® 40G Ethernet controller
782 --------------------------------------------------------------------------
783
784 +--------------------------------+--------------------------------------------------------------------------------------+
785 | Title                          | Stopping the port does not down the link on Intel® 40G Ethernet controller           |
786 |                                |                                                                                      |
787 +================================+======================================================================================+
788 | Reference #                    | IXA00386380                                                                          |
789 |                                |                                                                                      |
790 +--------------------------------+--------------------------------------------------------------------------------------+
791 | Description                    | On Intel® 40G Ethernet Controller:                                                   |
792 |                                |                                                                                      |
793 |                                | Stopping the port does not really down the port link.                                |
794 |                                |                                                                                      |
795 +--------------------------------+--------------------------------------------------------------------------------------+
796 | Implication                    | The port link will be still up after stopping the port.                              |
797 |                                |                                                                                      |
798 +--------------------------------+--------------------------------------------------------------------------------------+
799 | Resolution/ Workaround         | None                                                                                 |
800 |                                |                                                                                      |
801 +--------------------------------+--------------------------------------------------------------------------------------+
802 | Affected Environment/ Platform | All                                                                                  |
803 |                                |                                                                                      |
804 +--------------------------------+--------------------------------------------------------------------------------------+
805 | Driver/Module                  | Poll Mode Driver (PMD)                                                               |
806 |                                |                                                                                      |
807 +--------------------------------+--------------------------------------------------------------------------------------+
808
809 Devices bound to igb_uio with VT-d enabled do not work on Linux* kernel 3.15-3.17
810 ---------------------------------------------------------------------------------
811
812 +--------------------------------+--------------------------------------------------------------------------------------+
813 | Title                          | Devices bound to igb_uio with VT-d enabled do not work on Linux* kernel 3.15-3.17    |
814 +================================+======================================================================================+
815 | Description                    | | When VT-d is enabled (iommu=pt intel_iommu=on), devices are 1:1 mapped.            |
816 |                                |   In the Linux* kernel unbinding devices from drivers removes that mapping which     |
817 |                                |   result in IOMMU errors.                                                            |
818 |                                | | Introduced in Linux `kernel 3.15 commit <https://git.kernel.org/cgit/linux/kernel/ |
819 |                                |   git/torvalds/linux.git/commit/drivers/iommu/                                       |
820 |                                |   intel-iommu.c?id=816997d03bca9fabcee65f3481eb0297103eceb7>`_,                      |
821 |                                |   solved in Linux `kernel 3.18 commit <https://git.kernel.org/cgit/linux/kernel/git/ |
822 |                                |   torvalds/linux.git/commit/drivers/iommu/                                           |
823 |                                |   intel-iommu.c?id=1196c2fb0407683c2df92d3d09f9144d42830894>`_.                      |
824 +--------------------------------+--------------------------------------------------------------------------------------+
825 | Implication                    | | Devices will not be allowed to access memory, resulting in following kernel errors:|
826 |                                | | ``dmar: DRHD: handling fault status reg 2``                                        |
827 |                                | | ``dmar: DMAR:[DMA Read] Request device [02:00.0] fault addr a0c58000``             |
828 |                                | | ``DMAR:[fault reason 02] Present bit in context entry is clear``                   |
829 +--------------------------------+--------------------------------------------------------------------------------------+
830 | Resolution/ Workaround         | | Use earlier or later kernel versions, or avoid driver binding on boot by           |
831 |                                |   blacklisting the driver modules.                                                   |
832 |                                | | ie. in the case of ixgbe, we can pass the kernel command line option:              |
833 |                                | | ``modprobe.blacklist=ixgbe``                                                       |
834 |                                | | This way we do not need to unbind the device to bind it to igb_uio.                |
835 +--------------------------------+--------------------------------------------------------------------------------------+
836 | Affected Environment/ Platform | Linux* systems with kernel versions 3.15 to 3.17                                     |
837 +--------------------------------+--------------------------------------------------------------------------------------+
838 | Driver/Module                  | igb_uio module                                                                       |
839 +--------------------------------+--------------------------------------------------------------------------------------+
840
841 VM power manager may not work on systems with more than 64 cores
842 ----------------------------------------------------------------
843
844 +--------------------------------+--------------------------------------------------------------------------------------+
845 | Title                          | VM power manager may not work on systems with more than 64 cores                     |
846 |                                |                                                                                      |
847 +================================+======================================================================================+
848 | Description                    | When using VM power manager on a system with more than 64 cores,                     |
849 |                                | VM(s) should not use cores 64 or higher.                                             |
850 |                                |                                                                                      |
851 +--------------------------------+--------------------------------------------------------------------------------------+
852 | Implication                    | VM power manager should not be used with VM(s) that are using cores 64 or above.     |
853 |                                |                                                                                      |
854 +--------------------------------+--------------------------------------------------------------------------------------+
855 | Resolution/ Workaround         | Do not use cores 64 or above.                                                        |
856 |                                |                                                                                      |
857 +--------------------------------+--------------------------------------------------------------------------------------+
858 | Affected Environment/ Platform | Platforms with more than 64 cores.                                                   |
859 |                                |                                                                                      |
860 +--------------------------------+--------------------------------------------------------------------------------------+
861 | Driver/Module                  | VM power manager application                                                         |
862 |                                |                                                                                      |
863 +--------------------------------+--------------------------------------------------------------------------------------+