X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=doc%2Fguides%2Frel_notes%2Frelease_20_11.rst;h=15ec247d76cc620d334b33318793b41b61d77185;hb=c2b603bdf433f0ae4c4a63dcaa660c8d1792bfe8;hp=374b6d3250b508cf0192c734dbc6eb7b6496c681;hpb=cbfc6111b55787356e06fb227959672bf93a16d9;p=dpdk.git diff --git a/doc/guides/rel_notes/release_20_11.rst b/doc/guides/rel_notes/release_20_11.rst index 374b6d3250..15ec247d76 100644 --- a/doc/guides/rel_notes/release_20_11.rst +++ b/doc/guides/rel_notes/release_20_11.rst @@ -55,6 +55,40 @@ New Features Also, make sure to start the actual text at the margin. ======================================================= +* **Updated Cisco enic driver.** + + * Added support for VF representors with single-queue Tx/Rx and flow API + * Added support for egress PORT_ID action + * Added support for non-zero priorities for group 0 flows + * Added support for VXLAN decap combined with VLAN pop + +* **Extended flow-perf application.** + + * Started supporting user order instead of bit mask: + Now the user can create any structure of rte_flow + using flow performance application with any order, + moreover the app also now starts to support inner + items matching as well. + * Added header modify actions. + * Added flag action. + * Added raw encap/decap actions. + * Added VXLAN encap/decap actions. + * Added ICMP and ICMP6 matching items. + * Added option to set port mask for insertion/deletion: + ``--portmask=N`` + where N represents the hexadecimal bitmask of ports used. + +* **Updated the pipeline library for alignment with the P4 language.** + + Added new Software Switch (SWX) pipeline type that provides more + flexibility through API and feature alignment with the P4 language. + + * The packet headers, meta-data, actions, tables and pipelines are + dynamically defined instead of selected from pre-defined set. + * The actions and the pipeline are defined with instructions. + * Extern objects and functions can be plugged into the pipeline. + * Transaction-oriented table updates. + Removed Items ------------- @@ -84,12 +118,19 @@ API Changes Also, make sure to start the actual text at the margin. ======================================================= +* build macros: The macros defining ``RTE_MACHINE_CPUFLAG_*`` are removed. + The information provided by these macros is available through standard + compiler macros. + * eal: The ``rte_logs`` struct and global symbol was made private and is no longer part of the API. * eal: Made the ``rte_dev_event`` structure private to the EAL as no public API used it. +* eal: ``rte_cio_rmb()`` and ``rte_cio_wmb()`` were deprecated since 20.08 + and are removed in this release. + * mem: Removed the unioned field ``phys_addr`` from the structures ``rte_memseg`` and ``rte_memzone``. The field ``iova`` is remaining from the old unions. @@ -126,6 +167,11 @@ API Changes * ethdev: ``rte_eth_rx_descriptor_done()`` API has been deprecated. +* Renamed internal ethdev APIs: + + * ``_rte_eth_dev_callback_process()`` -> ``rte_eth_dev_callback_process()`` + * ``_rte_eth_dev_reset`` -> ``rte_eth_dev_internal_reset()`` + * rawdev: Added a structure size parameter to the functions ``rte_rawdev_queue_setup()``, ``rte_rawdev_queue_conf_get()``, ``rte_rawdev_info_get()`` and ``rte_rawdev_configure()``, @@ -163,6 +209,11 @@ ABI Changes * ``eth_rx_descriptor_status_t rx_descriptor_status;`` * ``eth_tx_descriptor_status_t tx_descriptor_status;`` + * ``struct eth_dev_ops`` is no more accessible by applications, + which was already internal data structure. + + * ``ethdev`` internal functions are marked with ``__rte_internal`` tag. + Known Issues ------------