mbox series

[V3,0/4] change data type in TC queue

Message ID 1600866002-35908-1-git-send-email-humin29@huawei.com (mailing list archive)
Headers
Series change data type in TC queue |

Message

humin (Q) Sept. 23, 2020, 12:59 p.m. UTC
  From: Huisong Li <lihuisong@huawei.com>

This series change data type in TC rxq and TC txq,
fix compiling errors for per-queue statistics.

Huisong Li (4):
  dpdk: fix compiling errors for per-queue statistics
  ethdev: change	data type in TC rxq and TC txq
  doc: announce modified field in DCB TC queue mapping
  doc: announce modified in queue_stats_mapping api

 app/proc-info/main.c                   |  2 +-
 app/test-pmd/cmdline.c                 |  2 +-
 app/test-pmd/config.c                  |  4 ++--
 app/test-pmd/testpmd.c                 |  2 +-
 app/test-pmd/testpmd.h                 |  5 +++--
 doc/guides/rel_notes/deprecation.rst   | 11 +++++++++++
 doc/guides/rel_notes/release_20_11.rst |  8 ++++++++
 drivers/net/igc/igc_ethdev.c           |  4 ++--
 drivers/net/ixgbe/ixgbe_ethdev.c       |  4 ++--
 drivers/net/memif/rte_eth_memif.c      |  2 +-
 drivers/net/octeontx2/otx2_ethdev.h    |  2 +-
 drivers/net/octeontx2/otx2_stats.c     |  2 +-
 drivers/net/virtio/virtio_ethdev.c     |  4 ++--
 lib/librte_ethdev/rte_ethdev.c         |  6 +++---
 lib/librte_ethdev/rte_ethdev.h         | 12 ++++++------
 lib/librte_ethdev/rte_ethdev_driver.h  |  2 +-
 16 files changed, 46 insertions(+), 26 deletions(-)
  

Comments

Ferruh Yigit Sept. 25, 2020, 9:41 a.m. UTC | #1
On 9/23/2020 1:59 PM, Min Hu (Connor) wrote:
> From: Huisong Li <lihuisong@huawei.com>
> 
> This series change data type in TC rxq and TC txq,
> fix compiling errors for per-queue statistics.
> 
> Huisong Li (4):
>    dpdk: fix compiling errors for per-queue statistics
>    ethdev: change	data type in TC rxq and TC txq
>    doc: announce modified field in DCB TC queue mapping
>    doc: announce modified in queue_stats_mapping api
> 

The change request from previous version seems not addressed, can you 
please check:
http://inbox.dpdk.org/dev/93479bbe-7ebe-a400-2805-5debd96a0937@intel.com/
Basically it requires following change:
  diff --git a/app/test-pmd/cmdline.c b/app/test-pmd/cmdline.c
  index 4df42dbc28..23e624f442 100644
  --- a/app/test-pmd/cmdline.c
  +++ b/app/test-pmd/cmdline.c
  @@ -8346,7 +8346,7 @@ cmdline_parse_token_num_t cmd_setqmap_queueid =
                                queue_id, UINT16);
   cmdline_parse_token_num_t cmd_setqmap_mapvalue =
          TOKEN_NUM_INITIALIZER(struct cmd_set_qmap_result,
  -                             map_value, UINT8);
  +                             map_value, UINT16);

   cmdline_parse_inst_t cmd_set_qmap = {
          .f = cmd_set_qmap_parsed,



Also you can drop deprecation notes as explained here:
http://inbox.dpdk.org/dev/38b50f43-0b31-02a8-87ec-d937d83d051a@intel.com/


Thanks,
ferruh