ethdev: increase port id range
[dpdk.git] / doc / guides / rel_notes / deprecation.rst
1 ABI and API Deprecation
2 =======================
3
4 See the :doc:`guidelines document for details of the ABI policy </contributing/versioning>`.
5 API and ABI deprecation notices are to be posted here.
6
7
8 Deprecation Notices
9 -------------------
10
11 * eal: the following functions are deprecated starting from 17.05 and will
12   be removed in 17.11:
13
14   - ``rte_set_log_level``, replaced by ``rte_log_set_global_level``
15   - ``rte_get_log_level``, replaced by ``rte_log_get_global_level``
16   - ``rte_set_log_type``, replaced by ``rte_log_set_level``
17   - ``rte_get_log_type``, replaced by ``rte_log_get_level``
18
19 * eal: several API and ABI changes are planned for ``rte_devargs`` in v17.11.
20   The format of device command line parameters will change. The bus will need
21   to be explicitly stated in the device declaration. The enum ``rte_devtype``
22   was used to identify a bus and will disappear.
23   The structure ``rte_devargs`` will change.
24   The ``rte_devargs_list`` will be made private.
25   The following functions are deprecated starting from 17.08 and will either be
26   modified or removed in 17.11:
27
28   - ``rte_eal_devargs_add``
29   - ``rte_eal_devargs_type_count``
30   - ``rte_eal_parse_devargs_str``, replaced by ``rte_eal_devargs_parse``
31
32 * eal: the support of Xen dom0 will be removed from EAL in 17.11; and with
33   that, drivers/net/xenvirt and examples/vhost_xen will also be removed.
34
35 * eal: An ABI change is planned for 17.11 to make DPDK aware of IOVA address
36   translation scheme.
37   Reference to phys address in EAL data-structure or functions may change to
38   IOVA address or more appropriate name.
39   The change will be only for the name.
40   Functional aspects of the API or data-structure will remain same.
41
42 * The mbuf flags PKT_RX_VLAN_PKT and PKT_RX_QINQ_PKT are deprecated and
43   are respectively replaced by PKT_RX_VLAN_STRIPPED and
44   PKT_RX_QINQ_STRIPPED, that are better described. The old flags and
45   their behavior will be kept until 17.08 and will be removed in 17.11.
46
47 * mempool: The following will be modified in 17.11:
48
49   - ``rte_mempool_xmem_size`` and ``rte_mempool_xmem_usage`` need to know
50     the mempool flag status so adding new param rte_mempool in those API.
51   - Removing __rte_unused int flag param from ``rte_mempool_generic_put``
52     and ``rte_mempool_generic_get`` API.
53   - ``rte_mempool`` flags data type will changed from int to
54     unsigned int.
55
56 * ethdev: Tx offloads will no longer be enabled by default in 17.11.
57   Instead, the ``rte_eth_txmode`` structure will be extended with
58   bit field to enable each Tx offload.
59   Besides of making the Rx/Tx configuration API more consistent for the
60   application, PMDs will be able to provide a better out of the box performance.
61   As part of the work, ``ETH_TXQ_FLAGS_NO*`` will be superseded as well.
62
63 * ethdev: the legacy filter API, including
64   ``rte_eth_dev_filter_supported()``, ``rte_eth_dev_filter_ctrl()`` as well
65   as filter types MACVLAN, ETHERTYPE, FLEXIBLE, SYN, NTUPLE, TUNNEL, FDIR,
66   HASH and L2_TUNNEL, is superseded by the generic flow API (rte_flow) in
67   PMDs that implement the latter.
68   Target release for removal of the legacy API will be defined once most
69   PMDs have switched to rte_flow.
70
71 * ethdev: The device flag advertizing hotplug capability
72   ``RTE_ETH_DEV_DETACHABLE`` is not needed anymore and will be removed in
73   v17.11.
74   This capability is verified upon calling the relevant hotplug functions in EAL
75   by checking that the ``unplug`` ops is set in the bus. This verification is
76   done by the EAL and not by the ``ethdev`` layer anymore. Users relying on this
77   flag being present only have to remove their checks to follow the change.
78
79 * ethdev: An ABI change is planned for 17.11 for the structure rte_eth_dev_data.
80   The size of the unique name will increase RTE_ETH_NAME_MAX_LEN from 32 to
81   64 characters to allow using a globally unique identifier (GUID) in this field.
82
83 * ethdev: new parameters - ``rte_security_capabilities`` and
84   ``rte_security_ops`` will be added to ``rte_eth_dev_info`` and
85   ``rte_eth_dev`` respectively  to support security operations like
86   ipsec inline.
87
88 * cryptodev: new parameters - ``rte_security_capabilities`` and
89   ``rte_security_ops`` will be added to ``rte_cryptodev_info`` and
90   ``rte_cryptodev`` respectively to support security protocol offloaded
91   operations.
92
93 * cryptodev: the following function is deprecated starting from 17.08 and will
94   be removed in 17.11:
95
96   - ``rte_cryptodev_create_vdev``
97
98 * cryptodev: the following function will be static in 17.11 and included
99   by all crypto drivers, therefore, will not be public:
100
101   - ``rte_cryptodev_vdev_pmd_init``
102
103 * cryptodev: the following function will have an extra parameter, passing a
104   statically allocated crypto driver structure, instead of calling malloc,
105   in 17.11:
106
107   - ``rte_cryptodev_allocate_driver``
108
109 * librte_meter: The API will change to accommodate configuration profiles.
110   Most of the API functions will have an additional opaque parameter.
111
112 * librte_table: The ``key_mask`` parameter will be added to all the hash tables
113   that currently do not have it, as well as to the hash compute function prototype.
114   The non-"do-sig" versions of the hash tables will be removed
115   (including the ``signature_offset`` parameter)
116   and the "do-sig" versions renamed accordingly.