28/11/2023 06:59, Huisong Li: > This patch fixes the description of RSS feature. > And the settinf ot hash algorithm is introduced by 23.11, so add it. > > Fixes: 34ff088cc241 ("ethdev: set and query RSS hash algorithm") > > Signed-off-by: Huisong Li <lihuis...@huawei.com> > Acked-by: Chengwen Feng <fengcheng...@huawei.com> > Acked-by: Ferruh Yigit <ferruh.yi...@amd.com> > --- > * **[uses] user config**: ``dev_conf.rxmode.mq_mode`` = > ``RTE_ETH_MQ_RX_RSS_FLAG``. > -* **[uses] user config**: ``dev_conf.rx_adv_conf.rss_conf``. > +* **[uses] user config**: ``dev_conf.rx_adv_conf.rss_conf.rss_hf``. > ``rss_conf.rss_hf``
No need to keep dev_conf.rx_adv_conf > * **[uses] rte_eth_rxconf,rte_eth_rxmode**: > ``offloads:RTE_ETH_RX_OFFLOAD_RSS_HASH``. > * **[provides] rte_eth_dev_info**: ``flow_type_rss_offloads``. > * **[provides] mbuf**: ``mbuf.ol_flags:RTE_MBUF_F_RX_RSS_HASH``, > ``mbuf.rss``. > +* **[related] API**: ``rte_eth_dev_configure()``, > ``rte_eth_dev_rss_hash_update`` > + ``rte_eth_dev_rss_hash_conf_get()``. > + > +Support RSS hash algorithm on Rx. > + > +* **[implements] eth_dev_ops**: ``dev_configure``, ``rss_hash_update``, > ``rss_hash_conf_get``. > +* **[uses] user config**: ``rss_conf.algorithm`` > +* **[provides] rte_eth_dev_info**: ``rss_algo_capa``. > +* **[related] API**: ``rte_eth_dev_configure()``, > ``rte_eth_dev_rss_hash_update()``, > + ``rte_eth_dev_rss_hash_conf_get()``. Fixed typos, alignment and applied, thanks. Note: the rest of the series is not applied in 23.11. They are additions which may require reviews.