mbuf: fix performance of freeing with non atomic refcnt
[dpdk.git] / lib / librte_mbuf / rte_mbuf.h
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
5  *   Copyright 2014 6WIND S.A.
6  *   All rights reserved.
7  *
8  *   Redistribution and use in source and binary forms, with or without
9  *   modification, are permitted provided that the following conditions
10  *   are met:
11  *
12  *     * Redistributions of source code must retain the above copyright
13  *       notice, this list of conditions and the following disclaimer.
14  *     * Redistributions in binary form must reproduce the above copyright
15  *       notice, this list of conditions and the following disclaimer in
16  *       the documentation and/or other materials provided with the
17  *       distribution.
18  *     * Neither the name of Intel Corporation nor the names of its
19  *       contributors may be used to endorse or promote products derived
20  *       from this software without specific prior written permission.
21  *
22  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
26  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
27  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
28  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
32  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33  */
34
35 #ifndef _RTE_MBUF_H_
36 #define _RTE_MBUF_H_
37
38 /**
39  * @file
40  * RTE Mbuf
41  *
42  * The mbuf library provides the ability to create and destroy buffers
43  * that may be used by the RTE application to store message
44  * buffers. The message buffers are stored in a mempool, using the
45  * RTE mempool library.
46  *
47  * The preferred way to create a mbuf pool is to use
48  * rte_pktmbuf_pool_create(). However, in some situations, an
49  * application may want to have more control (ex: populate the pool with
50  * specific memory), in this case it is possible to use functions from
51  * rte_mempool. See how rte_pktmbuf_pool_create() is implemented for
52  * details.
53  *
54  * This library provides an API to allocate/free packet mbufs, which are
55  * used to carry network packets.
56  *
57  * To understand the concepts of packet buffers or mbufs, you
58  * should read "TCP/IP Illustrated, Volume 2: The Implementation,
59  * Addison-Wesley, 1995, ISBN 0-201-63354-X from Richard Stevens"
60  * http://www.kohala.com/start/tcpipiv2.html
61  */
62
63 #include <stdint.h>
64 #include <rte_common.h>
65 #include <rte_config.h>
66 #include <rte_mempool.h>
67 #include <rte_memory.h>
68 #include <rte_atomic.h>
69 #include <rte_prefetch.h>
70 #include <rte_branch_prediction.h>
71 #include <rte_mbuf_ptype.h>
72
73 #ifdef __cplusplus
74 extern "C" {
75 #endif
76
77 /*
78  * Packet Offload Features Flags. It also carry packet type information.
79  * Critical resources. Both rx/tx shared these bits. Be cautious on any change
80  *
81  * - RX flags start at bit position zero, and get added to the left of previous
82  *   flags.
83  * - The most-significant 3 bits are reserved for generic mbuf flags
84  * - TX flags therefore start at bit position 60 (i.e. 63-3), and new flags get
85  *   added to the right of the previously defined flags i.e. they should count
86  *   downwards, not upwards.
87  *
88  * Keep these flags synchronized with rte_get_rx_ol_flag_name() and
89  * rte_get_tx_ol_flag_name().
90  */
91
92 /**
93  * The RX packet is a 802.1q VLAN packet, and the tci has been
94  * saved in in mbuf->vlan_tci.
95  * If the flag PKT_RX_VLAN_STRIPPED is also present, the VLAN
96  * header has been stripped from mbuf data, else it is still
97  * present.
98  */
99 #define PKT_RX_VLAN          (1ULL << 0)
100
101 #define PKT_RX_RSS_HASH      (1ULL << 1)  /**< RX packet with RSS hash result. */
102 #define PKT_RX_FDIR          (1ULL << 2)  /**< RX packet with FDIR match indicate. */
103
104 /**
105  * Deprecated.
106  * Checking this flag alone is deprecated: check the 2 bits of
107  * PKT_RX_L4_CKSUM_MASK.
108  * This flag was set when the L4 checksum of a packet was detected as
109  * wrong by the hardware.
110  */
111 #define PKT_RX_L4_CKSUM_BAD  (1ULL << 3)
112
113 /**
114  * Deprecated.
115  * Checking this flag alone is deprecated: check the 2 bits of
116  * PKT_RX_IP_CKSUM_MASK.
117  * This flag was set when the IP checksum of a packet was detected as
118  * wrong by the hardware.
119  */
120 #define PKT_RX_IP_CKSUM_BAD  (1ULL << 4)
121
122 #define PKT_RX_EIP_CKSUM_BAD (1ULL << 5)  /**< External IP header checksum error. */
123
124 /**
125  * A vlan has been stripped by the hardware and its tci is saved in
126  * mbuf->vlan_tci. This can only happen if vlan stripping is enabled
127  * in the RX configuration of the PMD.
128  * When PKT_RX_VLAN_STRIPPED is set, PKT_RX_VLAN must also be set.
129  */
130 #define PKT_RX_VLAN_STRIPPED (1ULL << 6)
131
132 /**
133  * Mask of bits used to determine the status of RX IP checksum.
134  * - PKT_RX_IP_CKSUM_UNKNOWN: no information about the RX IP checksum
135  * - PKT_RX_IP_CKSUM_BAD: the IP checksum in the packet is wrong
136  * - PKT_RX_IP_CKSUM_GOOD: the IP checksum in the packet is valid
137  * - PKT_RX_IP_CKSUM_NONE: the IP checksum is not correct in the packet
138  *   data, but the integrity of the IP header is verified.
139  */
140 #define PKT_RX_IP_CKSUM_MASK ((1ULL << 4) | (1ULL << 7))
141
142 #define PKT_RX_IP_CKSUM_UNKNOWN 0
143 #define PKT_RX_IP_CKSUM_BAD     (1ULL << 4)
144 #define PKT_RX_IP_CKSUM_GOOD    (1ULL << 7)
145 #define PKT_RX_IP_CKSUM_NONE    ((1ULL << 4) | (1ULL << 7))
146
147 /**
148  * Mask of bits used to determine the status of RX L4 checksum.
149  * - PKT_RX_L4_CKSUM_UNKNOWN: no information about the RX L4 checksum
150  * - PKT_RX_L4_CKSUM_BAD: the L4 checksum in the packet is wrong
151  * - PKT_RX_L4_CKSUM_GOOD: the L4 checksum in the packet is valid
152  * - PKT_RX_L4_CKSUM_NONE: the L4 checksum is not correct in the packet
153  *   data, but the integrity of the L4 data is verified.
154  */
155 #define PKT_RX_L4_CKSUM_MASK ((1ULL << 3) | (1ULL << 8))
156
157 #define PKT_RX_L4_CKSUM_UNKNOWN 0
158 #define PKT_RX_L4_CKSUM_BAD     (1ULL << 3)
159 #define PKT_RX_L4_CKSUM_GOOD    (1ULL << 8)
160 #define PKT_RX_L4_CKSUM_NONE    ((1ULL << 3) | (1ULL << 8))
161
162 #define PKT_RX_IEEE1588_PTP  (1ULL << 9)  /**< RX IEEE1588 L2 Ethernet PT Packet. */
163 #define PKT_RX_IEEE1588_TMST (1ULL << 10) /**< RX IEEE1588 L2/L4 timestamped packet.*/
164 #define PKT_RX_FDIR_ID       (1ULL << 13) /**< FD id reported if FDIR match. */
165 #define PKT_RX_FDIR_FLX      (1ULL << 14) /**< Flexible bytes reported if FDIR match. */
166
167 /**
168  * The 2 vlans have been stripped by the hardware and their tci are
169  * saved in mbuf->vlan_tci (inner) and mbuf->vlan_tci_outer (outer).
170  * This can only happen if vlan stripping is enabled in the RX
171  * configuration of the PMD. If this flag is set,
172  * When PKT_RX_QINQ_STRIPPED is set, the flags (PKT_RX_VLAN |
173  * PKT_RX_VLAN_STRIPPED | PKT_RX_QINQ) must also be set.
174  */
175 #define PKT_RX_QINQ_STRIPPED (1ULL << 15)
176
177 /**
178  * When packets are coalesced by a hardware or virtual driver, this flag
179  * can be set in the RX mbuf, meaning that the m->tso_segsz field is
180  * valid and is set to the segment size of original packets.
181  */
182 #define PKT_RX_LRO           (1ULL << 16)
183
184 /**
185  * Indicate that the timestamp field in the mbuf is valid.
186  */
187 #define PKT_RX_TIMESTAMP     (1ULL << 17)
188
189 /**
190  * Indicate that security offload processing was applied on the RX packet.
191  */
192 #define PKT_RX_SEC_OFFLOAD              (1ULL << 18)
193
194 /**
195  * Indicate that security offload processing failed on the RX packet.
196  */
197 #define PKT_RX_SEC_OFFLOAD_FAILED       (1ULL << 19)
198
199 /**
200  * The RX packet is a double VLAN, and the outer tci has been
201  * saved in in mbuf->vlan_tci_outer.
202  * If the flag PKT_RX_QINQ_STRIPPED is also present, both VLANs
203  * headers have been stripped from mbuf data, else they are still
204  * present.
205  */
206 #define PKT_RX_QINQ          (1ULL << 20)
207
208 /* add new RX flags here */
209
210 /* add new TX flags here */
211
212 /**
213  * UDP Fragmentation Offload flag. This flag is used for enabling UDP
214  * fragmentation in SW or in HW. When use UFO, mbuf->tso_segsz is used
215  * to store the MSS of UDP fragments.
216  */
217 #define PKT_TX_UDP_SEG  (1ULL << 42)
218
219 /**
220  * Request security offload processing on the TX packet.
221  */
222 #define PKT_TX_SEC_OFFLOAD              (1ULL << 43)
223
224 /**
225  * Offload the MACsec. This flag must be set by the application to enable
226  * this offload feature for a packet to be transmitted.
227  */
228 #define PKT_TX_MACSEC        (1ULL << 44)
229
230 /**
231  * Bits 45:48 used for the tunnel type.
232  * When doing Tx offload like TSO or checksum, the HW needs to configure the
233  * tunnel type into the HW descriptors.
234  */
235 #define PKT_TX_TUNNEL_VXLAN   (0x1ULL << 45)
236 #define PKT_TX_TUNNEL_GRE     (0x2ULL << 45)
237 #define PKT_TX_TUNNEL_IPIP    (0x3ULL << 45)
238 #define PKT_TX_TUNNEL_GENEVE  (0x4ULL << 45)
239 /**< TX packet with MPLS-in-UDP RFC 7510 header. */
240 #define PKT_TX_TUNNEL_MPLSINUDP (0x5ULL << 45)
241 /* add new TX TUNNEL type here */
242 #define PKT_TX_TUNNEL_MASK    (0xFULL << 45)
243
244 /**
245  * Second VLAN insertion (QinQ) flag.
246  */
247 #define PKT_TX_QINQ_PKT    (1ULL << 49)   /**< TX packet with double VLAN inserted. */
248
249 /**
250  * TCP segmentation offload. To enable this offload feature for a
251  * packet to be transmitted on hardware supporting TSO:
252  *  - set the PKT_TX_TCP_SEG flag in mbuf->ol_flags (this flag implies
253  *    PKT_TX_TCP_CKSUM)
254  *  - set the flag PKT_TX_IPV4 or PKT_TX_IPV6
255  *  - if it's IPv4, set the PKT_TX_IP_CKSUM flag and write the IP checksum
256  *    to 0 in the packet
257  *  - fill the mbuf offload information: l2_len, l3_len, l4_len, tso_segsz
258  *  - calculate the pseudo header checksum without taking ip_len in account,
259  *    and set it in the TCP header. Refer to rte_ipv4_phdr_cksum() and
260  *    rte_ipv6_phdr_cksum() that can be used as helpers.
261  */
262 #define PKT_TX_TCP_SEG       (1ULL << 50)
263
264 #define PKT_TX_IEEE1588_TMST (1ULL << 51) /**< TX IEEE1588 packet to timestamp. */
265
266 /**
267  * Bits 52+53 used for L4 packet type with checksum enabled: 00: Reserved,
268  * 01: TCP checksum, 10: SCTP checksum, 11: UDP checksum. To use hardware
269  * L4 checksum offload, the user needs to:
270  *  - fill l2_len and l3_len in mbuf
271  *  - set the flags PKT_TX_TCP_CKSUM, PKT_TX_SCTP_CKSUM or PKT_TX_UDP_CKSUM
272  *  - set the flag PKT_TX_IPV4 or PKT_TX_IPV6
273  *  - calculate the pseudo header checksum and set it in the L4 header (only
274  *    for TCP or UDP). See rte_ipv4_phdr_cksum() and rte_ipv6_phdr_cksum().
275  *    For SCTP, set the crc field to 0.
276  */
277 #define PKT_TX_L4_NO_CKSUM   (0ULL << 52) /**< Disable L4 cksum of TX pkt. */
278 #define PKT_TX_TCP_CKSUM     (1ULL << 52) /**< TCP cksum of TX pkt. computed by NIC. */
279 #define PKT_TX_SCTP_CKSUM    (2ULL << 52) /**< SCTP cksum of TX pkt. computed by NIC. */
280 #define PKT_TX_UDP_CKSUM     (3ULL << 52) /**< UDP cksum of TX pkt. computed by NIC. */
281 #define PKT_TX_L4_MASK       (3ULL << 52) /**< Mask for L4 cksum offload request. */
282
283 /**
284  * Offload the IP checksum in the hardware. The flag PKT_TX_IPV4 should
285  * also be set by the application, although a PMD will only check
286  * PKT_TX_IP_CKSUM.
287  *  - set the IP checksum field in the packet to 0
288  *  - fill the mbuf offload information: l2_len, l3_len
289  */
290 #define PKT_TX_IP_CKSUM      (1ULL << 54)
291
292 /**
293  * Packet is IPv4. This flag must be set when using any offload feature
294  * (TSO, L3 or L4 checksum) to tell the NIC that the packet is an IPv4
295  * packet. If the packet is a tunneled packet, this flag is related to
296  * the inner headers.
297  */
298 #define PKT_TX_IPV4          (1ULL << 55)
299
300 /**
301  * Packet is IPv6. This flag must be set when using an offload feature
302  * (TSO or L4 checksum) to tell the NIC that the packet is an IPv6
303  * packet. If the packet is a tunneled packet, this flag is related to
304  * the inner headers.
305  */
306 #define PKT_TX_IPV6          (1ULL << 56)
307
308 #define PKT_TX_VLAN_PKT      (1ULL << 57) /**< TX packet is a 802.1q VLAN packet. */
309
310 /**
311  * Offload the IP checksum of an external header in the hardware. The
312  * flag PKT_TX_OUTER_IPV4 should also be set by the application, alto ugh
313  * a PMD will only check PKT_TX_IP_CKSUM.  The IP checksum field in the
314  * packet must be set to 0.
315  *  - set the outer IP checksum field in the packet to 0
316  *  - fill the mbuf offload information: outer_l2_len, outer_l3_len
317  */
318 #define PKT_TX_OUTER_IP_CKSUM   (1ULL << 58)
319
320 /**
321  * Packet outer header is IPv4. This flag must be set when using any
322  * outer offload feature (L3 or L4 checksum) to tell the NIC that the
323  * outer header of the tunneled packet is an IPv4 packet.
324  */
325 #define PKT_TX_OUTER_IPV4   (1ULL << 59)
326
327 /**
328  * Packet outer header is IPv6. This flag must be set when using any
329  * outer offload feature (L4 checksum) to tell the NIC that the outer
330  * header of the tunneled packet is an IPv6 packet.
331  */
332 #define PKT_TX_OUTER_IPV6    (1ULL << 60)
333
334 /**
335  * Bitmask of all supported packet Tx offload features flags,
336  * which can be set for packet.
337  */
338 #define PKT_TX_OFFLOAD_MASK (    \
339                 PKT_TX_IP_CKSUM |        \
340                 PKT_TX_L4_MASK |         \
341                 PKT_TX_OUTER_IP_CKSUM |  \
342                 PKT_TX_TCP_SEG |         \
343                 PKT_TX_IEEE1588_TMST |   \
344                 PKT_TX_QINQ_PKT |        \
345                 PKT_TX_VLAN_PKT |        \
346                 PKT_TX_TUNNEL_MASK |     \
347                 PKT_TX_MACSEC |          \
348                 PKT_TX_SEC_OFFLOAD)
349
350 #define __RESERVED           (1ULL << 61) /**< reserved for future mbuf use */
351
352 #define IND_ATTACHED_MBUF    (1ULL << 62) /**< Indirect attached mbuf */
353
354 /* Use final bit of flags to indicate a control mbuf */
355 #define CTRL_MBUF_FLAG       (1ULL << 63) /**< Mbuf contains control data */
356
357 /** Alignment constraint of mbuf private area. */
358 #define RTE_MBUF_PRIV_ALIGN 8
359
360 /**
361  * Get the name of a RX offload flag
362  *
363  * @param mask
364  *   The mask describing the flag.
365  * @return
366  *   The name of this flag, or NULL if it's not a valid RX flag.
367  */
368 const char *rte_get_rx_ol_flag_name(uint64_t mask);
369
370 /**
371  * Dump the list of RX offload flags in a buffer
372  *
373  * @param mask
374  *   The mask describing the RX flags.
375  * @param buf
376  *   The output buffer.
377  * @param buflen
378  *   The length of the buffer.
379  * @return
380  *   0 on success, (-1) on error.
381  */
382 int rte_get_rx_ol_flag_list(uint64_t mask, char *buf, size_t buflen);
383
384 /**
385  * Get the name of a TX offload flag
386  *
387  * @param mask
388  *   The mask describing the flag. Usually only one bit must be set.
389  *   Several bits can be given if they belong to the same mask.
390  *   Ex: PKT_TX_L4_MASK.
391  * @return
392  *   The name of this flag, or NULL if it's not a valid TX flag.
393  */
394 const char *rte_get_tx_ol_flag_name(uint64_t mask);
395
396 /**
397  * Dump the list of TX offload flags in a buffer
398  *
399  * @param mask
400  *   The mask describing the TX flags.
401  * @param buf
402  *   The output buffer.
403  * @param buflen
404  *   The length of the buffer.
405  * @return
406  *   0 on success, (-1) on error.
407  */
408 int rte_get_tx_ol_flag_list(uint64_t mask, char *buf, size_t buflen);
409
410 /**
411  * Some NICs need at least 2KB buffer to RX standard Ethernet frame without
412  * splitting it into multiple segments.
413  * So, for mbufs that planned to be involved into RX/TX, the recommended
414  * minimal buffer length is 2KB + RTE_PKTMBUF_HEADROOM.
415  */
416 #define RTE_MBUF_DEFAULT_DATAROOM       2048
417 #define RTE_MBUF_DEFAULT_BUF_SIZE       \
418         (RTE_MBUF_DEFAULT_DATAROOM + RTE_PKTMBUF_HEADROOM)
419
420 /* define a set of marker types that can be used to refer to set points in the
421  * mbuf */
422 __extension__
423 typedef void    *MARKER[0];   /**< generic marker for a point in a structure */
424 __extension__
425 typedef uint8_t  MARKER8[0];  /**< generic marker with 1B alignment */
426 __extension__
427 typedef uint64_t MARKER64[0]; /**< marker that allows us to overwrite 8 bytes
428                                * with a single assignment */
429
430 /**
431  * The generic rte_mbuf, containing a packet mbuf.
432  */
433 struct rte_mbuf {
434         MARKER cacheline0;
435
436         void *buf_addr;           /**< Virtual address of segment buffer. */
437         /**
438          * Physical address of segment buffer.
439          * Force alignment to 8-bytes, so as to ensure we have the exact
440          * same mbuf cacheline0 layout for 32-bit and 64-bit. This makes
441          * working on vector drivers easier.
442          */
443         RTE_STD_C11
444         union {
445                 rte_iova_t buf_iova;
446                 rte_iova_t buf_physaddr; /**< deprecated */
447         } __rte_aligned(sizeof(rte_iova_t));
448
449         /* next 8 bytes are initialised on RX descriptor rearm */
450         MARKER64 rearm_data;
451         uint16_t data_off;
452
453         /**
454          * Reference counter. Its size should at least equal to the size
455          * of port field (16 bits), to support zero-copy broadcast.
456          * It should only be accessed using the following functions:
457          * rte_mbuf_refcnt_update(), rte_mbuf_refcnt_read(), and
458          * rte_mbuf_refcnt_set(). The functionality of these functions (atomic,
459          * or non-atomic) is controlled by the CONFIG_RTE_MBUF_REFCNT_ATOMIC
460          * config option.
461          */
462         RTE_STD_C11
463         union {
464                 rte_atomic16_t refcnt_atomic; /**< Atomically accessed refcnt */
465                 uint16_t refcnt;              /**< Non-atomically accessed refcnt */
466         };
467         uint16_t nb_segs;         /**< Number of segments. */
468
469         /** Input port (16 bits to support more than 256 virtual ports). */
470         uint16_t port;
471
472         uint64_t ol_flags;        /**< Offload features. */
473
474         /* remaining bytes are set on RX when pulling packet from descriptor */
475         MARKER rx_descriptor_fields1;
476
477         /*
478          * The packet type, which is the combination of outer/inner L2, L3, L4
479          * and tunnel types. The packet_type is about data really present in the
480          * mbuf. Example: if vlan stripping is enabled, a received vlan packet
481          * would have RTE_PTYPE_L2_ETHER and not RTE_PTYPE_L2_VLAN because the
482          * vlan is stripped from the data.
483          */
484         RTE_STD_C11
485         union {
486                 uint32_t packet_type; /**< L2/L3/L4 and tunnel information. */
487                 struct {
488                         uint32_t l2_type:4; /**< (Outer) L2 type. */
489                         uint32_t l3_type:4; /**< (Outer) L3 type. */
490                         uint32_t l4_type:4; /**< (Outer) L4 type. */
491                         uint32_t tun_type:4; /**< Tunnel type. */
492                         RTE_STD_C11
493                         union {
494                                 uint8_t inner_esp_next_proto;
495                                 /**< ESP next protocol type, valid if
496                                  * RTE_PTYPE_TUNNEL_ESP tunnel type is set
497                                  * on both Tx and Rx.
498                                  */
499                                 __extension__
500                                 struct {
501                                         uint8_t inner_l2_type:4;
502                                         /**< Inner L2 type. */
503                                         uint8_t inner_l3_type:4;
504                                         /**< Inner L3 type. */
505                                 };
506                         };
507                         uint32_t inner_l4_type:4; /**< Inner L4 type. */
508                 };
509         };
510
511         uint32_t pkt_len;         /**< Total pkt len: sum of all segments. */
512         uint16_t data_len;        /**< Amount of data in segment buffer. */
513         /** VLAN TCI (CPU order), valid if PKT_RX_VLAN_STRIPPED is set. */
514         uint16_t vlan_tci;
515
516         union {
517                 uint32_t rss;     /**< RSS hash result if RSS enabled */
518                 struct {
519                         RTE_STD_C11
520                         union {
521                                 struct {
522                                         uint16_t hash;
523                                         uint16_t id;
524                                 };
525                                 uint32_t lo;
526                                 /**< Second 4 flexible bytes */
527                         };
528                         uint32_t hi;
529                         /**< First 4 flexible bytes or FD ID, dependent on
530                              PKT_RX_FDIR_* flag in ol_flags. */
531                 } fdir;           /**< Filter identifier if FDIR enabled */
532                 struct {
533                         uint32_t lo;
534                         uint32_t hi;
535                 } sched;          /**< Hierarchical scheduler */
536                 uint32_t usr;     /**< User defined tags. See rte_distributor_process() */
537         } hash;                   /**< hash information */
538
539         /** Outer VLAN TCI (CPU order), valid if PKT_RX_QINQ_STRIPPED is set. */
540         uint16_t vlan_tci_outer;
541
542         uint16_t buf_len;         /**< Length of segment buffer. */
543
544         /** Valid if PKT_RX_TIMESTAMP is set. The unit and time reference
545          * are not normalized but are always the same for a given port.
546          */
547         uint64_t timestamp;
548
549         /* second cache line - fields only used in slow path or on TX */
550         MARKER cacheline1 __rte_cache_min_aligned;
551
552         RTE_STD_C11
553         union {
554                 void *userdata;   /**< Can be used for external metadata */
555                 uint64_t udata64; /**< Allow 8-byte userdata on 32-bit */
556         };
557
558         struct rte_mempool *pool; /**< Pool from which mbuf was allocated. */
559         struct rte_mbuf *next;    /**< Next segment of scattered packet. */
560
561         /* fields to support TX offloads */
562         RTE_STD_C11
563         union {
564                 uint64_t tx_offload;       /**< combined for easy fetch */
565                 __extension__
566                 struct {
567                         uint64_t l2_len:7;
568                         /**< L2 (MAC) Header Length for non-tunneling pkt.
569                          * Outer_L4_len + ... + Inner_L2_len for tunneling pkt.
570                          */
571                         uint64_t l3_len:9; /**< L3 (IP) Header Length. */
572                         uint64_t l4_len:8; /**< L4 (TCP/UDP) Header Length. */
573                         uint64_t tso_segsz:16; /**< TCP TSO segment size */
574
575                         /* fields for TX offloading of tunnels */
576                         uint64_t outer_l3_len:9; /**< Outer L3 (IP) Hdr Length. */
577                         uint64_t outer_l2_len:7; /**< Outer L2 (MAC) Hdr Length. */
578
579                         /* uint64_t unused:8; */
580                 };
581         };
582
583         /** Size of the application private data. In case of an indirect
584          * mbuf, it stores the direct mbuf private data size. */
585         uint16_t priv_size;
586
587         /** Timesync flags for use with IEEE1588. */
588         uint16_t timesync;
589
590         /** Sequence number. See also rte_reorder_insert(). */
591         uint32_t seqn;
592
593 } __rte_cache_aligned;
594
595 /**< Maximum number of nb_segs allowed. */
596 #define RTE_MBUF_MAX_NB_SEGS    UINT16_MAX
597
598 /**
599  * Prefetch the first part of the mbuf
600  *
601  * The first 64 bytes of the mbuf corresponds to fields that are used early
602  * in the receive path. If the cache line of the architecture is higher than
603  * 64B, the second part will also be prefetched.
604  *
605  * @param m
606  *   The pointer to the mbuf.
607  */
608 static inline void
609 rte_mbuf_prefetch_part1(struct rte_mbuf *m)
610 {
611         rte_prefetch0(&m->cacheline0);
612 }
613
614 /**
615  * Prefetch the second part of the mbuf
616  *
617  * The next 64 bytes of the mbuf corresponds to fields that are used in the
618  * transmit path. If the cache line of the architecture is higher than 64B,
619  * this function does nothing as it is expected that the full mbuf is
620  * already in cache.
621  *
622  * @param m
623  *   The pointer to the mbuf.
624  */
625 static inline void
626 rte_mbuf_prefetch_part2(struct rte_mbuf *m)
627 {
628 #if RTE_CACHE_LINE_SIZE == 64
629         rte_prefetch0(&m->cacheline1);
630 #else
631         RTE_SET_USED(m);
632 #endif
633 }
634
635
636 static inline uint16_t rte_pktmbuf_priv_size(struct rte_mempool *mp);
637
638 /**
639  * Return the IO address of the beginning of the mbuf data
640  *
641  * @param mb
642  *   The pointer to the mbuf.
643  * @return
644  *   The IO address of the beginning of the mbuf data
645  */
646 static inline rte_iova_t
647 rte_mbuf_data_iova(const struct rte_mbuf *mb)
648 {
649         return mb->buf_iova + mb->data_off;
650 }
651
652 __rte_deprecated
653 static inline phys_addr_t
654 rte_mbuf_data_dma_addr(const struct rte_mbuf *mb)
655 {
656         return rte_mbuf_data_iova(mb);
657 }
658
659 /**
660  * Return the default IO address of the beginning of the mbuf data
661  *
662  * This function is used by drivers in their receive function, as it
663  * returns the location where data should be written by the NIC, taking
664  * the default headroom in account.
665  *
666  * @param mb
667  *   The pointer to the mbuf.
668  * @return
669  *   The IO address of the beginning of the mbuf data
670  */
671 static inline rte_iova_t
672 rte_mbuf_data_iova_default(const struct rte_mbuf *mb)
673 {
674         return mb->buf_iova + RTE_PKTMBUF_HEADROOM;
675 }
676
677 __rte_deprecated
678 static inline phys_addr_t
679 rte_mbuf_data_dma_addr_default(const struct rte_mbuf *mb)
680 {
681         return rte_mbuf_data_iova_default(mb);
682 }
683
684 /**
685  * Return the mbuf owning the data buffer address of an indirect mbuf.
686  *
687  * @param mi
688  *   The pointer to the indirect mbuf.
689  * @return
690  *   The address of the direct mbuf corresponding to buffer_addr.
691  */
692 static inline struct rte_mbuf *
693 rte_mbuf_from_indirect(struct rte_mbuf *mi)
694 {
695         return (struct rte_mbuf *)RTE_PTR_SUB(mi->buf_addr, sizeof(*mi) + mi->priv_size);
696 }
697
698 /**
699  * Return the buffer address embedded in the given mbuf.
700  *
701  * @param md
702  *   The pointer to the mbuf.
703  * @return
704  *   The address of the data buffer owned by the mbuf.
705  */
706 static inline char *
707 rte_mbuf_to_baddr(struct rte_mbuf *md)
708 {
709         char *buffer_addr;
710         buffer_addr = (char *)md + sizeof(*md) + rte_pktmbuf_priv_size(md->pool);
711         return buffer_addr;
712 }
713
714 /**
715  * Returns TRUE if given mbuf is indirect, or FALSE otherwise.
716  */
717 #define RTE_MBUF_INDIRECT(mb)   ((mb)->ol_flags & IND_ATTACHED_MBUF)
718
719 /**
720  * Returns TRUE if given mbuf is direct, or FALSE otherwise.
721  */
722 #define RTE_MBUF_DIRECT(mb)     (!RTE_MBUF_INDIRECT(mb))
723
724 /**
725  * Private data in case of pktmbuf pool.
726  *
727  * A structure that contains some pktmbuf_pool-specific data that are
728  * appended after the mempool structure (in private data).
729  */
730 struct rte_pktmbuf_pool_private {
731         uint16_t mbuf_data_room_size; /**< Size of data space in each mbuf. */
732         uint16_t mbuf_priv_size;      /**< Size of private area in each mbuf. */
733 };
734
735 #ifdef RTE_LIBRTE_MBUF_DEBUG
736
737 /**  check mbuf type in debug mode */
738 #define __rte_mbuf_sanity_check(m, is_h) rte_mbuf_sanity_check(m, is_h)
739
740 #else /*  RTE_LIBRTE_MBUF_DEBUG */
741
742 /**  check mbuf type in debug mode */
743 #define __rte_mbuf_sanity_check(m, is_h) do { } while (0)
744
745 #endif /*  RTE_LIBRTE_MBUF_DEBUG */
746
747 #ifdef RTE_MBUF_REFCNT_ATOMIC
748
749 /**
750  * Reads the value of an mbuf's refcnt.
751  * @param m
752  *   Mbuf to read
753  * @return
754  *   Reference count number.
755  */
756 static inline uint16_t
757 rte_mbuf_refcnt_read(const struct rte_mbuf *m)
758 {
759         return (uint16_t)(rte_atomic16_read(&m->refcnt_atomic));
760 }
761
762 /**
763  * Sets an mbuf's refcnt to a defined value.
764  * @param m
765  *   Mbuf to update
766  * @param new_value
767  *   Value set
768  */
769 static inline void
770 rte_mbuf_refcnt_set(struct rte_mbuf *m, uint16_t new_value)
771 {
772         rte_atomic16_set(&m->refcnt_atomic, new_value);
773 }
774
775 /* internal */
776 static inline uint16_t
777 __rte_mbuf_refcnt_update(struct rte_mbuf *m, int16_t value)
778 {
779         return (uint16_t)(rte_atomic16_add_return(&m->refcnt_atomic, value));
780 }
781
782 /**
783  * Adds given value to an mbuf's refcnt and returns its new value.
784  * @param m
785  *   Mbuf to update
786  * @param value
787  *   Value to add/subtract
788  * @return
789  *   Updated value
790  */
791 static inline uint16_t
792 rte_mbuf_refcnt_update(struct rte_mbuf *m, int16_t value)
793 {
794         /*
795          * The atomic_add is an expensive operation, so we don't want to
796          * call it in the case where we know we are the uniq holder of
797          * this mbuf (i.e. ref_cnt == 1). Otherwise, an atomic
798          * operation has to be used because concurrent accesses on the
799          * reference counter can occur.
800          */
801         if (likely(rte_mbuf_refcnt_read(m) == 1)) {
802                 rte_mbuf_refcnt_set(m, 1 + value);
803                 return 1 + value;
804         }
805
806         return __rte_mbuf_refcnt_update(m, value);
807 }
808
809 #else /* ! RTE_MBUF_REFCNT_ATOMIC */
810
811 /* internal */
812 static inline uint16_t
813 __rte_mbuf_refcnt_update(struct rte_mbuf *m, int16_t value)
814 {
815         m->refcnt = (uint16_t)(m->refcnt + value);
816         return m->refcnt;
817 }
818
819 /**
820  * Adds given value to an mbuf's refcnt and returns its new value.
821  */
822 static inline uint16_t
823 rte_mbuf_refcnt_update(struct rte_mbuf *m, int16_t value)
824 {
825         return __rte_mbuf_refcnt_update(m, value);
826 }
827
828 /**
829  * Reads the value of an mbuf's refcnt.
830  */
831 static inline uint16_t
832 rte_mbuf_refcnt_read(const struct rte_mbuf *m)
833 {
834         return m->refcnt;
835 }
836
837 /**
838  * Sets an mbuf's refcnt to the defined value.
839  */
840 static inline void
841 rte_mbuf_refcnt_set(struct rte_mbuf *m, uint16_t new_value)
842 {
843         m->refcnt = new_value;
844 }
845
846 #endif /* RTE_MBUF_REFCNT_ATOMIC */
847
848 /** Mbuf prefetch */
849 #define RTE_MBUF_PREFETCH_TO_FREE(m) do {       \
850         if ((m) != NULL)                        \
851                 rte_prefetch0(m);               \
852 } while (0)
853
854
855 /**
856  * Sanity checks on an mbuf.
857  *
858  * Check the consistency of the given mbuf. The function will cause a
859  * panic if corruption is detected.
860  *
861  * @param m
862  *   The mbuf to be checked.
863  * @param is_header
864  *   True if the mbuf is a packet header, false if it is a sub-segment
865  *   of a packet (in this case, some fields like nb_segs are not checked)
866  */
867 void
868 rte_mbuf_sanity_check(const struct rte_mbuf *m, int is_header);
869
870 #define MBUF_RAW_ALLOC_CHECK(m) do {                            \
871         RTE_ASSERT(rte_mbuf_refcnt_read(m) == 1);               \
872         RTE_ASSERT((m)->next == NULL);                          \
873         RTE_ASSERT((m)->nb_segs == 1);                          \
874         __rte_mbuf_sanity_check(m, 0);                          \
875 } while (0)
876
877 /**
878  * Allocate an uninitialized mbuf from mempool *mp*.
879  *
880  * This function can be used by PMDs (especially in RX functions) to
881  * allocate an uninitialized mbuf. The driver is responsible of
882  * initializing all the required fields. See rte_pktmbuf_reset().
883  * For standard needs, prefer rte_pktmbuf_alloc().
884  *
885  * The caller can expect that the following fields of the mbuf structure
886  * are initialized: buf_addr, buf_iova, buf_len, refcnt=1, nb_segs=1,
887  * next=NULL, pool, priv_size. The other fields must be initialized
888  * by the caller.
889  *
890  * @param mp
891  *   The mempool from which mbuf is allocated.
892  * @return
893  *   - The pointer to the new mbuf on success.
894  *   - NULL if allocation failed.
895  */
896 static inline struct rte_mbuf *rte_mbuf_raw_alloc(struct rte_mempool *mp)
897 {
898         struct rte_mbuf *m;
899         void *mb = NULL;
900
901         if (rte_mempool_get(mp, &mb) < 0)
902                 return NULL;
903         m = (struct rte_mbuf *)mb;
904         MBUF_RAW_ALLOC_CHECK(m);
905         return m;
906 }
907
908 /**
909  * Put mbuf back into its original mempool.
910  *
911  * The caller must ensure that the mbuf is direct and properly
912  * reinitialized (refcnt=1, next=NULL, nb_segs=1), as done by
913  * rte_pktmbuf_prefree_seg().
914  *
915  * This function should be used with care, when optimization is
916  * required. For standard needs, prefer rte_pktmbuf_free() or
917  * rte_pktmbuf_free_seg().
918  *
919  * @param m
920  *   The mbuf to be freed.
921  */
922 static __rte_always_inline void
923 rte_mbuf_raw_free(struct rte_mbuf *m)
924 {
925         RTE_ASSERT(RTE_MBUF_DIRECT(m));
926         RTE_ASSERT(rte_mbuf_refcnt_read(m) == 1);
927         RTE_ASSERT(m->next == NULL);
928         RTE_ASSERT(m->nb_segs == 1);
929         __rte_mbuf_sanity_check(m, 0);
930         rte_mempool_put(m->pool, m);
931 }
932
933 /* compat with older versions */
934 __rte_deprecated
935 static inline void
936 __rte_mbuf_raw_free(struct rte_mbuf *m)
937 {
938         rte_mbuf_raw_free(m);
939 }
940
941 /* Operations on ctrl mbuf */
942
943 /**
944  * The control mbuf constructor.
945  *
946  * This function initializes some fields in an mbuf structure that are
947  * not modified by the user once created (mbuf type, origin pool, buffer
948  * start address, and so on). This function is given as a callback function
949  * to rte_mempool_obj_iter() or rte_mempool_create() at pool creation time.
950  *
951  * @param mp
952  *   The mempool from which the mbuf is allocated.
953  * @param opaque_arg
954  *   A pointer that can be used by the user to retrieve useful information
955  *   for mbuf initialization. This pointer is the opaque argument passed to
956  *   rte_mempool_obj_iter() or rte_mempool_create().
957  * @param m
958  *   The mbuf to initialize.
959  * @param i
960  *   The index of the mbuf in the pool table.
961  */
962 void rte_ctrlmbuf_init(struct rte_mempool *mp, void *opaque_arg,
963                 void *m, unsigned i);
964
965 /**
966  * Allocate a new mbuf (type is ctrl) from mempool *mp*.
967  *
968  * This new mbuf is initialized with data pointing to the beginning of
969  * buffer, and with a length of zero.
970  *
971  * @param mp
972  *   The mempool from which the mbuf is allocated.
973  * @return
974  *   - The pointer to the new mbuf on success.
975  *   - NULL if allocation failed.
976  */
977 #define rte_ctrlmbuf_alloc(mp) rte_pktmbuf_alloc(mp)
978
979 /**
980  * Free a control mbuf back into its original mempool.
981  *
982  * @param m
983  *   The control mbuf to be freed.
984  */
985 #define rte_ctrlmbuf_free(m) rte_pktmbuf_free(m)
986
987 /**
988  * A macro that returns the pointer to the carried data.
989  *
990  * The value that can be read or assigned.
991  *
992  * @param m
993  *   The control mbuf.
994  */
995 #define rte_ctrlmbuf_data(m) ((char *)((m)->buf_addr) + (m)->data_off)
996
997 /**
998  * A macro that returns the length of the carried data.
999  *
1000  * The value that can be read or assigned.
1001  *
1002  * @param m
1003  *   The control mbuf.
1004  */
1005 #define rte_ctrlmbuf_len(m) rte_pktmbuf_data_len(m)
1006
1007 /**
1008  * Tests if an mbuf is a control mbuf
1009  *
1010  * @param m
1011  *   The mbuf to be tested
1012  * @return
1013  *   - True (1) if the mbuf is a control mbuf
1014  *   - False(0) otherwise
1015  */
1016 static inline int
1017 rte_is_ctrlmbuf(struct rte_mbuf *m)
1018 {
1019         return !!(m->ol_flags & CTRL_MBUF_FLAG);
1020 }
1021
1022 /* Operations on pkt mbuf */
1023
1024 /**
1025  * The packet mbuf constructor.
1026  *
1027  * This function initializes some fields in the mbuf structure that are
1028  * not modified by the user once created (origin pool, buffer start
1029  * address, and so on). This function is given as a callback function to
1030  * rte_mempool_obj_iter() or rte_mempool_create() at pool creation time.
1031  *
1032  * @param mp
1033  *   The mempool from which mbufs originate.
1034  * @param opaque_arg
1035  *   A pointer that can be used by the user to retrieve useful information
1036  *   for mbuf initialization. This pointer is the opaque argument passed to
1037  *   rte_mempool_obj_iter() or rte_mempool_create().
1038  * @param m
1039  *   The mbuf to initialize.
1040  * @param i
1041  *   The index of the mbuf in the pool table.
1042  */
1043 void rte_pktmbuf_init(struct rte_mempool *mp, void *opaque_arg,
1044                       void *m, unsigned i);
1045
1046
1047 /**
1048  * A  packet mbuf pool constructor.
1049  *
1050  * This function initializes the mempool private data in the case of a
1051  * pktmbuf pool. This private data is needed by the driver. The
1052  * function must be called on the mempool before it is used, or it
1053  * can be given as a callback function to rte_mempool_create() at
1054  * pool creation. It can be extended by the user, for example, to
1055  * provide another packet size.
1056  *
1057  * @param mp
1058  *   The mempool from which mbufs originate.
1059  * @param opaque_arg
1060  *   A pointer that can be used by the user to retrieve useful information
1061  *   for mbuf initialization. This pointer is the opaque argument passed to
1062  *   rte_mempool_create().
1063  */
1064 void rte_pktmbuf_pool_init(struct rte_mempool *mp, void *opaque_arg);
1065
1066 /**
1067  * Create a mbuf pool.
1068  *
1069  * This function creates and initializes a packet mbuf pool. It is
1070  * a wrapper to rte_mempool functions.
1071  *
1072  * @param name
1073  *   The name of the mbuf pool.
1074  * @param n
1075  *   The number of elements in the mbuf pool. The optimum size (in terms
1076  *   of memory usage) for a mempool is when n is a power of two minus one:
1077  *   n = (2^q - 1).
1078  * @param cache_size
1079  *   Size of the per-core object cache. See rte_mempool_create() for
1080  *   details.
1081  * @param priv_size
1082  *   Size of application private are between the rte_mbuf structure
1083  *   and the data buffer. This value must be aligned to RTE_MBUF_PRIV_ALIGN.
1084  * @param data_room_size
1085  *   Size of data buffer in each mbuf, including RTE_PKTMBUF_HEADROOM.
1086  * @param socket_id
1087  *   The socket identifier where the memory should be allocated. The
1088  *   value can be *SOCKET_ID_ANY* if there is no NUMA constraint for the
1089  *   reserved zone.
1090  * @return
1091  *   The pointer to the new allocated mempool, on success. NULL on error
1092  *   with rte_errno set appropriately. Possible rte_errno values include:
1093  *    - E_RTE_NO_CONFIG - function could not get pointer to rte_config structure
1094  *    - E_RTE_SECONDARY - function was called from a secondary process instance
1095  *    - EINVAL - cache size provided is too large, or priv_size is not aligned.
1096  *    - ENOSPC - the maximum number of memzones has already been allocated
1097  *    - EEXIST - a memzone with the same name already exists
1098  *    - ENOMEM - no appropriate memory area found in which to create memzone
1099  */
1100 struct rte_mempool *
1101 rte_pktmbuf_pool_create(const char *name, unsigned n,
1102         unsigned cache_size, uint16_t priv_size, uint16_t data_room_size,
1103         int socket_id);
1104
1105 /**
1106  * Get the data room size of mbufs stored in a pktmbuf_pool
1107  *
1108  * The data room size is the amount of data that can be stored in a
1109  * mbuf including the headroom (RTE_PKTMBUF_HEADROOM).
1110  *
1111  * @param mp
1112  *   The packet mbuf pool.
1113  * @return
1114  *   The data room size of mbufs stored in this mempool.
1115  */
1116 static inline uint16_t
1117 rte_pktmbuf_data_room_size(struct rte_mempool *mp)
1118 {
1119         struct rte_pktmbuf_pool_private *mbp_priv;
1120
1121         mbp_priv = (struct rte_pktmbuf_pool_private *)rte_mempool_get_priv(mp);
1122         return mbp_priv->mbuf_data_room_size;
1123 }
1124
1125 /**
1126  * Get the application private size of mbufs stored in a pktmbuf_pool
1127  *
1128  * The private size of mbuf is a zone located between the rte_mbuf
1129  * structure and the data buffer where an application can store data
1130  * associated to a packet.
1131  *
1132  * @param mp
1133  *   The packet mbuf pool.
1134  * @return
1135  *   The private size of mbufs stored in this mempool.
1136  */
1137 static inline uint16_t
1138 rte_pktmbuf_priv_size(struct rte_mempool *mp)
1139 {
1140         struct rte_pktmbuf_pool_private *mbp_priv;
1141
1142         mbp_priv = (struct rte_pktmbuf_pool_private *)rte_mempool_get_priv(mp);
1143         return mbp_priv->mbuf_priv_size;
1144 }
1145
1146 /**
1147  * Reset the data_off field of a packet mbuf to its default value.
1148  *
1149  * The given mbuf must have only one segment, which should be empty.
1150  *
1151  * @param m
1152  *   The packet mbuf's data_off field has to be reset.
1153  */
1154 static inline void rte_pktmbuf_reset_headroom(struct rte_mbuf *m)
1155 {
1156         m->data_off = RTE_MIN(RTE_PKTMBUF_HEADROOM, (uint16_t)m->buf_len);
1157 }
1158
1159 /**
1160  * Reset the fields of a packet mbuf to their default values.
1161  *
1162  * The given mbuf must have only one segment.
1163  *
1164  * @param m
1165  *   The packet mbuf to be resetted.
1166  */
1167 #define MBUF_INVALID_PORT UINT16_MAX
1168
1169 static inline void rte_pktmbuf_reset(struct rte_mbuf *m)
1170 {
1171         m->next = NULL;
1172         m->pkt_len = 0;
1173         m->tx_offload = 0;
1174         m->vlan_tci = 0;
1175         m->vlan_tci_outer = 0;
1176         m->nb_segs = 1;
1177         m->port = MBUF_INVALID_PORT;
1178
1179         m->ol_flags = 0;
1180         m->packet_type = 0;
1181         rte_pktmbuf_reset_headroom(m);
1182
1183         m->data_len = 0;
1184         __rte_mbuf_sanity_check(m, 1);
1185 }
1186
1187 /**
1188  * Allocate a new mbuf from a mempool.
1189  *
1190  * This new mbuf contains one segment, which has a length of 0. The pointer
1191  * to data is initialized to have some bytes of headroom in the buffer
1192  * (if buffer size allows).
1193  *
1194  * @param mp
1195  *   The mempool from which the mbuf is allocated.
1196  * @return
1197  *   - The pointer to the new mbuf on success.
1198  *   - NULL if allocation failed.
1199  */
1200 static inline struct rte_mbuf *rte_pktmbuf_alloc(struct rte_mempool *mp)
1201 {
1202         struct rte_mbuf *m;
1203         if ((m = rte_mbuf_raw_alloc(mp)) != NULL)
1204                 rte_pktmbuf_reset(m);
1205         return m;
1206 }
1207
1208 /**
1209  * Allocate a bulk of mbufs, initialize refcnt and reset the fields to default
1210  * values.
1211  *
1212  *  @param pool
1213  *    The mempool from which mbufs are allocated.
1214  *  @param mbufs
1215  *    Array of pointers to mbufs
1216  *  @param count
1217  *    Array size
1218  *  @return
1219  *   - 0: Success
1220  *   - -ENOENT: Not enough entries in the mempool; no mbufs are retrieved.
1221  */
1222 static inline int rte_pktmbuf_alloc_bulk(struct rte_mempool *pool,
1223          struct rte_mbuf **mbufs, unsigned count)
1224 {
1225         unsigned idx = 0;
1226         int rc;
1227
1228         rc = rte_mempool_get_bulk(pool, (void **)mbufs, count);
1229         if (unlikely(rc))
1230                 return rc;
1231
1232         /* To understand duff's device on loop unwinding optimization, see
1233          * https://en.wikipedia.org/wiki/Duff's_device.
1234          * Here while() loop is used rather than do() while{} to avoid extra
1235          * check if count is zero.
1236          */
1237         switch (count % 4) {
1238         case 0:
1239                 while (idx != count) {
1240                         MBUF_RAW_ALLOC_CHECK(mbufs[idx]);
1241                         rte_pktmbuf_reset(mbufs[idx]);
1242                         idx++;
1243                         /* fall-through */
1244         case 3:
1245                         MBUF_RAW_ALLOC_CHECK(mbufs[idx]);
1246                         rte_pktmbuf_reset(mbufs[idx]);
1247                         idx++;
1248                         /* fall-through */
1249         case 2:
1250                         MBUF_RAW_ALLOC_CHECK(mbufs[idx]);
1251                         rte_pktmbuf_reset(mbufs[idx]);
1252                         idx++;
1253                         /* fall-through */
1254         case 1:
1255                         MBUF_RAW_ALLOC_CHECK(mbufs[idx]);
1256                         rte_pktmbuf_reset(mbufs[idx]);
1257                         idx++;
1258                         /* fall-through */
1259                 }
1260         }
1261         return 0;
1262 }
1263
1264 /**
1265  * Attach packet mbuf to another packet mbuf.
1266  *
1267  * After attachment we refer the mbuf we attached as 'indirect',
1268  * while mbuf we attached to as 'direct'.
1269  * The direct mbuf's reference counter is incremented.
1270  *
1271  * Right now, not supported:
1272  *  - attachment for already indirect mbuf (e.g. - mi has to be direct).
1273  *  - mbuf we trying to attach (mi) is used by someone else
1274  *    e.g. it's reference counter is greater then 1.
1275  *
1276  * @param mi
1277  *   The indirect packet mbuf.
1278  * @param m
1279  *   The packet mbuf we're attaching to.
1280  */
1281 static inline void rte_pktmbuf_attach(struct rte_mbuf *mi, struct rte_mbuf *m)
1282 {
1283         struct rte_mbuf *md;
1284
1285         RTE_ASSERT(RTE_MBUF_DIRECT(mi) &&
1286             rte_mbuf_refcnt_read(mi) == 1);
1287
1288         /* if m is not direct, get the mbuf that embeds the data */
1289         if (RTE_MBUF_DIRECT(m))
1290                 md = m;
1291         else
1292                 md = rte_mbuf_from_indirect(m);
1293
1294         rte_mbuf_refcnt_update(md, 1);
1295         mi->priv_size = m->priv_size;
1296         mi->buf_iova = m->buf_iova;
1297         mi->buf_addr = m->buf_addr;
1298         mi->buf_len = m->buf_len;
1299
1300         mi->data_off = m->data_off;
1301         mi->data_len = m->data_len;
1302         mi->port = m->port;
1303         mi->vlan_tci = m->vlan_tci;
1304         mi->vlan_tci_outer = m->vlan_tci_outer;
1305         mi->tx_offload = m->tx_offload;
1306         mi->hash = m->hash;
1307
1308         mi->next = NULL;
1309         mi->pkt_len = mi->data_len;
1310         mi->nb_segs = 1;
1311         mi->ol_flags = m->ol_flags | IND_ATTACHED_MBUF;
1312         mi->packet_type = m->packet_type;
1313         mi->timestamp = m->timestamp;
1314
1315         __rte_mbuf_sanity_check(mi, 1);
1316         __rte_mbuf_sanity_check(m, 0);
1317 }
1318
1319 /**
1320  * Detach an indirect packet mbuf.
1321  *
1322  *  - restore original mbuf address and length values.
1323  *  - reset pktmbuf data and data_len to their default values.
1324  *  - decrement the direct mbuf's reference counter. When the
1325  *  reference counter becomes 0, the direct mbuf is freed.
1326  *
1327  * All other fields of the given packet mbuf will be left intact.
1328  *
1329  * @param m
1330  *   The indirect attached packet mbuf.
1331  */
1332 static inline void rte_pktmbuf_detach(struct rte_mbuf *m)
1333 {
1334         struct rte_mbuf *md = rte_mbuf_from_indirect(m);
1335         struct rte_mempool *mp = m->pool;
1336         uint32_t mbuf_size, buf_len, priv_size;
1337
1338         priv_size = rte_pktmbuf_priv_size(mp);
1339         mbuf_size = sizeof(struct rte_mbuf) + priv_size;
1340         buf_len = rte_pktmbuf_data_room_size(mp);
1341
1342         m->priv_size = priv_size;
1343         m->buf_addr = (char *)m + mbuf_size;
1344         m->buf_iova = rte_mempool_virt2iova(m) + mbuf_size;
1345         m->buf_len = (uint16_t)buf_len;
1346         rte_pktmbuf_reset_headroom(m);
1347         m->data_len = 0;
1348         m->ol_flags = 0;
1349
1350         if (rte_mbuf_refcnt_update(md, -1) == 0) {
1351                 md->next = NULL;
1352                 md->nb_segs = 1;
1353                 rte_mbuf_refcnt_set(md, 1);
1354                 rte_mbuf_raw_free(md);
1355         }
1356 }
1357
1358 /**
1359  * Decrease reference counter and unlink a mbuf segment
1360  *
1361  * This function does the same than a free, except that it does not
1362  * return the segment to its pool.
1363  * It decreases the reference counter, and if it reaches 0, it is
1364  * detached from its parent for an indirect mbuf.
1365  *
1366  * @param m
1367  *   The mbuf to be unlinked
1368  * @return
1369  *   - (m) if it is the last reference. It can be recycled or freed.
1370  *   - (NULL) if the mbuf still has remaining references on it.
1371  */
1372 static __rte_always_inline struct rte_mbuf *
1373 rte_pktmbuf_prefree_seg(struct rte_mbuf *m)
1374 {
1375         __rte_mbuf_sanity_check(m, 0);
1376
1377         if (likely(rte_mbuf_refcnt_read(m) == 1)) {
1378
1379                 if (RTE_MBUF_INDIRECT(m))
1380                         rte_pktmbuf_detach(m);
1381
1382                 if (m->next != NULL) {
1383                         m->next = NULL;
1384                         m->nb_segs = 1;
1385                 }
1386
1387                 return m;
1388
1389         } else if (__rte_mbuf_refcnt_update(m, -1) == 0) {
1390
1391                 if (RTE_MBUF_INDIRECT(m))
1392                         rte_pktmbuf_detach(m);
1393
1394                 if (m->next != NULL) {
1395                         m->next = NULL;
1396                         m->nb_segs = 1;
1397                 }
1398                 rte_mbuf_refcnt_set(m, 1);
1399
1400                 return m;
1401         }
1402         return NULL;
1403 }
1404
1405 /* deprecated, replaced by rte_pktmbuf_prefree_seg() */
1406 __rte_deprecated
1407 static inline struct rte_mbuf *
1408 __rte_pktmbuf_prefree_seg(struct rte_mbuf *m)
1409 {
1410         return rte_pktmbuf_prefree_seg(m);
1411 }
1412
1413 /**
1414  * Free a segment of a packet mbuf into its original mempool.
1415  *
1416  * Free an mbuf, without parsing other segments in case of chained
1417  * buffers.
1418  *
1419  * @param m
1420  *   The packet mbuf segment to be freed.
1421  */
1422 static __rte_always_inline void
1423 rte_pktmbuf_free_seg(struct rte_mbuf *m)
1424 {
1425         m = rte_pktmbuf_prefree_seg(m);
1426         if (likely(m != NULL))
1427                 rte_mbuf_raw_free(m);
1428 }
1429
1430 /**
1431  * Free a packet mbuf back into its original mempool.
1432  *
1433  * Free an mbuf, and all its segments in case of chained buffers. Each
1434  * segment is added back into its original mempool.
1435  *
1436  * @param m
1437  *   The packet mbuf to be freed.
1438  */
1439 static inline void rte_pktmbuf_free(struct rte_mbuf *m)
1440 {
1441         struct rte_mbuf *m_next;
1442
1443         __rte_mbuf_sanity_check(m, 1);
1444
1445         while (m != NULL) {
1446                 m_next = m->next;
1447                 rte_pktmbuf_free_seg(m);
1448                 m = m_next;
1449         }
1450 }
1451
1452 /**
1453  * Creates a "clone" of the given packet mbuf.
1454  *
1455  * Walks through all segments of the given packet mbuf, and for each of them:
1456  *  - Creates a new packet mbuf from the given pool.
1457  *  - Attaches newly created mbuf to the segment.
1458  * Then updates pkt_len and nb_segs of the "clone" packet mbuf to match values
1459  * from the original packet mbuf.
1460  *
1461  * @param md
1462  *   The packet mbuf to be cloned.
1463  * @param mp
1464  *   The mempool from which the "clone" mbufs are allocated.
1465  * @return
1466  *   - The pointer to the new "clone" mbuf on success.
1467  *   - NULL if allocation fails.
1468  */
1469 static inline struct rte_mbuf *rte_pktmbuf_clone(struct rte_mbuf *md,
1470                 struct rte_mempool *mp)
1471 {
1472         struct rte_mbuf *mc, *mi, **prev;
1473         uint32_t pktlen;
1474         uint16_t nseg;
1475
1476         if (unlikely ((mc = rte_pktmbuf_alloc(mp)) == NULL))
1477                 return NULL;
1478
1479         mi = mc;
1480         prev = &mi->next;
1481         pktlen = md->pkt_len;
1482         nseg = 0;
1483
1484         do {
1485                 nseg++;
1486                 rte_pktmbuf_attach(mi, md);
1487                 *prev = mi;
1488                 prev = &mi->next;
1489         } while ((md = md->next) != NULL &&
1490             (mi = rte_pktmbuf_alloc(mp)) != NULL);
1491
1492         *prev = NULL;
1493         mc->nb_segs = nseg;
1494         mc->pkt_len = pktlen;
1495
1496         /* Allocation of new indirect segment failed */
1497         if (unlikely (mi == NULL)) {
1498                 rte_pktmbuf_free(mc);
1499                 return NULL;
1500         }
1501
1502         __rte_mbuf_sanity_check(mc, 1);
1503         return mc;
1504 }
1505
1506 /**
1507  * Adds given value to the refcnt of all packet mbuf segments.
1508  *
1509  * Walks through all segments of given packet mbuf and for each of them
1510  * invokes rte_mbuf_refcnt_update().
1511  *
1512  * @param m
1513  *   The packet mbuf whose refcnt to be updated.
1514  * @param v
1515  *   The value to add to the mbuf's segments refcnt.
1516  */
1517 static inline void rte_pktmbuf_refcnt_update(struct rte_mbuf *m, int16_t v)
1518 {
1519         __rte_mbuf_sanity_check(m, 1);
1520
1521         do {
1522                 rte_mbuf_refcnt_update(m, v);
1523         } while ((m = m->next) != NULL);
1524 }
1525
1526 /**
1527  * Get the headroom in a packet mbuf.
1528  *
1529  * @param m
1530  *   The packet mbuf.
1531  * @return
1532  *   The length of the headroom.
1533  */
1534 static inline uint16_t rte_pktmbuf_headroom(const struct rte_mbuf *m)
1535 {
1536         __rte_mbuf_sanity_check(m, 0);
1537         return m->data_off;
1538 }
1539
1540 /**
1541  * Get the tailroom of a packet mbuf.
1542  *
1543  * @param m
1544  *   The packet mbuf.
1545  * @return
1546  *   The length of the tailroom.
1547  */
1548 static inline uint16_t rte_pktmbuf_tailroom(const struct rte_mbuf *m)
1549 {
1550         __rte_mbuf_sanity_check(m, 0);
1551         return (uint16_t)(m->buf_len - rte_pktmbuf_headroom(m) -
1552                           m->data_len);
1553 }
1554
1555 /**
1556  * Get the last segment of the packet.
1557  *
1558  * @param m
1559  *   The packet mbuf.
1560  * @return
1561  *   The last segment of the given mbuf.
1562  */
1563 static inline struct rte_mbuf *rte_pktmbuf_lastseg(struct rte_mbuf *m)
1564 {
1565         __rte_mbuf_sanity_check(m, 1);
1566         while (m->next != NULL)
1567                 m = m->next;
1568         return m;
1569 }
1570
1571 /**
1572  * A macro that points to an offset into the data in the mbuf.
1573  *
1574  * The returned pointer is cast to type t. Before using this
1575  * function, the user must ensure that the first segment is large
1576  * enough to accommodate its data.
1577  *
1578  * @param m
1579  *   The packet mbuf.
1580  * @param o
1581  *   The offset into the mbuf data.
1582  * @param t
1583  *   The type to cast the result into.
1584  */
1585 #define rte_pktmbuf_mtod_offset(m, t, o)        \
1586         ((t)((char *)(m)->buf_addr + (m)->data_off + (o)))
1587
1588 /**
1589  * A macro that points to the start of the data in the mbuf.
1590  *
1591  * The returned pointer is cast to type t. Before using this
1592  * function, the user must ensure that the first segment is large
1593  * enough to accommodate its data.
1594  *
1595  * @param m
1596  *   The packet mbuf.
1597  * @param t
1598  *   The type to cast the result into.
1599  */
1600 #define rte_pktmbuf_mtod(m, t) rte_pktmbuf_mtod_offset(m, t, 0)
1601
1602 /**
1603  * A macro that returns the IO address that points to an offset of the
1604  * start of the data in the mbuf
1605  *
1606  * @param m
1607  *   The packet mbuf.
1608  * @param o
1609  *   The offset into the data to calculate address from.
1610  */
1611 #define rte_pktmbuf_iova_offset(m, o) \
1612         (rte_iova_t)((m)->buf_iova + (m)->data_off + (o))
1613
1614 /* deprecated */
1615 #define rte_pktmbuf_mtophys_offset(m, o) \
1616         rte_pktmbuf_iova_offset(m, o)
1617
1618 /**
1619  * A macro that returns the IO address that points to the start of the
1620  * data in the mbuf
1621  *
1622  * @param m
1623  *   The packet mbuf.
1624  */
1625 #define rte_pktmbuf_iova(m) rte_pktmbuf_iova_offset(m, 0)
1626
1627 /* deprecated */
1628 #define rte_pktmbuf_mtophys(m) rte_pktmbuf_iova(m)
1629
1630 /**
1631  * A macro that returns the length of the packet.
1632  *
1633  * The value can be read or assigned.
1634  *
1635  * @param m
1636  *   The packet mbuf.
1637  */
1638 #define rte_pktmbuf_pkt_len(m) ((m)->pkt_len)
1639
1640 /**
1641  * A macro that returns the length of the segment.
1642  *
1643  * The value can be read or assigned.
1644  *
1645  * @param m
1646  *   The packet mbuf.
1647  */
1648 #define rte_pktmbuf_data_len(m) ((m)->data_len)
1649
1650 /**
1651  * Prepend len bytes to an mbuf data area.
1652  *
1653  * Returns a pointer to the new
1654  * data start address. If there is not enough headroom in the first
1655  * segment, the function will return NULL, without modifying the mbuf.
1656  *
1657  * @param m
1658  *   The pkt mbuf.
1659  * @param len
1660  *   The amount of data to prepend (in bytes).
1661  * @return
1662  *   A pointer to the start of the newly prepended data, or
1663  *   NULL if there is not enough headroom space in the first segment
1664  */
1665 static inline char *rte_pktmbuf_prepend(struct rte_mbuf *m,
1666                                         uint16_t len)
1667 {
1668         __rte_mbuf_sanity_check(m, 1);
1669
1670         if (unlikely(len > rte_pktmbuf_headroom(m)))
1671                 return NULL;
1672
1673         m->data_off -= len;
1674         m->data_len = (uint16_t)(m->data_len + len);
1675         m->pkt_len  = (m->pkt_len + len);
1676
1677         return (char *)m->buf_addr + m->data_off;
1678 }
1679
1680 /**
1681  * Append len bytes to an mbuf.
1682  *
1683  * Append len bytes to an mbuf and return a pointer to the start address
1684  * of the added data. If there is not enough tailroom in the last
1685  * segment, the function will return NULL, without modifying the mbuf.
1686  *
1687  * @param m
1688  *   The packet mbuf.
1689  * @param len
1690  *   The amount of data to append (in bytes).
1691  * @return
1692  *   A pointer to the start of the newly appended data, or
1693  *   NULL if there is not enough tailroom space in the last segment
1694  */
1695 static inline char *rte_pktmbuf_append(struct rte_mbuf *m, uint16_t len)
1696 {
1697         void *tail;
1698         struct rte_mbuf *m_last;
1699
1700         __rte_mbuf_sanity_check(m, 1);
1701
1702         m_last = rte_pktmbuf_lastseg(m);
1703         if (unlikely(len > rte_pktmbuf_tailroom(m_last)))
1704                 return NULL;
1705
1706         tail = (char *)m_last->buf_addr + m_last->data_off + m_last->data_len;
1707         m_last->data_len = (uint16_t)(m_last->data_len + len);
1708         m->pkt_len  = (m->pkt_len + len);
1709         return (char*) tail;
1710 }
1711
1712 /**
1713  * Remove len bytes at the beginning of an mbuf.
1714  *
1715  * Returns a pointer to the start address of the new data area. If the
1716  * length is greater than the length of the first segment, then the
1717  * function will fail and return NULL, without modifying the mbuf.
1718  *
1719  * @param m
1720  *   The packet mbuf.
1721  * @param len
1722  *   The amount of data to remove (in bytes).
1723  * @return
1724  *   A pointer to the new start of the data.
1725  */
1726 static inline char *rte_pktmbuf_adj(struct rte_mbuf *m, uint16_t len)
1727 {
1728         __rte_mbuf_sanity_check(m, 1);
1729
1730         if (unlikely(len > m->data_len))
1731                 return NULL;
1732
1733         m->data_len = (uint16_t)(m->data_len - len);
1734         m->data_off += len;
1735         m->pkt_len  = (m->pkt_len - len);
1736         return (char *)m->buf_addr + m->data_off;
1737 }
1738
1739 /**
1740  * Remove len bytes of data at the end of the mbuf.
1741  *
1742  * If the length is greater than the length of the last segment, the
1743  * function will fail and return -1 without modifying the mbuf.
1744  *
1745  * @param m
1746  *   The packet mbuf.
1747  * @param len
1748  *   The amount of data to remove (in bytes).
1749  * @return
1750  *   - 0: On success.
1751  *   - -1: On error.
1752  */
1753 static inline int rte_pktmbuf_trim(struct rte_mbuf *m, uint16_t len)
1754 {
1755         struct rte_mbuf *m_last;
1756
1757         __rte_mbuf_sanity_check(m, 1);
1758
1759         m_last = rte_pktmbuf_lastseg(m);
1760         if (unlikely(len > m_last->data_len))
1761                 return -1;
1762
1763         m_last->data_len = (uint16_t)(m_last->data_len - len);
1764         m->pkt_len  = (m->pkt_len - len);
1765         return 0;
1766 }
1767
1768 /**
1769  * Test if mbuf data is contiguous.
1770  *
1771  * @param m
1772  *   The packet mbuf.
1773  * @return
1774  *   - 1, if all data is contiguous (one segment).
1775  *   - 0, if there is several segments.
1776  */
1777 static inline int rte_pktmbuf_is_contiguous(const struct rte_mbuf *m)
1778 {
1779         __rte_mbuf_sanity_check(m, 1);
1780         return !!(m->nb_segs == 1);
1781 }
1782
1783 /**
1784  * @internal used by rte_pktmbuf_read().
1785  */
1786 const void *__rte_pktmbuf_read(const struct rte_mbuf *m, uint32_t off,
1787         uint32_t len, void *buf);
1788
1789 /**
1790  * Read len data bytes in a mbuf at specified offset.
1791  *
1792  * If the data is contiguous, return the pointer in the mbuf data, else
1793  * copy the data in the buffer provided by the user and return its
1794  * pointer.
1795  *
1796  * @param m
1797  *   The pointer to the mbuf.
1798  * @param off
1799  *   The offset of the data in the mbuf.
1800  * @param len
1801  *   The amount of bytes to read.
1802  * @param buf
1803  *   The buffer where data is copied if it is not contiguous in mbuf
1804  *   data. Its length should be at least equal to the len parameter.
1805  * @return
1806  *   The pointer to the data, either in the mbuf if it is contiguous,
1807  *   or in the user buffer. If mbuf is too small, NULL is returned.
1808  */
1809 static inline const void *rte_pktmbuf_read(const struct rte_mbuf *m,
1810         uint32_t off, uint32_t len, void *buf)
1811 {
1812         if (likely(off + len <= rte_pktmbuf_data_len(m)))
1813                 return rte_pktmbuf_mtod_offset(m, char *, off);
1814         else
1815                 return __rte_pktmbuf_read(m, off, len, buf);
1816 }
1817
1818 /**
1819  * Chain an mbuf to another, thereby creating a segmented packet.
1820  *
1821  * Note: The implementation will do a linear walk over the segments to find
1822  * the tail entry. For cases when there are many segments, it's better to
1823  * chain the entries manually.
1824  *
1825  * @param head
1826  *   The head of the mbuf chain (the first packet)
1827  * @param tail
1828  *   The mbuf to put last in the chain
1829  *
1830  * @return
1831  *   - 0, on success.
1832  *   - -EOVERFLOW, if the chain segment limit exceeded
1833  */
1834 static inline int rte_pktmbuf_chain(struct rte_mbuf *head, struct rte_mbuf *tail)
1835 {
1836         struct rte_mbuf *cur_tail;
1837
1838         /* Check for number-of-segments-overflow */
1839         if (head->nb_segs + tail->nb_segs > RTE_MBUF_MAX_NB_SEGS)
1840                 return -EOVERFLOW;
1841
1842         /* Chain 'tail' onto the old tail */
1843         cur_tail = rte_pktmbuf_lastseg(head);
1844         cur_tail->next = tail;
1845
1846         /* accumulate number of segments and total length. */
1847         head->nb_segs += tail->nb_segs;
1848         head->pkt_len += tail->pkt_len;
1849
1850         /* pkt_len is only set in the head */
1851         tail->pkt_len = tail->data_len;
1852
1853         return 0;
1854 }
1855
1856 /**
1857  * Validate general requirements for Tx offload in mbuf.
1858  *
1859  * This function checks correctness and completeness of Tx offload settings.
1860  *
1861  * @param m
1862  *   The packet mbuf to be validated.
1863  * @return
1864  *   0 if packet is valid
1865  */
1866 static inline int
1867 rte_validate_tx_offload(const struct rte_mbuf *m)
1868 {
1869         uint64_t ol_flags = m->ol_flags;
1870         uint64_t inner_l3_offset = m->l2_len;
1871
1872         /* Does packet set any of available offloads? */
1873         if (!(ol_flags & PKT_TX_OFFLOAD_MASK))
1874                 return 0;
1875
1876         if (ol_flags & PKT_TX_OUTER_IP_CKSUM)
1877                 inner_l3_offset += m->outer_l2_len + m->outer_l3_len;
1878
1879         /* Headers are fragmented */
1880         if (rte_pktmbuf_data_len(m) < inner_l3_offset + m->l3_len + m->l4_len)
1881                 return -ENOTSUP;
1882
1883         /* IP checksum can be counted only for IPv4 packet */
1884         if ((ol_flags & PKT_TX_IP_CKSUM) && (ol_flags & PKT_TX_IPV6))
1885                 return -EINVAL;
1886
1887         /* IP type not set when required */
1888         if (ol_flags & (PKT_TX_L4_MASK | PKT_TX_TCP_SEG))
1889                 if (!(ol_flags & (PKT_TX_IPV4 | PKT_TX_IPV6)))
1890                         return -EINVAL;
1891
1892         /* Check requirements for TSO packet */
1893         if (ol_flags & PKT_TX_TCP_SEG)
1894                 if ((m->tso_segsz == 0) ||
1895                                 ((ol_flags & PKT_TX_IPV4) &&
1896                                 !(ol_flags & PKT_TX_IP_CKSUM)))
1897                         return -EINVAL;
1898
1899         /* PKT_TX_OUTER_IP_CKSUM set for non outer IPv4 packet. */
1900         if ((ol_flags & PKT_TX_OUTER_IP_CKSUM) &&
1901                         !(ol_flags & PKT_TX_OUTER_IPV4))
1902                 return -EINVAL;
1903
1904         return 0;
1905 }
1906
1907 /**
1908  * Linearize data in mbuf.
1909  *
1910  * This function moves the mbuf data in the first segment if there is enough
1911  * tailroom. The subsequent segments are unchained and freed.
1912  *
1913  * @param mbuf
1914  *   mbuf to linearize
1915  * @return
1916  *   - 0, on success
1917  *   - -1, on error
1918  */
1919 static inline int
1920 rte_pktmbuf_linearize(struct rte_mbuf *mbuf)
1921 {
1922         int seg_len, copy_len;
1923         struct rte_mbuf *m;
1924         struct rte_mbuf *m_next;
1925         char *buffer;
1926
1927         if (rte_pktmbuf_is_contiguous(mbuf))
1928                 return 0;
1929
1930         /* Extend first segment to the total packet length */
1931         copy_len = rte_pktmbuf_pkt_len(mbuf) - rte_pktmbuf_data_len(mbuf);
1932
1933         if (unlikely(copy_len > rte_pktmbuf_tailroom(mbuf)))
1934                 return -1;
1935
1936         buffer = rte_pktmbuf_mtod_offset(mbuf, char *, mbuf->data_len);
1937         mbuf->data_len = (uint16_t)(mbuf->pkt_len);
1938
1939         /* Append data from next segments to the first one */
1940         m = mbuf->next;
1941         while (m != NULL) {
1942                 m_next = m->next;
1943
1944                 seg_len = rte_pktmbuf_data_len(m);
1945                 rte_memcpy(buffer, rte_pktmbuf_mtod(m, char *), seg_len);
1946                 buffer += seg_len;
1947
1948                 rte_pktmbuf_free_seg(m);
1949                 m = m_next;
1950         }
1951
1952         mbuf->next = NULL;
1953         mbuf->nb_segs = 1;
1954
1955         return 0;
1956 }
1957
1958 /**
1959  * Dump an mbuf structure to a file.
1960  *
1961  * Dump all fields for the given packet mbuf and all its associated
1962  * segments (in the case of a chained buffer).
1963  *
1964  * @param f
1965  *   A pointer to a file for output
1966  * @param m
1967  *   The packet mbuf.
1968  * @param dump_len
1969  *   If dump_len != 0, also dump the "dump_len" first data bytes of
1970  *   the packet.
1971  */
1972 void rte_pktmbuf_dump(FILE *f, const struct rte_mbuf *m, unsigned dump_len);
1973
1974 #ifdef __cplusplus
1975 }
1976 #endif
1977
1978 #endif /* _RTE_MBUF_H_ */