[v2,0/5] remove old ethdev offload API

Message ID 20180702212750.16758-1-thomas@monjalon.net (mailing list archive)
Headers
Series remove old ethdev offload API |

Message

Thomas Monjalon July 2, 2018, 9:27 p.m. UTC
  A new offload API has been introduced in DPDK 17.11.

This patchset resumes the work started by Ferruh (RFC)
to definitely drop the old offload API.

There are:
- 3 patches to remove some useless code where the old API was found.
- 1 patch to remove usage of old API
- 1 (big) patch to remove the old API itself

Please review the big patch #5 written by Ferruh and me.
We would like to apply it shortly for 18.08-rc1.


Ferruh Yigit (1):
  ethdev: remove old offload API

Thomas Monjalon (4):
  doc: remove code from KNI example guide
  test: remove unused configuration for bonding
  ethdev: convert remaining apps to new offload API
  net/fm10k: remove unused constant

 app/test-eventdev/test_perf_common.c          |   8 +-
 app/test-eventdev/test_pipeline_common.c      |   1 -
 app/test-pmd/testpmd.c                        |   3 -
 doc/guides/nics/features.rst                  |   1 -
 doc/guides/prog_guide/poll_mode_drv.rst       |   5 -
 doc/guides/rel_notes/deprecation.rst          |   9 -
 doc/guides/sample_app_ug/flow_filtering.rst   |   2 -
 .../sample_app_ug/kernel_nic_interface.rst    | 353 +-----------------
 .../sample_app_ug/l2_forward_job_stats.rst    |  19 -
 .../sample_app_ug/l2_forward_real_virtual.rst |  19 -
 doc/guides/sample_app_ug/link_status_intr.rst |   5 +-
 .../sample_app_ug/vmdq_dcb_forwarding.rst     |   4 -
 drivers/net/axgbe/axgbe_ethdev.c              |   2 -
 drivers/net/axgbe/axgbe_rxtx.c                |   4 +-
 drivers/net/fm10k/fm10k.h                     |   3 -
 drivers/net/ixgbe/ixgbe_rxtx.c                |   2 +-
 drivers/net/nfp/nfp_net.c                     |   4 +-
 drivers/net/qede/qede_ethdev.c                |   4 +-
 drivers/net/sfc/sfc_dp_tx.h                   |   2 -
 drivers/net/sfc/sfc_ethdev.c                  |   5 +-
 drivers/net/sfc/sfc_rx.c                      |   1 -
 drivers/net/sfc/sfc_tx.c                      |  25 +-
 drivers/net/sfc/sfc_tx.h                      |   1 -
 drivers/net/virtio/virtio_ethdev.c            |   3 -
 drivers/net/vmxnet3/vmxnet3_ethdev.c          |   1 -
 examples/bbdev_app/main.c                     |   6 +-
 examples/bond/main.c                          |   3 -
 examples/distributor/main.c                   |   2 -
 examples/ethtool/ethtool-app/main.c           |   2 -
 examples/eventdev_pipeline/main.c             |   2 -
 examples/exception_path/main.c                |   2 -
 examples/flow_classify/flow_classify.c        |   2 -
 examples/flow_filtering/main.c                |   1 -
 examples/ip_fragmentation/main.c              |   2 -
 examples/ip_pipeline/link.c                   |  11 +-
 examples/ip_reassembly/main.c                 |   2 -
 examples/ipsec-secgw/ipsec-secgw.c            |   2 -
 examples/ipv4_multicast/main.c                |   2 -
 examples/kni/main.c                           |   2 -
 examples/l2fwd-crypto/main.c                  |   2 -
 examples/l2fwd-jobstats/main.c                |   2 -
 examples/l2fwd-keepalive/main.c               |   2 -
 examples/l2fwd/main.c                         |   2 -
 examples/l3fwd-acl/main.c                     |   2 -
 examples/l3fwd-power/main.c                   |   2 -
 examples/l3fwd-vf/main.c                      |   2 -
 examples/l3fwd/main.c                         |   2 -
 examples/link_status_interrupt/main.c         |   2 -
 examples/load_balancer/init.c                 |   2 -
 examples/multi_process/l2fwd_fork/main.c      |   2 -
 examples/multi_process/symmetric_mp/main.c    |   2 -
 examples/netmap_compat/bridge/bridge.c        |   1 -
 examples/netmap_compat/lib/compat_netmap.c    |   1 -
 examples/packet_ordering/main.c               |   7 +-
 .../performance-thread/l3fwd-thread/main.c    |   2 -
 examples/ptpclient/ptpclient.c                |   3 -
 examples/qos_meter/main.c                     |   3 -
 examples/qos_sched/init.c                     |   2 -
 examples/quota_watermark/qw/init.c            |   2 -
 examples/rxtx_callbacks/main.c                |   2 -
 examples/server_node_efd/server/init.c        |   2 -
 examples/skeleton/basicfwd.c                  |   2 -
 examples/tep_termination/vxlan_setup.c        |   2 -
 examples/vhost/main.c                         |   2 -
 examples/vm_power_manager/main.c              |   2 -
 examples/vmdq/main.c                          |   2 -
 examples/vmdq_dcb/main.c                      |   2 -
 lib/librte_ethdev/rte_ethdev.c                | 115 ------
 lib/librte_ethdev/rte_ethdev.h                |  60 +--
 test/test-pipeline/init.c                     |   6 +-
 test/test/test_kni.c                          |   6 +-
 test/test/test_link_bonding.c                 |  32 +-
 test/test/test_link_bonding_mode4.c           |   6 +-
 test/test/test_link_bonding_rssconf.c         |  12 +-
 test/test/test_pmd_perf.c                     |  29 +-
 75 files changed, 36 insertions(+), 818 deletions(-)
  

Comments

Ferruh Yigit July 3, 2018, 6:37 p.m. UTC | #1
On 7/2/2018 10:27 PM, Thomas Monjalon wrote:
> A new offload API has been introduced in DPDK 17.11.
> 
> This patchset resumes the work started by Ferruh (RFC)
> to definitely drop the old offload API.
> 
> There are:
> - 3 patches to remove some useless code where the old API was found.
> - 1 patch to remove usage of old API
> - 1 (big) patch to remove the old API itself
> 
> Please review the big patch #5 written by Ferruh and me.
> We would like to apply it shortly for 18.08-rc1.
> 
> 
> Ferruh Yigit (1):
>   ethdev: remove old offload API
> 
> Thomas Monjalon (4):
>   doc: remove code from KNI example guide
>   test: remove unused configuration for bonding
>   ethdev: convert remaining apps to new offload API
>   net/fm10k: remove unused constant

For Series,
Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>
  
Ferruh Yigit July 4, 2018, 6:56 p.m. UTC | #2
On 7/3/2018 7:37 PM, Ferruh Yigit wrote:
> On 7/2/2018 10:27 PM, Thomas Monjalon wrote:
>> A new offload API has been introduced in DPDK 17.11.
>>
>> This patchset resumes the work started by Ferruh (RFC)
>> to definitely drop the old offload API.
>>
>> There are:
>> - 3 patches to remove some useless code where the old API was found.
>> - 1 patch to remove usage of old API
>> - 1 (big) patch to remove the old API itself
>>
>> Please review the big patch #5 written by Ferruh and me.
>> We would like to apply it shortly for 18.08-rc1.
>>
>>
>> Ferruh Yigit (1):
>>   ethdev: remove old offload API
>>
>> Thomas Monjalon (4):
>>   doc: remove code from KNI example guide
>>   test: remove unused configuration for bonding
>>   ethdev: convert remaining apps to new offload API
>>   net/fm10k: remove unused constant
> 
> For Series,
> Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>

Series applied to dpdk-next-net/master, thanks.