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