:orphan: .. index:: pair: group; TAPI for RTE MBUF API remote calls .. _doxid-group__te__lib__rpc__rte__mbuf: TAPI for RTE MBUF API remote calls ================================== .. toctree:: :hidden: Overview ~~~~~~~~ .. ref-code-block:: cpp :class: doxyrest-overview-code-block // global functions rpc_rte_mempool_p :ref:`rpc_rte_pktmbuf_pool_create`(:ref:`rcf_rpc_server`* rpcs, const char* name, uint32_t n, uint32_t cache_size, uint16_t priv_size, uint16_t data_room_size, int socket_id); rpc_rte_mempool_p :ref:`rpc_rte_pktmbuf_pool_create_by_ops`(:ref:`rcf_rpc_server`* rpcs, const char* name, uint32_t n, uint32_t cache_size, uint16_t priv_size, uint16_t data_room_size, int socket_id, const char* ops_name); rpc_rte_mbuf_p :ref:`rpc_rte_pktmbuf_alloc`(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mempool_p mp); void :ref:`rpc_rte_pktmbuf_free`(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m); void :ref:`rpc_rte_pktmbuf_free_array`(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p* mbufs, unsigned int count); int :ref:`rpc_rte_pktmbuf_append_data`(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m, const uint8_t* buf, size_t len); int :ref:`rpc_rte_pktmbuf_read_data`(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m, size_t offset, size_t count, uint8_t* buf, size_t rbuflen); rpc_rte_mbuf_p :ref:`rpc_rte_pktmbuf_clone`(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m, rpc_rte_mempool_p mp); int :ref:`rpc_rte_pktmbuf_prepend_data`(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m, uint8_t* buf, size_t len); rpc_rte_mbuf_p :ref:`rpc_rte_pktmbuf_get_next`(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m); uint32_t :ref:`rpc_rte_pktmbuf_get_pkt_len`(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m); const char* :ref:`rpc_rte_mbufs2str`(te_log_buf* tlbp, const rpc_rte_mbuf_p* mbufs, unsigned int count, :ref:`rcf_rpc_server`* rpcs); int :ref:`rpc_rte_pktmbuf_alloc_bulk`(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mempool_p mp, rpc_rte_mbuf_p* bulk, unsigned int count); int :ref:`rpc_rte_pktmbuf_chain`(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p head, rpc_rte_mbuf_p tail); uint16_t :ref:`rpc_rte_pktmbuf_get_nb_segs`(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m); uint16_t :ref:`rpc_rte_pktmbuf_get_port`(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m); void :ref:`rpc_rte_pktmbuf_set_port`(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m, uint16_t port); uint16_t :ref:`rpc_rte_pktmbuf_get_data_len`(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m); uint16_t :ref:`rpc_rte_pktmbuf_get_vlan_tci`(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m); void :ref:`rpc_rte_pktmbuf_set_vlan_tci`(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m, uint16_t vlan_tci); uint16_t :ref:`rpc_rte_pktmbuf_get_vlan_tci_outer`(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m); void :ref:`rpc_rte_pktmbuf_set_vlan_tci_outer`(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m, uint16_t vlan_tci_outer); uint64_t :ref:`rpc_rte_pktmbuf_get_flags`(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m); int :ref:`rpc_rte_pktmbuf_set_flags`(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m, uint64_t ol_flags); rpc_rte_mempool_p :ref:`rpc_rte_pktmbuf_get_pool`(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m); uint16_t :ref:`rpc_rte_pktmbuf_headroom`(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m); uint16_t :ref:`rpc_rte_pktmbuf_tailroom`(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m); int :ref:`rpc_rte_pktmbuf_trim`(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m, uint16_t len); uint16_t :ref:`rpc_rte_pktmbuf_adj`(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m, uint16_t len); void :ref:`rpc_rte_pktmbuf_get_packet_type`(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m, struct :ref:`tarpc_rte_pktmbuf_packet_type`* p_type); int :ref:`rpc_rte_pktmbuf_set_packet_type`(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m, const struct :ref:`tarpc_rte_pktmbuf_packet_type`* p_type); uint32_t :ref:`rpc_rte_pktmbuf_get_rss_hash`(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m); uint32_t :ref:`rpc_rte_pktmbuf_get_fdir_id`(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m); void :ref:`rpc_rte_pktmbuf_get_tx_offload`(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m, struct :ref:`tarpc_rte_pktmbuf_tx_offload`* tx_offload); void :ref:`rpc_rte_pktmbuf_set_tx_offload`(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m, const struct :ref:`tarpc_rte_pktmbuf_tx_offload`* tx_offload); void :ref:`rpc_rte_pktmbuf_refcnt_update`(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m, int16_t v); int :ref:`rpc_rte_pktmbuf_redist_multi`(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p* m, rpc_rte_mempool_p* mp_multi, unsigned int mp_multi_nb_items, struct :ref:`tarpc_pktmbuf_seg_group`* seg_groups, uint8_t nb_seg_groups); int :ref:`rpc_rte_pktmbuf_redist`(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p* m, struct :ref:`tarpc_pktmbuf_seg_group`* seg_groups, uint8_t nb_seg_groups); int :ref:`rpc_rte_vlan_strip`(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m); int :ref:`rpc_rte_pktmbuf_calc_packet_crc`(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m, bool crc_in_data, uint32_t* crc); .. _details-group__te__lib__rpc__rte__mbuf: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ Global Functions ---------------- .. index:: pair: function; rpc_rte_pktmbuf_pool_create .. _doxid-group__te__lib__rpc__rte__mbuf_1gad73c01d1694f4487394b79ff4d04bb35: .. ref-code-block:: cpp :class: doxyrest-title-code-block rpc_rte_mempool_p rpc_rte_pktmbuf_pool_create(:ref:`rcf_rpc_server`* rpcs, const char* name, uint32_t n, uint32_t cache_size, uint16_t priv_size, uint16_t data_room_size, int socket_id) **rte_pktmbuf_pool_create()** RPC .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - name - The name of the mbuf pool * - n - The number of elements in the mbuf pool * - cache_size - Size of the per-core object cache * - priv_size - Size of application private are between the rte_mbuf structure and the data buffer * - data_room_size - Size of data buffer in each mbuf, including RTE_PKTMBUF_HEADROOM * - socket_id - The socket identifier where the memory should be allocated .. rubric:: Returns: RTE mempool pointer on success; jumps out when pointer is ``NULL`` .. index:: pair: function; rpc_rte_pktmbuf_pool_create_by_ops .. _doxid-group__te__lib__rpc__rte__mbuf_1gacabda613a13f49b3377c209560d056bd: .. ref-code-block:: cpp :class: doxyrest-title-code-block rpc_rte_mempool_p rpc_rte_pktmbuf_pool_create_by_ops(:ref:`rcf_rpc_server`* rpcs, const char* name, uint32_t n, uint32_t cache_size, uint16_t priv_size, uint16_t data_room_size, int socket_id, const char* ops_name) **rte_pktmbuf_pool_create_by_ops()** RPC .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - name - The name of the mbuf pool * - n - The number of elements in the mbuf pool * - cache_size - Size of the per-core object cache * - priv_size - Size of application private are between the rte_mbuf structure and the data buffer * - data_room_size - Size of data buffer in each mbuf, including RTE_PKTMBUF_HEADROOM * - socket_id - The socket identifier where the memory should be allocated * - ops_name - The mempool ops name to be used for this mempool instead of default mempool. The value can be NULL to use default mempool .. rubric:: Returns: RTE mempool pointer on success; jumps out when pointer is ``NULL`` .. index:: pair: function; rpc_rte_pktmbuf_alloc .. _doxid-group__te__lib__rpc__rte__mbuf_1gaf770a945e97492c86332170c92eeff04: .. ref-code-block:: cpp :class: doxyrest-title-code-block rpc_rte_mbuf_p rpc_rte_pktmbuf_alloc(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mempool_p mp) **rte_pktmbuf_alloc()** RPC .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - mp - RTE mempool pointer .. rubric:: Returns: RTE mbuf pointer on success; jumps out when pointer is ``NULL`` .. index:: pair: function; rpc_rte_pktmbuf_free .. _doxid-group__te__lib__rpc__rte__mbuf_1gaf1311e60467b9986ddae0618f585f0d3: .. ref-code-block:: cpp :class: doxyrest-title-code-block void rpc_rte_pktmbuf_free(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m) **rte_pktmbuf_free()** RPC .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - m - RTE mbuf pointer .. index:: pair: function; rpc_rte_pktmbuf_free_array .. _doxid-group__te__lib__rpc__rte__mbuf_1ga4b3ecc9858d2a8542ebcffc8fa051e65: .. ref-code-block:: cpp :class: doxyrest-title-code-block void rpc_rte_pktmbuf_free_array(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p* mbufs, unsigned int count) **rte_pktmbuf_free_array()** RPC .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - mbufs - Pointer to array of RTE mbuf pointers * - count - Number of pointers in array .. index:: pair: function; rpc_rte_pktmbuf_append_data .. _doxid-group__te__lib__rpc__rte__mbuf_1ga445c7c32f33fe11b00f03e98f2250f3a: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_rte_pktmbuf_append_data(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m, const uint8_t* buf, size_t len) Append data to an mbuf .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - m - RTE mbuf pointer * - buf - Pointer to a buffer containing data * - len - Buffer length .. rubric:: Returns: ``0`` on success; jumps out in case of failure .. index:: pair: function; rpc_rte_pktmbuf_read_data .. _doxid-group__te__lib__rpc__rte__mbuf_1gab563aaec20ec8a4ab780be9da0e6fd2f: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_rte_pktmbuf_read_data(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m, size_t offset, size_t count, uint8_t* buf, size_t rbuflen) Read data from an mbuf with a particular offset .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - m - RTE mbuf pointer * - offset - Offset into mbuf data * - count - Amount of data to be read (bytes) * - buf - Pointer to a buffer for data to be read in * - rbuflen - Buffer length .. rubric:: Returns: Amount of data actually read (bytes); jumps out on error .. index:: pair: function; rpc_rte_pktmbuf_clone .. _doxid-group__te__lib__rpc__rte__mbuf_1gaf4981be1bb8fda420ac654af3cc44f8b: .. ref-code-block:: cpp :class: doxyrest-title-code-block rpc_rte_mbuf_p rpc_rte_pktmbuf_clone(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m, rpc_rte_mempool_p mp) **rte_pktmbuf_clone()** RPC .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - m - RTE mbuf pointer * - mp - RTE mempool pointer .. rubric:: Returns: RTE mbuf pointer on success; jumps out when pointer is ``NULL`` .. index:: pair: function; rpc_rte_pktmbuf_prepend_data .. _doxid-group__te__lib__rpc__rte__mbuf_1ga1d1ac7cd7bb1264fa3aeb2c654c80141: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_rte_pktmbuf_prepend_data(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m, uint8_t* buf, size_t len) Prepend data to an mbuf .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - m - RTE mbuf pointer * - buf - Pointer to a buffer containing data * - len - Buffer length .. rubric:: Returns: ``0`` on success; jumps out in case of failure .. index:: pair: function; rpc_rte_pktmbuf_get_next .. _doxid-group__te__lib__rpc__rte__mbuf_1ga054e6b7bc273fb4e23d573fa65449767: .. ref-code-block:: cpp :class: doxyrest-title-code-block rpc_rte_mbuf_p rpc_rte_pktmbuf_get_next(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m) Get pointer to the next mbuf segment in an mbuf chain .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - m - RTE mbuf pointer .. rubric:: Returns: RTE mbuf pointer; doesn't jump out when pointer is ``NULL`` .. index:: pair: function; rpc_rte_pktmbuf_get_pkt_len .. _doxid-group__te__lib__rpc__rte__mbuf_1ga8db8dfbbab2d90747ee98c774fc191eb: .. ref-code-block:: cpp :class: doxyrest-title-code-block uint32_t rpc_rte_pktmbuf_get_pkt_len(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m) Get packet length .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - m - RTE mbuf pointer .. rubric:: Returns: Packet length (bytes) .. index:: pair: function; rpc_rte_mbufs2str .. _doxid-group__te__lib__rpc__rte__mbuf_1ga0c8fe854e26f0543fb72c5f59aaf4b0f: .. ref-code-block:: cpp :class: doxyrest-title-code-block const char* rpc_rte_mbufs2str(te_log_buf* tlbp, const rpc_rte_mbuf_p* mbufs, unsigned int count, :ref:`rcf_rpc_server`* rpcs) Auxiliary function for logging mbuf pointers; it should be used by RPCs in :ref:`TAPI_RPC_LOG() ` statements .. index:: pair: function; rpc_rte_pktmbuf_alloc_bulk .. _doxid-group__te__lib__rpc__rte__mbuf_1ga22318278cffcf144a5c4c5f9f6fde4c0: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_rte_pktmbuf_alloc_bulk(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mempool_p mp, rpc_rte_mbuf_p* bulk, unsigned int count) **rte_pktmbuf_alloc_bulk()** RPC .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - mp - RTE mempool pointer * - bulk - Pointer for the resulting array of pointers * - count - The number of mbufs to allocate .. rubric:: Returns: ``0`` on success; jumps out in case of failure .. index:: pair: function; rpc_rte_pktmbuf_chain .. _doxid-group__te__lib__rpc__rte__mbuf_1ga909f81a3242e4f455a76874657cc22aa: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_rte_pktmbuf_chain(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p head, rpc_rte_mbuf_p tail) **rte_pktmbuf_chain()** RPC .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - head - RTE mbuf pointer (head) * - tail - RTE mbuf pointer (tail) .. rubric:: Returns: ``0`` on success; jumps out in case of error (i.e., -EOVERFLOW) .. index:: pair: function; rpc_rte_pktmbuf_get_nb_segs .. _doxid-group__te__lib__rpc__rte__mbuf_1ga386248528bf07b66a925469184674a42: .. ref-code-block:: cpp :class: doxyrest-title-code-block uint16_t rpc_rte_pktmbuf_get_nb_segs(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m) **rte_pktmbuf_get_nb_segs()** RPC .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - m - RTE mbuf pointer .. rubric:: Returns: The number of segments in the mbuf chain .. index:: pair: function; rpc_rte_pktmbuf_get_port .. _doxid-group__te__lib__rpc__rte__mbuf_1ga901a9008d63a94251ab39acfb8e6bbc1: .. ref-code-block:: cpp :class: doxyrest-title-code-block uint16_t rpc_rte_pktmbuf_get_port(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m) **rte_pktmbuf_get_port()** RPC .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - m - RTE mbuf pointer .. rubric:: Returns: Input port .. index:: pair: function; rpc_rte_pktmbuf_set_port .. _doxid-group__te__lib__rpc__rte__mbuf_1gaa8eb3970633207d31757e6e7503361cb: .. ref-code-block:: cpp :class: doxyrest-title-code-block void rpc_rte_pktmbuf_set_port(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m, uint16_t port) **rte_pktmbuf_set_port()** RPC .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - m - RTE mbuf pointer * - port - Port number to set .. index:: pair: function; rpc_rte_pktmbuf_get_data_len .. _doxid-group__te__lib__rpc__rte__mbuf_1ga96820cd1d2b43761988b7c830a2f04b6: .. ref-code-block:: cpp :class: doxyrest-title-code-block uint16_t rpc_rte_pktmbuf_get_data_len(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m) Get mbuf segment data length .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - m - RTE mbuf pointer .. rubric:: Returns: Data length (bytes) .. index:: pair: function; rpc_rte_pktmbuf_get_vlan_tci .. _doxid-group__te__lib__rpc__rte__mbuf_1ga0d2eb02bfc6a9e3ec52c01dceae5baad: .. ref-code-block:: cpp :class: doxyrest-title-code-block uint16_t rpc_rte_pktmbuf_get_vlan_tci(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m) Get VLAN TCI .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - m - RTE mbuf pointer .. rubric:: Returns: VLAN TCI .. index:: pair: function; rpc_rte_pktmbuf_set_vlan_tci .. _doxid-group__te__lib__rpc__rte__mbuf_1gad13a3eeb21a24a5a23ff7f6b14c1e515: .. ref-code-block:: cpp :class: doxyrest-title-code-block void rpc_rte_pktmbuf_set_vlan_tci(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m, uint16_t vlan_tci) Set VLAN TCI .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - m - RTE mbuf pointer * - vlan_tci - VLAN TCI .. index:: pair: function; rpc_rte_pktmbuf_get_vlan_tci_outer .. _doxid-group__te__lib__rpc__rte__mbuf_1gaa1edb52ac50b177a701e2e58d1e2f6de: .. ref-code-block:: cpp :class: doxyrest-title-code-block uint16_t rpc_rte_pktmbuf_get_vlan_tci_outer(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m) Get VLAN TCI (outer) .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - m - RTE mbuf pointer .. rubric:: Returns: VLAN TCI (outer) .. index:: pair: function; rpc_rte_pktmbuf_set_vlan_tci_outer .. _doxid-group__te__lib__rpc__rte__mbuf_1ga062c92d005fbb53935c403a52ff9a792: .. ref-code-block:: cpp :class: doxyrest-title-code-block void rpc_rte_pktmbuf_set_vlan_tci_outer(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m, uint16_t vlan_tci_outer) Set VLAN TCI (outer) .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - m - RTE mbuf pointer * - vlan_tci_outer - VLAN TCI (outer) .. index:: pair: function; rpc_rte_pktmbuf_get_flags .. _doxid-group__te__lib__rpc__rte__mbuf_1ga0b650c0099ebd1219603e6a4e2e1eaed: .. ref-code-block:: cpp :class: doxyrest-title-code-block uint64_t rpc_rte_pktmbuf_get_flags(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m) Get mbuf offload flags .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - m - RTE mbuf pointer .. rubric:: Returns: Offload flags bitmask for the particular mbuf .. index:: pair: function; rpc_rte_pktmbuf_set_flags .. _doxid-group__te__lib__rpc__rte__mbuf_1ga1ea7f77676828463ca847a3b80e81ce1: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_rte_pktmbuf_set_flags(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m, uint64_t ol_flags) Set mbuf offload flags .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - m - RTE mbuf pointer * - ol_flags - Offload flags bitmask to be set .. rubric:: Returns: ``0`` on success; jumps out if some flags cannot be set (i.e. -EINVAL) .. index:: pair: function; rpc_rte_pktmbuf_get_pool .. _doxid-group__te__lib__rpc__rte__mbuf_1ga08814045a6aadc40f85cf53496c394fd: .. ref-code-block:: cpp :class: doxyrest-title-code-block rpc_rte_mempool_p rpc_rte_pktmbuf_get_pool(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m) Get a pointer to mempool within which the particular mbuf has been allocated .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - m - RTE mbuf pointer .. rubric:: Returns: RTE mempool pointer on success; jumps out when pointer is ``NULL`` .. index:: pair: function; rpc_rte_pktmbuf_headroom .. _doxid-group__te__lib__rpc__rte__mbuf_1ga76cfd20cf8c907d4ed0b7b222484885b: .. ref-code-block:: cpp :class: doxyrest-title-code-block uint16_t rpc_rte_pktmbuf_headroom(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m) Get the headroom length in the particular mbuf .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - m - RTE mbuf pointer .. rubric:: Returns: Headroom length; jumps out in case of invalid value (i.e. UINT16_MAX) .. index:: pair: function; rpc_rte_pktmbuf_tailroom .. _doxid-group__te__lib__rpc__rte__mbuf_1gadad10ec6b72d8460ddc1937c56ed0e32: .. ref-code-block:: cpp :class: doxyrest-title-code-block uint16_t rpc_rte_pktmbuf_tailroom(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m) Get the tailroom length in the particular mbuf .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - m - RTE mbuf pointer .. rubric:: Returns: Tailroom length; jumps out in case of invalid value (i.e. UINT16_MAX) .. index:: pair: function; rpc_rte_pktmbuf_trim .. _doxid-group__te__lib__rpc__rte__mbuf_1ga8c19e37b4b80bc968973a7ceabeaaf55: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_rte_pktmbuf_trim(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m, uint16_t len) **rte_pktmbuf_trim()** RPC .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - m - RTE mbuf pointer * - len - Amount of bytes to be trimmed .. rubric:: Returns: ``0`` on success; jumps out in case of failure .. index:: pair: function; rpc_rte_pktmbuf_adj .. _doxid-group__te__lib__rpc__rte__mbuf_1ga1c9c7ec92964db9265f031cacc276fc7: .. ref-code-block:: cpp :class: doxyrest-title-code-block uint16_t rpc_rte_pktmbuf_adj(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m, uint16_t len) **rte_pktmbuf_adj()** RPC .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - m - RTE mbuf pointer * - len - Amount of bytes to be removed at the beginning of mbuf .. rubric:: Returns: The new ``data_off`` on success; jumps out on error (i.e., UINT16_MAX) .. index:: pair: function; rpc_rte_pktmbuf_get_packet_type .. _doxid-group__te__lib__rpc__rte__mbuf_1gad235f19a9462960f8989001b1797c9b0: .. ref-code-block:: cpp :class: doxyrest-title-code-block void rpc_rte_pktmbuf_get_packet_type(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m, struct :ref:`tarpc_rte_pktmbuf_packet_type`* p_type) Get packet type flags .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - m - RTE mbuf pointer * - p_type - Pointer to a structure to be filled with the info .. index:: pair: function; rpc_rte_pktmbuf_set_packet_type .. _doxid-group__te__lib__rpc__rte__mbuf_1ga24588ed7f90765b96446290da4e3a86e: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_rte_pktmbuf_set_packet_type(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m, const struct :ref:`tarpc_rte_pktmbuf_packet_type`* p_type) Set packet type flags .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - m - RTE mbuf pointer * - p_type - Pointer to a structure containing info to be populated .. rubric:: Returns: ``0`` on success; jumps out if some types cannot be set (i.e. -EINVAL) .. index:: pair: function; rpc_rte_pktmbuf_get_rss_hash .. _doxid-group__te__lib__rpc__rte__mbuf_1gaf594461011d4cd73f28ffede23fbe0da: .. ref-code-block:: cpp :class: doxyrest-title-code-block uint32_t rpc_rte_pktmbuf_get_rss_hash(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m) Get RSS hash .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - m - RTE mbuf pointer .. rubric:: Returns: RSS hash for the particular mbuf .. index:: pair: function; rpc_rte_pktmbuf_get_fdir_id .. _doxid-group__te__lib__rpc__rte__mbuf_1gadc7a2add7a0b5cf4125f635dd02123d7: .. ref-code-block:: cpp :class: doxyrest-title-code-block uint32_t rpc_rte_pktmbuf_get_fdir_id(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m) Get FDIR ID, if RTE_MBUF_F_RX_FDIR_ID is in offload flags .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - m - RTE mbuf pointer .. rubric:: Returns: FDIR ID for the particular mbuf .. index:: pair: function; rpc_rte_pktmbuf_get_tx_offload .. _doxid-group__te__lib__rpc__rte__mbuf_1ga29c188d2801bce37ac1a8ae648c2bf7a: .. ref-code-block:: cpp :class: doxyrest-title-code-block void rpc_rte_pktmbuf_get_tx_offload(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m, struct :ref:`tarpc_rte_pktmbuf_tx_offload`* tx_offload) Get parameters needed by TX offload to work .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - m - RTE mbuf pointer * - tx_offload - Pointer to structure to be filled with the info .. index:: pair: function; rpc_rte_pktmbuf_set_tx_offload .. _doxid-group__te__lib__rpc__rte__mbuf_1gaad0cdefa08c031b65fbc3d4409ded312: .. ref-code-block:: cpp :class: doxyrest-title-code-block void rpc_rte_pktmbuf_set_tx_offload(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m, const struct :ref:`tarpc_rte_pktmbuf_tx_offload`* tx_offload) Set parameters needed by TX offload to work .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - m - RTE mbuf pointer * - tx_offload - Pointer to a structure containing info to be populated .. index:: pair: function; rpc_rte_pktmbuf_refcnt_update .. _doxid-group__te__lib__rpc__rte__mbuf_1gac78bee903f08891236170bf02422bdb9: .. ref-code-block:: cpp :class: doxyrest-title-code-block void rpc_rte_pktmbuf_refcnt_update(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m, int16_t v) ``rte_pktmbuf_refcnt_update()`` RPC .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - m - RTE pktmbuf pointer * - v - The value to be added to reference counters for the corresponding segments which ``m`` consists of .. index:: pair: function; rpc_rte_pktmbuf_redist_multi .. _doxid-group__te__lib__rpc__rte__mbuf_1ga185ca474c2907a04da4224ff32243e7c: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_rte_pktmbuf_redist_multi(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p* m, rpc_rte_mempool_p* mp_multi, unsigned int mp_multi_nb_items, struct :ref:`tarpc_pktmbuf_seg_group`* seg_groups, uint8_t nb_seg_groups) Redistribute a packet mbuf data across some given number of segments of variable length according to segmentation pattern provided by the caller (an array of segment group definitions and the number of elements in the array) to produce a new mbuf chain with a different RPC pointer. The new segments are allocated from a subset of memory pools ``mp_multi`` in a round-robin style; fallback to the default pool (obtained from ``m``) will happen if either ``mp_multi`` is unset or mempool shortages take place. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - m - RTE mbuf pointer (in / out) * - mp_multi - An array of RTE mempool pointers * - mp_multi_nb_items - The number of RTE mempool pointers * - seg_groups - An array of segment group definitions * - nb_seg_groups - The number of segment group definitions .. rubric:: Returns: The number of segments produced or a negative errno value .. index:: pair: function; rpc_rte_pktmbuf_redist .. _doxid-group__te__lib__rpc__rte__mbuf_1ga4bd4bba5732eeb130fc3f5ea81314b56: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_rte_pktmbuf_redist(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p* m, struct :ref:`tarpc_pktmbuf_seg_group`* seg_groups, uint8_t nb_seg_groups) Single-pool wrapper for ``:ref:`rpc_rte_pktmbuf_redist_multi() ```. Default mempool is picked from ``m``. .. index:: pair: function; rpc_rte_vlan_strip .. _doxid-group__te__lib__rpc__rte__mbuf_1gac7dac84236a8df4969896680787cdf73: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_rte_vlan_strip(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m) **rte_vlan_strip()** RPC If failure is not expected, the function jumps out in the case of return value is not equal to 0 or -1. .. index:: pair: function; rpc_rte_pktmbuf_calc_packet_crc .. _doxid-group__te__lib__rpc__rte__mbuf_1gae64c7628bfafb3187c66433e2fecca5e: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_rte_pktmbuf_calc_packet_crc(:ref:`rcf_rpc_server`* rpcs, rpc_rte_mbuf_p m, bool crc_in_data, uint32_t* crc) Calculate CRC of a packet in the mbuf .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - m - RTE mbuf pointer * - crc_in_data - Is CRC in packet data * - crc - Calculated CRC .. rubric:: Returns: ``0`` on success; jumps out in case of failure