mbuf: add macro for offset arithmetic
[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  * This library provide an API to allocate/free packet mbufs, which are
48  * used to carry network packets.
49  *
50  * To understand the concepts of packet buffers or mbufs, you
51  * should read "TCP/IP Illustrated, Volume 2: The Implementation,
52  * Addison-Wesley, 1995, ISBN 0-201-63354-X from Richard Stevens"
53  * http://www.kohala.com/start/tcpipiv2.html
54  */
55
56 #include <stdint.h>
57 #include <rte_common.h>
58 #include <rte_mempool.h>
59 #include <rte_memory.h>
60 #include <rte_atomic.h>
61 #include <rte_prefetch.h>
62 #include <rte_branch_prediction.h>
63
64 #ifdef __cplusplus
65 extern "C" {
66 #endif
67
68 /* deprecated options */
69 #pragma GCC poison RTE_MBUF_SCATTER_GATHER
70 #pragma GCC poison RTE_MBUF_REFCNT
71
72 /*
73  * Packet Offload Features Flags. It also carry packet type information.
74  * Critical resources. Both rx/tx shared these bits. Be cautious on any change
75  *
76  * - RX flags start at bit position zero, and get added to the left of previous
77  *   flags.
78  * - The most-significant 8 bits are reserved for generic mbuf flags
79  * - TX flags therefore start at bit position 55 (i.e. 63-8), and new flags get
80  *   added to the right of the previously defined flags
81  *
82  * Keep these flags synchronized with rte_get_rx_ol_flag_name() and
83  * rte_get_tx_ol_flag_name().
84  */
85 #define PKT_RX_VLAN_PKT      (1ULL << 0)  /**< RX packet is a 802.1q VLAN packet. */
86 #define PKT_RX_RSS_HASH      (1ULL << 1)  /**< RX packet with RSS hash result. */
87 #define PKT_RX_FDIR          (1ULL << 2)  /**< RX packet with FDIR match indicate. */
88 #define PKT_RX_L4_CKSUM_BAD  (1ULL << 3)  /**< L4 cksum of RX pkt. is not OK. */
89 #define PKT_RX_IP_CKSUM_BAD  (1ULL << 4)  /**< IP cksum of RX pkt. is not OK. */
90 #define PKT_RX_EIP_CKSUM_BAD (0ULL << 0)  /**< External IP header checksum error. */
91 #define PKT_RX_OVERSIZE      (0ULL << 0)  /**< Num of desc of an RX pkt oversize. */
92 #define PKT_RX_HBUF_OVERFLOW (0ULL << 0)  /**< Header buffer overflow. */
93 #define PKT_RX_RECIP_ERR     (0ULL << 0)  /**< Hardware processing error. */
94 #define PKT_RX_MAC_ERR       (0ULL << 0)  /**< MAC error. */
95 #define PKT_RX_IPV4_HDR      (1ULL << 5)  /**< RX packet with IPv4 header. */
96 #define PKT_RX_IPV4_HDR_EXT  (1ULL << 6)  /**< RX packet with extended IPv4 header. */
97 #define PKT_RX_IPV6_HDR      (1ULL << 7)  /**< RX packet with IPv6 header. */
98 #define PKT_RX_IPV6_HDR_EXT  (1ULL << 8)  /**< RX packet with extended IPv6 header. */
99 #define PKT_RX_IEEE1588_PTP  (1ULL << 9)  /**< RX IEEE1588 L2 Ethernet PT Packet. */
100 #define PKT_RX_IEEE1588_TMST (1ULL << 10) /**< RX IEEE1588 L2/L4 timestamped packet.*/
101 #define PKT_RX_TUNNEL_IPV4_HDR (1ULL << 11) /**< RX tunnel packet with IPv4 header.*/
102 #define PKT_RX_TUNNEL_IPV6_HDR (1ULL << 12) /**< RX tunnel packet with IPv6 header. */
103 #define PKT_RX_FDIR_ID       (1ULL << 13) /**< FD id reported if FDIR match. */
104 #define PKT_RX_FDIR_FLX      (1ULL << 14) /**< Flexible bytes reported if FDIR match. */
105 /* add new RX flags here */
106
107 /* add new TX flags here */
108
109 /**
110  * TCP segmentation offload. To enable this offload feature for a
111  * packet to be transmitted on hardware supporting TSO:
112  *  - set the PKT_TX_TCP_SEG flag in mbuf->ol_flags (this flag implies
113  *    PKT_TX_TCP_CKSUM)
114  *  - set the flag PKT_TX_IPV4 or PKT_TX_IPV6
115  *  - if it's IPv4, set the PKT_TX_IP_CKSUM flag and write the IP checksum
116  *    to 0 in the packet
117  *  - fill the mbuf offload information: l2_len, l3_len, l4_len, tso_segsz
118  *  - calculate the pseudo header checksum without taking ip_len in account,
119  *    and set it in the TCP header. Refer to rte_ipv4_phdr_cksum() and
120  *    rte_ipv6_phdr_cksum() that can be used as helpers.
121  */
122 #define PKT_TX_TCP_SEG       (1ULL << 50)
123
124 #define PKT_TX_IEEE1588_TMST (1ULL << 51) /**< TX IEEE1588 packet to timestamp. */
125
126 /**
127  * Bits 52+53 used for L4 packet type with checksum enabled: 00: Reserved,
128  * 01: TCP checksum, 10: SCTP checksum, 11: UDP checksum. To use hardware
129  * L4 checksum offload, the user needs to:
130  *  - fill l2_len and l3_len in mbuf
131  *  - set the flags PKT_TX_TCP_CKSUM, PKT_TX_SCTP_CKSUM or PKT_TX_UDP_CKSUM
132  *  - set the flag PKT_TX_IPV4 or PKT_TX_IPV6
133  *  - calculate the pseudo header checksum and set it in the L4 header (only
134  *    for TCP or UDP). See rte_ipv4_phdr_cksum() and rte_ipv6_phdr_cksum().
135  *    For SCTP, set the crc field to 0.
136  */
137 #define PKT_TX_L4_NO_CKSUM   (0ULL << 52) /**< Disable L4 cksum of TX pkt. */
138 #define PKT_TX_TCP_CKSUM     (1ULL << 52) /**< TCP cksum of TX pkt. computed by NIC. */
139 #define PKT_TX_SCTP_CKSUM    (2ULL << 52) /**< SCTP cksum of TX pkt. computed by NIC. */
140 #define PKT_TX_UDP_CKSUM     (3ULL << 52) /**< UDP cksum of TX pkt. computed by NIC. */
141 #define PKT_TX_L4_MASK       (3ULL << 52) /**< Mask for L4 cksum offload request. */
142
143 /**
144  * Offload the IP checksum in the hardware. The flag PKT_TX_IPV4 should
145  * also be set by the application, although a PMD will only check
146  * PKT_TX_IP_CKSUM.
147  *  - set the IP checksum field in the packet to 0
148  *  - fill the mbuf offload information: l2_len, l3_len
149  */
150 #define PKT_TX_IP_CKSUM      (1ULL << 54)
151
152 /**
153  * Packet is IPv4. This flag must be set when using any offload feature
154  * (TSO, L3 or L4 checksum) to tell the NIC that the packet is an IPv4
155  * packet. If the packet is a tunneled packet, this flag is related to
156  * the inner headers.
157  */
158 #define PKT_TX_IPV4          (1ULL << 55)
159
160 /**
161  * Packet is IPv6. This flag must be set when using an offload feature
162  * (TSO or L4 checksum) to tell the NIC that the packet is an IPv6
163  * packet. If the packet is a tunneled packet, this flag is related to
164  * the inner headers.
165  */
166 #define PKT_TX_IPV6          (1ULL << 56)
167
168 #define PKT_TX_VLAN_PKT      (1ULL << 57) /**< TX packet is a 802.1q VLAN packet. */
169
170 /**
171  * Offload the IP checksum of an external header in the hardware. The
172  * flag PKT_TX_OUTER_IPV4 should also be set by the application, alto ugh
173  * a PMD will only check PKT_TX_IP_CKSUM.  The IP checksum field in the
174  * packet must be set to 0.
175  *  - set the outer IP checksum field in the packet to 0
176  *  - fill the mbuf offload information: outer_l2_len, outer_l3_len
177  */
178 #define PKT_TX_OUTER_IP_CKSUM   (1ULL << 58)
179
180 /**
181  * Packet outer header is IPv4. This flag must be set when using any
182  * outer offload feature (L3 or L4 checksum) to tell the NIC that the
183  * outer header of the tunneled packet is an IPv4 packet.
184  */
185 #define PKT_TX_OUTER_IPV4   (1ULL << 59)
186
187 /**
188  * Packet outer header is IPv6. This flag must be set when using any
189  * outer offload feature (L4 checksum) to tell the NIC that the outer
190  * header of the tunneled packet is an IPv6 packet.
191  */
192 #define PKT_TX_OUTER_IPV6    (1ULL << 60)
193
194 #define IND_ATTACHED_MBUF    (1ULL << 62) /**< Indirect attached mbuf */
195
196 /* Use final bit of flags to indicate a control mbuf */
197 #define CTRL_MBUF_FLAG       (1ULL << 63) /**< Mbuf contains control data */
198
199 /**
200  * Get the name of a RX offload flag
201  *
202  * @param mask
203  *   The mask describing the flag.
204  * @return
205  *   The name of this flag, or NULL if it's not a valid RX flag.
206  */
207 const char *rte_get_rx_ol_flag_name(uint64_t mask);
208
209 /**
210  * Get the name of a TX offload flag
211  *
212  * @param mask
213  *   The mask describing the flag. Usually only one bit must be set.
214  *   Several bits can be given if they belong to the same mask.
215  *   Ex: PKT_TX_L4_MASK.
216  * @return
217  *   The name of this flag, or NULL if it's not a valid TX flag.
218  */
219 const char *rte_get_tx_ol_flag_name(uint64_t mask);
220
221 /**
222  * Some NICs need at least 2KB buffer to RX standard Ethernet frame without
223  * splitting it into multiple segments.
224  * So, for mbufs that planned to be involved into RX/TX, the recommended
225  * minimal buffer length is 2KB + RTE_PKTMBUF_HEADROOM.
226  */
227 #define RTE_MBUF_DEFAULT_DATAROOM       2048
228 #define RTE_MBUF_DEFAULT_BUF_SIZE       \
229         (RTE_MBUF_DEFAULT_DATAROOM + RTE_PKTMBUF_HEADROOM)
230
231 /* define a set of marker types that can be used to refer to set points in the
232  * mbuf */
233 typedef void    *MARKER[0];   /**< generic marker for a point in a structure */
234 typedef uint8_t  MARKER8[0];  /**< generic marker with 1B alignment */
235 typedef uint64_t MARKER64[0]; /**< marker that allows us to overwrite 8 bytes
236                                * with a single assignment */
237
238 /**
239  * The generic rte_mbuf, containing a packet mbuf.
240  */
241 struct rte_mbuf {
242         MARKER cacheline0;
243
244         void *buf_addr;           /**< Virtual address of segment buffer. */
245         phys_addr_t buf_physaddr; /**< Physical address of segment buffer. */
246
247         uint16_t buf_len;         /**< Length of segment buffer. */
248
249         /* next 6 bytes are initialised on RX descriptor rearm */
250         MARKER8 rearm_data;
251         uint16_t data_off;
252
253         /**
254          * 16-bit Reference counter.
255          * It should only be accessed using the following functions:
256          * rte_mbuf_refcnt_update(), rte_mbuf_refcnt_read(), and
257          * rte_mbuf_refcnt_set(). The functionality of these functions (atomic,
258          * or non-atomic) is controlled by the CONFIG_RTE_MBUF_REFCNT_ATOMIC
259          * config option.
260          */
261         union {
262                 rte_atomic16_t refcnt_atomic; /**< Atomically accessed refcnt */
263                 uint16_t refcnt;              /**< Non-atomically accessed refcnt */
264         };
265         uint8_t nb_segs;          /**< Number of segments. */
266         uint8_t port;             /**< Input port. */
267
268         uint64_t ol_flags;        /**< Offload features. */
269
270         /* remaining bytes are set on RX when pulling packet from descriptor */
271         MARKER rx_descriptor_fields1;
272
273         /**
274          * The packet type, which is used to indicate ordinary packet and also
275          * tunneled packet format, i.e. each number is represented a type of
276          * packet.
277          */
278         uint16_t packet_type;
279
280         uint16_t data_len;        /**< Amount of data in segment buffer. */
281         uint32_t pkt_len;         /**< Total pkt len: sum of all segments. */
282         uint16_t vlan_tci;        /**< VLAN Tag Control Identifier (CPU order) */
283         uint16_t reserved;
284         union {
285                 uint32_t rss;     /**< RSS hash result if RSS enabled */
286                 struct {
287                         union {
288                                 struct {
289                                         uint16_t hash;
290                                         uint16_t id;
291                                 };
292                                 uint32_t lo;
293                                 /**< Second 4 flexible bytes */
294                         };
295                         uint32_t hi;
296                         /**< First 4 flexible bytes or FD ID, dependent on
297                              PKT_RX_FDIR_* flag in ol_flags. */
298                 } fdir;           /**< Filter identifier if FDIR enabled */
299                 uint32_t sched;   /**< Hierarchical scheduler */
300                 uint32_t usr;     /**< User defined tags. See rte_distributor_process() */
301         } hash;                   /**< hash information */
302
303         uint32_t seqn; /**< Sequence number. See also rte_reorder_insert() */
304
305         /* second cache line - fields only used in slow path or on TX */
306         MARKER cacheline1 __rte_cache_aligned;
307
308         union {
309                 void *userdata;   /**< Can be used for external metadata */
310                 uint64_t udata64; /**< Allow 8-byte userdata on 32-bit */
311         };
312
313         struct rte_mempool *pool; /**< Pool from which mbuf was allocated. */
314         struct rte_mbuf *next;    /**< Next segment of scattered packet. */
315
316         /* fields to support TX offloads */
317         union {
318                 uint64_t tx_offload;       /**< combined for easy fetch */
319                 struct {
320                         uint64_t l2_len:7; /**< L2 (MAC) Header Length. */
321                         uint64_t l3_len:9; /**< L3 (IP) Header Length. */
322                         uint64_t l4_len:8; /**< L4 (TCP/UDP) Header Length. */
323                         uint64_t tso_segsz:16; /**< TCP TSO segment size */
324
325                         /* fields for TX offloading of tunnels */
326                         uint64_t outer_l3_len:9; /**< Outer L3 (IP) Hdr Length. */
327                         uint64_t outer_l2_len:7; /**< Outer L2 (MAC) Hdr Length. */
328
329                         /* uint64_t unused:8; */
330                 };
331         };
332
333         /** Size of the application private data. In case of an indirect
334          * mbuf, it stores the direct mbuf private data size. */
335         uint16_t priv_size;
336 } __rte_cache_aligned;
337
338 static inline uint16_t rte_pktmbuf_priv_size(struct rte_mempool *mp);
339
340 /**
341  * Return the mbuf owning the data buffer address of an indirect mbuf.
342  *
343  * @param mi
344  *   The pointer to the indirect mbuf.
345  * @return
346  *   The address of the direct mbuf corresponding to buffer_addr.
347  */
348 static inline struct rte_mbuf *
349 rte_mbuf_from_indirect(struct rte_mbuf *mi)
350 {
351         return RTE_PTR_SUB(mi->buf_addr, sizeof(*mi) + mi->priv_size);
352 }
353
354 /**
355  * Return the buffer address embedded in the given mbuf.
356  *
357  * @param md
358  *   The pointer to the mbuf.
359  * @return
360  *   The address of the data buffer owned by the mbuf.
361  */
362 static inline char *
363 rte_mbuf_to_baddr(struct rte_mbuf *md)
364 {
365         char *buffer_addr;
366         buffer_addr = (char *)md + sizeof(*md) + rte_pktmbuf_priv_size(md->pool);
367         return buffer_addr;
368 }
369
370 /**
371  * Returns TRUE if given mbuf is indirect, or FALSE otherwise.
372  */
373 #define RTE_MBUF_INDIRECT(mb)   ((mb)->ol_flags & IND_ATTACHED_MBUF)
374
375 /**
376  * Returns TRUE if given mbuf is direct, or FALSE otherwise.
377  */
378 #define RTE_MBUF_DIRECT(mb)     (!RTE_MBUF_INDIRECT(mb))
379
380 /**
381  * Private data in case of pktmbuf pool.
382  *
383  * A structure that contains some pktmbuf_pool-specific data that are
384  * appended after the mempool structure (in private data).
385  */
386 struct rte_pktmbuf_pool_private {
387         uint16_t mbuf_data_room_size; /**< Size of data space in each mbuf. */
388         uint16_t mbuf_priv_size;      /**< Size of private area in each mbuf. */
389 };
390
391 #ifdef RTE_LIBRTE_MBUF_DEBUG
392
393 /**  check mbuf type in debug mode */
394 #define __rte_mbuf_sanity_check(m, is_h) rte_mbuf_sanity_check(m, is_h)
395
396 /**  check mbuf type in debug mode if mbuf pointer is not null */
397 #define __rte_mbuf_sanity_check_raw(m, is_h)    do {       \
398         if ((m) != NULL)                                   \
399                 rte_mbuf_sanity_check(m, is_h);          \
400 } while (0)
401
402 /**  MBUF asserts in debug mode */
403 #define RTE_MBUF_ASSERT(exp)                                         \
404 if (!(exp)) {                                                        \
405         rte_panic("line%d\tassert \"" #exp "\" failed\n", __LINE__); \
406 }
407
408 #else /*  RTE_LIBRTE_MBUF_DEBUG */
409
410 /**  check mbuf type in debug mode */
411 #define __rte_mbuf_sanity_check(m, is_h) do { } while (0)
412
413 /**  check mbuf type in debug mode if mbuf pointer is not null */
414 #define __rte_mbuf_sanity_check_raw(m, is_h) do { } while (0)
415
416 /**  MBUF asserts in debug mode */
417 #define RTE_MBUF_ASSERT(exp)                do { } while (0)
418
419 #endif /*  RTE_LIBRTE_MBUF_DEBUG */
420
421 #ifdef RTE_MBUF_REFCNT_ATOMIC
422
423 /**
424  * Reads the value of an mbuf's refcnt.
425  * @param m
426  *   Mbuf to read
427  * @return
428  *   Reference count number.
429  */
430 static inline uint16_t
431 rte_mbuf_refcnt_read(const struct rte_mbuf *m)
432 {
433         return (uint16_t)(rte_atomic16_read(&m->refcnt_atomic));
434 }
435
436 /**
437  * Sets an mbuf's refcnt to a defined value.
438  * @param m
439  *   Mbuf to update
440  * @param new_value
441  *   Value set
442  */
443 static inline void
444 rte_mbuf_refcnt_set(struct rte_mbuf *m, uint16_t new_value)
445 {
446         rte_atomic16_set(&m->refcnt_atomic, new_value);
447 }
448
449 /**
450  * Adds given value to an mbuf's refcnt and returns its new value.
451  * @param m
452  *   Mbuf to update
453  * @param value
454  *   Value to add/subtract
455  * @return
456  *   Updated value
457  */
458 static inline uint16_t
459 rte_mbuf_refcnt_update(struct rte_mbuf *m, int16_t value)
460 {
461         /*
462          * The atomic_add is an expensive operation, so we don't want to
463          * call it in the case where we know we are the uniq holder of
464          * this mbuf (i.e. ref_cnt == 1). Otherwise, an atomic
465          * operation has to be used because concurrent accesses on the
466          * reference counter can occur.
467          */
468         if (likely(rte_mbuf_refcnt_read(m) == 1)) {
469                 rte_mbuf_refcnt_set(m, 1 + value);
470                 return 1 + value;
471         }
472
473         return (uint16_t)(rte_atomic16_add_return(&m->refcnt_atomic, value));
474 }
475
476 #else /* ! RTE_MBUF_REFCNT_ATOMIC */
477
478 /**
479  * Adds given value to an mbuf's refcnt and returns its new value.
480  */
481 static inline uint16_t
482 rte_mbuf_refcnt_update(struct rte_mbuf *m, int16_t value)
483 {
484         m->refcnt = (uint16_t)(m->refcnt + value);
485         return m->refcnt;
486 }
487
488 /**
489  * Reads the value of an mbuf's refcnt.
490  */
491 static inline uint16_t
492 rte_mbuf_refcnt_read(const struct rte_mbuf *m)
493 {
494         return m->refcnt;
495 }
496
497 /**
498  * Sets an mbuf's refcnt to the defined value.
499  */
500 static inline void
501 rte_mbuf_refcnt_set(struct rte_mbuf *m, uint16_t new_value)
502 {
503         m->refcnt = new_value;
504 }
505
506 #endif /* RTE_MBUF_REFCNT_ATOMIC */
507
508 /** Mbuf prefetch */
509 #define RTE_MBUF_PREFETCH_TO_FREE(m) do {       \
510         if ((m) != NULL)                        \
511                 rte_prefetch0(m);               \
512 } while (0)
513
514
515 /**
516  * Sanity checks on an mbuf.
517  *
518  * Check the consistency of the given mbuf. The function will cause a
519  * panic if corruption is detected.
520  *
521  * @param m
522  *   The mbuf to be checked.
523  * @param is_header
524  *   True if the mbuf is a packet header, false if it is a sub-segment
525  *   of a packet (in this case, some fields like nb_segs are not checked)
526  */
527 void
528 rte_mbuf_sanity_check(const struct rte_mbuf *m, int is_header);
529
530 /**
531  * @internal Allocate a new mbuf from mempool *mp*.
532  * The use of that function is reserved for RTE internal needs.
533  * Please use rte_pktmbuf_alloc().
534  *
535  * @param mp
536  *   The mempool from which mbuf is allocated.
537  * @return
538  *   - The pointer to the new mbuf on success.
539  *   - NULL if allocation failed.
540  */
541 static inline struct rte_mbuf *__rte_mbuf_raw_alloc(struct rte_mempool *mp)
542 {
543         struct rte_mbuf *m;
544         void *mb = NULL;
545         if (rte_mempool_get(mp, &mb) < 0)
546                 return NULL;
547         m = (struct rte_mbuf *)mb;
548         RTE_MBUF_ASSERT(rte_mbuf_refcnt_read(m) == 0);
549         rte_mbuf_refcnt_set(m, 1);
550         return m;
551 }
552
553 /**
554  * @internal Put mbuf back into its original mempool.
555  * The use of that function is reserved for RTE internal needs.
556  * Please use rte_pktmbuf_free().
557  *
558  * @param m
559  *   The mbuf to be freed.
560  */
561 static inline void __attribute__((always_inline))
562 __rte_mbuf_raw_free(struct rte_mbuf *m)
563 {
564         RTE_MBUF_ASSERT(rte_mbuf_refcnt_read(m) == 0);
565         rte_mempool_put(m->pool, m);
566 }
567
568 /* Operations on ctrl mbuf */
569
570 /**
571  * The control mbuf constructor.
572  *
573  * This function initializes some fields in an mbuf structure that are
574  * not modified by the user once created (mbuf type, origin pool, buffer
575  * start address, and so on). This function is given as a callback function
576  * to rte_mempool_create() at pool creation time.
577  *
578  * @param mp
579  *   The mempool from which the mbuf is allocated.
580  * @param opaque_arg
581  *   A pointer that can be used by the user to retrieve useful information
582  *   for mbuf initialization. This pointer comes from the ``init_arg``
583  *   parameter of rte_mempool_create().
584  * @param m
585  *   The mbuf to initialize.
586  * @param i
587  *   The index of the mbuf in the pool table.
588  */
589 void rte_ctrlmbuf_init(struct rte_mempool *mp, void *opaque_arg,
590                 void *m, unsigned i);
591
592 /**
593  * Allocate a new mbuf (type is ctrl) from mempool *mp*.
594  *
595  * This new mbuf is initialized with data pointing to the beginning of
596  * buffer, and with a length of zero.
597  *
598  * @param mp
599  *   The mempool from which the mbuf is allocated.
600  * @return
601  *   - The pointer to the new mbuf on success.
602  *   - NULL if allocation failed.
603  */
604 #define rte_ctrlmbuf_alloc(mp) rte_pktmbuf_alloc(mp)
605
606 /**
607  * Free a control mbuf back into its original mempool.
608  *
609  * @param m
610  *   The control mbuf to be freed.
611  */
612 #define rte_ctrlmbuf_free(m) rte_pktmbuf_free(m)
613
614 /**
615  * A macro that returns the pointer to the carried data.
616  *
617  * The value that can be read or assigned.
618  *
619  * @param m
620  *   The control mbuf.
621  */
622 #define rte_ctrlmbuf_data(m) ((char *)((m)->buf_addr) + (m)->data_off)
623
624 /**
625  * A macro that returns the length of the carried data.
626  *
627  * The value that can be read or assigned.
628  *
629  * @param m
630  *   The control mbuf.
631  */
632 #define rte_ctrlmbuf_len(m) rte_pktmbuf_data_len(m)
633
634 /**
635  * Tests if an mbuf is a control mbuf
636  *
637  * @param m
638  *   The mbuf to be tested
639  * @return
640  *   - True (1) if the mbuf is a control mbuf
641  *   - False(0) otherwise
642  */
643 static inline int
644 rte_is_ctrlmbuf(struct rte_mbuf *m)
645 {
646         return !!(m->ol_flags & CTRL_MBUF_FLAG);
647 }
648
649 /* Operations on pkt mbuf */
650
651 /**
652  * The packet mbuf constructor.
653  *
654  * This function initializes some fields in the mbuf structure that are
655  * not modified by the user once created (origin pool, buffer start
656  * address, and so on). This function is given as a callback function to
657  * rte_mempool_create() at pool creation time.
658  *
659  * @param mp
660  *   The mempool from which mbufs originate.
661  * @param opaque_arg
662  *   A pointer that can be used by the user to retrieve useful information
663  *   for mbuf initialization. This pointer comes from the ``init_arg``
664  *   parameter of rte_mempool_create().
665  * @param m
666  *   The mbuf to initialize.
667  * @param i
668  *   The index of the mbuf in the pool table.
669  */
670 void rte_pktmbuf_init(struct rte_mempool *mp, void *opaque_arg,
671                       void *m, unsigned i);
672
673
674 /**
675  * A  packet mbuf pool constructor.
676  *
677  * This function initializes the mempool private data in the case of a
678  * pktmbuf pool. This private data is needed by the driver. The
679  * function is given as a callback function to rte_mempool_create() at
680  * pool creation. It can be extended by the user, for example, to
681  * provide another packet size.
682  *
683  * @param mp
684  *   The mempool from which mbufs originate.
685  * @param opaque_arg
686  *   A pointer that can be used by the user to retrieve useful information
687  *   for mbuf initialization. This pointer comes from the ``init_arg``
688  *   parameter of rte_mempool_create().
689  */
690 void rte_pktmbuf_pool_init(struct rte_mempool *mp, void *opaque_arg);
691
692 /**
693  * Create a mbuf pool.
694  *
695  * This function creates and initializes a packet mbuf pool. It is
696  * a wrapper to rte_mempool_create() with the proper packet constructor
697  * and mempool constructor.
698  *
699  * @param name
700  *   The name of the mbuf pool.
701  * @param n
702  *   The number of elements in the mbuf pool. The optimum size (in terms
703  *   of memory usage) for a mempool is when n is a power of two minus one:
704  *   n = (2^q - 1).
705  * @param cache_size
706  *   Size of the per-core object cache. See rte_mempool_create() for
707  *   details.
708  * @param priv_size
709  *   Size of application private are between the rte_mbuf structure
710  *   and the data buffer.
711  * @param data_room_size
712  *   Size of data buffer in each mbuf, including RTE_PKTMBUF_HEADROOM.
713  * @param socket_id
714  *   The socket identifier where the memory should be allocated. The
715  *   value can be *SOCKET_ID_ANY* if there is no NUMA constraint for the
716  *   reserved zone.
717  * @return
718  *   The pointer to the new allocated mempool, on success. NULL on error
719  *   with rte_errno set appropriately. Possible rte_errno values include:
720  *    - E_RTE_NO_CONFIG - function could not get pointer to rte_config structure
721  *    - E_RTE_SECONDARY - function was called from a secondary process instance
722  *    - EINVAL - cache size provided is too large
723  *    - ENOSPC - the maximum number of memzones has already been allocated
724  *    - EEXIST - a memzone with the same name already exists
725  *    - ENOMEM - no appropriate memory area found in which to create memzone
726  */
727 struct rte_mempool *
728 rte_pktmbuf_pool_create(const char *name, unsigned n,
729         unsigned cache_size, uint16_t priv_size, uint16_t data_room_size,
730         int socket_id);
731
732 /**
733  * Get the data room size of mbufs stored in a pktmbuf_pool
734  *
735  * The data room size is the amount of data that can be stored in a
736  * mbuf including the headroom (RTE_PKTMBUF_HEADROOM).
737  *
738  * @param mp
739  *   The packet mbuf pool.
740  * @return
741  *   The data room size of mbufs stored in this mempool.
742  */
743 static inline uint16_t
744 rte_pktmbuf_data_room_size(struct rte_mempool *mp)
745 {
746         struct rte_pktmbuf_pool_private *mbp_priv;
747
748         mbp_priv = (struct rte_pktmbuf_pool_private *)rte_mempool_get_priv(mp);
749         return mbp_priv->mbuf_data_room_size;
750 }
751
752 /**
753  * Get the application private size of mbufs stored in a pktmbuf_pool
754  *
755  * The private size of mbuf is a zone located between the rte_mbuf
756  * structure and the data buffer where an application can store data
757  * associated to a packet.
758  *
759  * @param mp
760  *   The packet mbuf pool.
761  * @return
762  *   The private size of mbufs stored in this mempool.
763  */
764 static inline uint16_t
765 rte_pktmbuf_priv_size(struct rte_mempool *mp)
766 {
767         struct rte_pktmbuf_pool_private *mbp_priv;
768
769         mbp_priv = (struct rte_pktmbuf_pool_private *)rte_mempool_get_priv(mp);
770         return mbp_priv->mbuf_priv_size;
771 }
772
773 /**
774  * Reset the fields of a packet mbuf to their default values.
775  *
776  * The given mbuf must have only one segment.
777  *
778  * @param m
779  *   The packet mbuf to be resetted.
780  */
781 static inline void rte_pktmbuf_reset(struct rte_mbuf *m)
782 {
783         m->next = NULL;
784         m->pkt_len = 0;
785         m->tx_offload = 0;
786         m->vlan_tci = 0;
787         m->nb_segs = 1;
788         m->port = 0xff;
789
790         m->ol_flags = 0;
791         m->packet_type = 0;
792         m->data_off = (RTE_PKTMBUF_HEADROOM <= m->buf_len) ?
793                         RTE_PKTMBUF_HEADROOM : m->buf_len;
794
795         m->data_len = 0;
796         __rte_mbuf_sanity_check(m, 1);
797 }
798
799 /**
800  * Allocate a new mbuf from a mempool.
801  *
802  * This new mbuf contains one segment, which has a length of 0. The pointer
803  * to data is initialized to have some bytes of headroom in the buffer
804  * (if buffer size allows).
805  *
806  * @param mp
807  *   The mempool from which the mbuf is allocated.
808  * @return
809  *   - The pointer to the new mbuf on success.
810  *   - NULL if allocation failed.
811  */
812 static inline struct rte_mbuf *rte_pktmbuf_alloc(struct rte_mempool *mp)
813 {
814         struct rte_mbuf *m;
815         if ((m = __rte_mbuf_raw_alloc(mp)) != NULL)
816                 rte_pktmbuf_reset(m);
817         return m;
818 }
819
820 /**
821  * Attach packet mbuf to another packet mbuf.
822  *
823  * After attachment we refer the mbuf we attached as 'indirect',
824  * while mbuf we attached to as 'direct'.
825  * Right now, not supported:
826  *  - attachment for already indirect mbuf (e.g. - mi has to be direct).
827  *  - mbuf we trying to attach (mi) is used by someone else
828  *    e.g. it's reference counter is greater then 1.
829  *
830  * @param mi
831  *   The indirect packet mbuf.
832  * @param m
833  *   The packet mbuf we're attaching to.
834  */
835 static inline void rte_pktmbuf_attach(struct rte_mbuf *mi, struct rte_mbuf *m)
836 {
837         struct rte_mbuf *md;
838
839         RTE_MBUF_ASSERT(RTE_MBUF_DIRECT(mi) &&
840             rte_mbuf_refcnt_read(mi) == 1);
841
842         /* if m is not direct, get the mbuf that embeds the data */
843         if (RTE_MBUF_DIRECT(m))
844                 md = m;
845         else
846                 md = rte_mbuf_from_indirect(m);
847
848         rte_mbuf_refcnt_update(md, 1);
849         mi->priv_size = m->priv_size;
850         mi->buf_physaddr = m->buf_physaddr;
851         mi->buf_addr = m->buf_addr;
852         mi->buf_len = m->buf_len;
853
854         mi->next = m->next;
855         mi->data_off = m->data_off;
856         mi->data_len = m->data_len;
857         mi->port = m->port;
858         mi->vlan_tci = m->vlan_tci;
859         mi->tx_offload = m->tx_offload;
860         mi->hash = m->hash;
861
862         mi->next = NULL;
863         mi->pkt_len = mi->data_len;
864         mi->nb_segs = 1;
865         mi->ol_flags = m->ol_flags | IND_ATTACHED_MBUF;
866         mi->packet_type = m->packet_type;
867
868         __rte_mbuf_sanity_check(mi, 1);
869         __rte_mbuf_sanity_check(m, 0);
870 }
871
872 /**
873  * Detach an indirect packet mbuf.
874  *
875  *  - restore original mbuf address and length values.
876  *  - reset pktmbuf data and data_len to their default values.
877  *  All other fields of the given packet mbuf will be left intact.
878  *
879  * @param m
880  *   The indirect attached packet mbuf.
881  */
882 static inline void rte_pktmbuf_detach(struct rte_mbuf *m)
883 {
884         struct rte_mempool *mp = m->pool;
885         uint32_t mbuf_size, buf_len, priv_size;
886
887         priv_size = rte_pktmbuf_priv_size(mp);
888         mbuf_size = sizeof(struct rte_mbuf) + priv_size;
889         buf_len = rte_pktmbuf_data_room_size(mp);
890
891         m->priv_size = priv_size;
892         m->buf_addr = (char *)m + mbuf_size;
893         m->buf_physaddr = rte_mempool_virt2phy(mp, m) + mbuf_size;
894         m->buf_len = (uint16_t)buf_len;
895         m->data_off = RTE_MIN(RTE_PKTMBUF_HEADROOM, (uint16_t)m->buf_len);
896         m->data_len = 0;
897         m->ol_flags = 0;
898 }
899
900 static inline struct rte_mbuf* __attribute__((always_inline))
901 __rte_pktmbuf_prefree_seg(struct rte_mbuf *m)
902 {
903         __rte_mbuf_sanity_check(m, 0);
904
905         if (likely(rte_mbuf_refcnt_update(m, -1) == 0)) {
906
907                 /* if this is an indirect mbuf, then
908                  *  - detach mbuf
909                  *  - free attached mbuf segment
910                  */
911                 if (RTE_MBUF_INDIRECT(m)) {
912                         struct rte_mbuf *md = rte_mbuf_from_indirect(m);
913                         rte_pktmbuf_detach(m);
914                         if (rte_mbuf_refcnt_update(md, -1) == 0)
915                                 __rte_mbuf_raw_free(md);
916                 }
917                 return m;
918         }
919         return NULL;
920 }
921
922 /**
923  * Free a segment of a packet mbuf into its original mempool.
924  *
925  * Free an mbuf, without parsing other segments in case of chained
926  * buffers.
927  *
928  * @param m
929  *   The packet mbuf segment to be freed.
930  */
931 static inline void __attribute__((always_inline))
932 rte_pktmbuf_free_seg(struct rte_mbuf *m)
933 {
934         if (likely(NULL != (m = __rte_pktmbuf_prefree_seg(m)))) {
935                 m->next = NULL;
936                 __rte_mbuf_raw_free(m);
937         }
938 }
939
940 /**
941  * Free a packet mbuf back into its original mempool.
942  *
943  * Free an mbuf, and all its segments in case of chained buffers. Each
944  * segment is added back into its original mempool.
945  *
946  * @param m
947  *   The packet mbuf to be freed.
948  */
949 static inline void rte_pktmbuf_free(struct rte_mbuf *m)
950 {
951         struct rte_mbuf *m_next;
952
953         __rte_mbuf_sanity_check(m, 1);
954
955         while (m != NULL) {
956                 m_next = m->next;
957                 rte_pktmbuf_free_seg(m);
958                 m = m_next;
959         }
960 }
961
962 /**
963  * Creates a "clone" of the given packet mbuf.
964  *
965  * Walks through all segments of the given packet mbuf, and for each of them:
966  *  - Creates a new packet mbuf from the given pool.
967  *  - Attaches newly created mbuf to the segment.
968  * Then updates pkt_len and nb_segs of the "clone" packet mbuf to match values
969  * from the original packet mbuf.
970  *
971  * @param md
972  *   The packet mbuf to be cloned.
973  * @param mp
974  *   The mempool from which the "clone" mbufs are allocated.
975  * @return
976  *   - The pointer to the new "clone" mbuf on success.
977  *   - NULL if allocation fails.
978  */
979 static inline struct rte_mbuf *rte_pktmbuf_clone(struct rte_mbuf *md,
980                 struct rte_mempool *mp)
981 {
982         struct rte_mbuf *mc, *mi, **prev;
983         uint32_t pktlen;
984         uint8_t nseg;
985
986         if (unlikely ((mc = rte_pktmbuf_alloc(mp)) == NULL))
987                 return NULL;
988
989         mi = mc;
990         prev = &mi->next;
991         pktlen = md->pkt_len;
992         nseg = 0;
993
994         do {
995                 nseg++;
996                 rte_pktmbuf_attach(mi, md);
997                 *prev = mi;
998                 prev = &mi->next;
999         } while ((md = md->next) != NULL &&
1000             (mi = rte_pktmbuf_alloc(mp)) != NULL);
1001
1002         *prev = NULL;
1003         mc->nb_segs = nseg;
1004         mc->pkt_len = pktlen;
1005
1006         /* Allocation of new indirect segment failed */
1007         if (unlikely (mi == NULL)) {
1008                 rte_pktmbuf_free(mc);
1009                 return NULL;
1010         }
1011
1012         __rte_mbuf_sanity_check(mc, 1);
1013         return mc;
1014 }
1015
1016 /**
1017  * Adds given value to the refcnt of all packet mbuf segments.
1018  *
1019  * Walks through all segments of given packet mbuf and for each of them
1020  * invokes rte_mbuf_refcnt_update().
1021  *
1022  * @param m
1023  *   The packet mbuf whose refcnt to be updated.
1024  * @param v
1025  *   The value to add to the mbuf's segments refcnt.
1026  */
1027 static inline void rte_pktmbuf_refcnt_update(struct rte_mbuf *m, int16_t v)
1028 {
1029         __rte_mbuf_sanity_check(m, 1);
1030
1031         do {
1032                 rte_mbuf_refcnt_update(m, v);
1033         } while ((m = m->next) != NULL);
1034 }
1035
1036 /**
1037  * Get the headroom in a packet mbuf.
1038  *
1039  * @param m
1040  *   The packet mbuf.
1041  * @return
1042  *   The length of the headroom.
1043  */
1044 static inline uint16_t rte_pktmbuf_headroom(const struct rte_mbuf *m)
1045 {
1046         __rte_mbuf_sanity_check(m, 1);
1047         return m->data_off;
1048 }
1049
1050 /**
1051  * Get the tailroom of a packet mbuf.
1052  *
1053  * @param m
1054  *   The packet mbuf.
1055  * @return
1056  *   The length of the tailroom.
1057  */
1058 static inline uint16_t rte_pktmbuf_tailroom(const struct rte_mbuf *m)
1059 {
1060         __rte_mbuf_sanity_check(m, 1);
1061         return (uint16_t)(m->buf_len - rte_pktmbuf_headroom(m) -
1062                           m->data_len);
1063 }
1064
1065 /**
1066  * Get the last segment of the packet.
1067  *
1068  * @param m
1069  *   The packet mbuf.
1070  * @return
1071  *   The last segment of the given mbuf.
1072  */
1073 static inline struct rte_mbuf *rte_pktmbuf_lastseg(struct rte_mbuf *m)
1074 {
1075         struct rte_mbuf *m2 = (struct rte_mbuf *)m;
1076
1077         __rte_mbuf_sanity_check(m, 1);
1078         while (m2->next != NULL)
1079                 m2 = m2->next;
1080         return m2;
1081 }
1082
1083 /**
1084  * A macro that points to an offset into the data in the mbuf.
1085  *
1086  * The returned pointer is cast to type t. Before using this
1087  * function, the user must ensure that the first segment is large
1088  * enough to accommodate its data.
1089  *
1090  * @param m
1091  *   The packet mbuf.
1092  * @param o
1093  *   The offset into the mbuf data.
1094  * @param t
1095  *   The type to cast the result into.
1096  */
1097 #define rte_pktmbuf_mtod_offset(m, t, o)        \
1098         ((t)((char *)(m)->buf_addr + (m)->data_off + (o)))
1099
1100 /**
1101  * A macro that points to the start of the data in the mbuf.
1102  *
1103  * The returned pointer is cast to type t. Before using this
1104  * function, the user must ensure that the first segment is large
1105  * enough to accommodate its data.
1106  *
1107  * @param m
1108  *   The packet mbuf.
1109  * @param t
1110  *   The type to cast the result into.
1111  */
1112 #define rte_pktmbuf_mtod(m, t) rte_pktmbuf_mtod_offset(m, t, 0)
1113
1114 /**
1115  * A macro that returns the length of the packet.
1116  *
1117  * The value can be read or assigned.
1118  *
1119  * @param m
1120  *   The packet mbuf.
1121  */
1122 #define rte_pktmbuf_pkt_len(m) ((m)->pkt_len)
1123
1124 /**
1125  * A macro that returns the length of the segment.
1126  *
1127  * The value can be read or assigned.
1128  *
1129  * @param m
1130  *   The packet mbuf.
1131  */
1132 #define rte_pktmbuf_data_len(m) ((m)->data_len)
1133
1134 /**
1135  * Prepend len bytes to an mbuf data area.
1136  *
1137  * Returns a pointer to the new
1138  * data start address. If there is not enough headroom in the first
1139  * segment, the function will return NULL, without modifying the mbuf.
1140  *
1141  * @param m
1142  *   The pkt mbuf.
1143  * @param len
1144  *   The amount of data to prepend (in bytes).
1145  * @return
1146  *   A pointer to the start of the newly prepended data, or
1147  *   NULL if there is not enough headroom space in the first segment
1148  */
1149 static inline char *rte_pktmbuf_prepend(struct rte_mbuf *m,
1150                                         uint16_t len)
1151 {
1152         __rte_mbuf_sanity_check(m, 1);
1153
1154         if (unlikely(len > rte_pktmbuf_headroom(m)))
1155                 return NULL;
1156
1157         m->data_off -= len;
1158         m->data_len = (uint16_t)(m->data_len + len);
1159         m->pkt_len  = (m->pkt_len + len);
1160
1161         return (char *)m->buf_addr + m->data_off;
1162 }
1163
1164 /**
1165  * Append len bytes to an mbuf.
1166  *
1167  * Append len bytes to an mbuf and return a pointer to the start address
1168  * of the added data. If there is not enough tailroom in the last
1169  * segment, the function will return NULL, without modifying the mbuf.
1170  *
1171  * @param m
1172  *   The packet mbuf.
1173  * @param len
1174  *   The amount of data to append (in bytes).
1175  * @return
1176  *   A pointer to the start of the newly appended data, or
1177  *   NULL if there is not enough tailroom space in the last segment
1178  */
1179 static inline char *rte_pktmbuf_append(struct rte_mbuf *m, uint16_t len)
1180 {
1181         void *tail;
1182         struct rte_mbuf *m_last;
1183
1184         __rte_mbuf_sanity_check(m, 1);
1185
1186         m_last = rte_pktmbuf_lastseg(m);
1187         if (unlikely(len > rte_pktmbuf_tailroom(m_last)))
1188                 return NULL;
1189
1190         tail = (char *)m_last->buf_addr + m_last->data_off + m_last->data_len;
1191         m_last->data_len = (uint16_t)(m_last->data_len + len);
1192         m->pkt_len  = (m->pkt_len + len);
1193         return (char*) tail;
1194 }
1195
1196 /**
1197  * Remove len bytes at the beginning of an mbuf.
1198  *
1199  * Returns a pointer to the start address of the new data area. If the
1200  * length is greater than the length of the first segment, then the
1201  * function will fail and return NULL, without modifying the mbuf.
1202  *
1203  * @param m
1204  *   The packet mbuf.
1205  * @param len
1206  *   The amount of data to remove (in bytes).
1207  * @return
1208  *   A pointer to the new start of the data.
1209  */
1210 static inline char *rte_pktmbuf_adj(struct rte_mbuf *m, uint16_t len)
1211 {
1212         __rte_mbuf_sanity_check(m, 1);
1213
1214         if (unlikely(len > m->data_len))
1215                 return NULL;
1216
1217         m->data_len = (uint16_t)(m->data_len - len);
1218         m->data_off += len;
1219         m->pkt_len  = (m->pkt_len - len);
1220         return (char *)m->buf_addr + m->data_off;
1221 }
1222
1223 /**
1224  * Remove len bytes of data at the end of the mbuf.
1225  *
1226  * If the length is greater than the length of the last segment, the
1227  * function will fail and return -1 without modifying the mbuf.
1228  *
1229  * @param m
1230  *   The packet mbuf.
1231  * @param len
1232  *   The amount of data to remove (in bytes).
1233  * @return
1234  *   - 0: On success.
1235  *   - -1: On error.
1236  */
1237 static inline int rte_pktmbuf_trim(struct rte_mbuf *m, uint16_t len)
1238 {
1239         struct rte_mbuf *m_last;
1240
1241         __rte_mbuf_sanity_check(m, 1);
1242
1243         m_last = rte_pktmbuf_lastseg(m);
1244         if (unlikely(len > m_last->data_len))
1245                 return -1;
1246
1247         m_last->data_len = (uint16_t)(m_last->data_len - len);
1248         m->pkt_len  = (m->pkt_len - len);
1249         return 0;
1250 }
1251
1252 /**
1253  * Test if mbuf data is contiguous.
1254  *
1255  * @param m
1256  *   The packet mbuf.
1257  * @return
1258  *   - 1, if all data is contiguous (one segment).
1259  *   - 0, if there is several segments.
1260  */
1261 static inline int rte_pktmbuf_is_contiguous(const struct rte_mbuf *m)
1262 {
1263         __rte_mbuf_sanity_check(m, 1);
1264         return !!(m->nb_segs == 1);
1265 }
1266
1267 /**
1268  * Dump an mbuf structure to the console.
1269  *
1270  * Dump all fields for the given packet mbuf and all its associated
1271  * segments (in the case of a chained buffer).
1272  *
1273  * @param f
1274  *   A pointer to a file for output
1275  * @param m
1276  *   The packet mbuf.
1277  * @param dump_len
1278  *   If dump_len != 0, also dump the "dump_len" first data bytes of
1279  *   the packet.
1280  */
1281 void rte_pktmbuf_dump(FILE *f, const struct rte_mbuf *m, unsigned dump_len);
1282
1283 #ifdef __cplusplus
1284 }
1285 #endif
1286
1287 #endif /* _RTE_MBUF_H_ */