mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: patchwork-bot+netdevbpf@kernel.org
To: Guangbin Huang <huangguangbin2@huawei.com>
Cc: davem@davemloft.net, kuba@kernel.org, wangjie125@huawei.com,
	netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
	lipeng321@huawei.com, chenhao288@hisilicon.com
Subject: Re: [PATCH net-next 00/15] net: hns3: refactor rss/tqp stats functions
Date: Wed, 05 Jan 2022 14:50:13 +0000	[thread overview]
Message-ID: <164139421370.3088.17438905795107862686.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20220105142015.51097-1-huangguangbin2@huawei.com>

Hello:

This series was applied to netdev/net-next.git (master)
by David S. Miller <davem@davemloft.net>:

On Wed, 5 Jan 2022 22:20:00 +0800 you wrote:
> From: Jie Wang <wangjie125@huawei.com>
> 
> Currently, hns3 PF and VF module have two sets of rss and tqp stats APIs
> to provide get and set functions. Most of these APIs are the same. There is
> no need to keep these two sets of same functions for double development and
> bugfix work.
> 
> [...]

Here is the summary with links:
  - [net-next,01/15] net: hns3: create new rss common structure hclge_comm_rss_cfg
    https://git.kernel.org/netdev/net-next/c/9667b814387c
  - [net-next,02/15] net: hns3: refactor hclge_comm_send function in PF/VF drivers
    https://git.kernel.org/netdev/net-next/c/9970308fe6a5
  - [net-next,03/15] net: hns3: create new set of common rss get APIs for PF and VF rss module
    https://git.kernel.org/netdev/net-next/c/1bfd6682e9b5
  - [net-next,04/15] net: hns3: refactor PF rss get APIs with new common rss get APIs
    https://git.kernel.org/netdev/net-next/c/7347255ea389
  - [net-next,05/15] net: hns3: refactor VF rss get APIs with new common rss get APIs
    https://git.kernel.org/netdev/net-next/c/027733b12a10
  - [net-next,06/15] net: hns3: create new set of common rss set APIs for PF and VF module
    https://git.kernel.org/netdev/net-next/c/6de060042867
  - [net-next,07/15] net: hns3: refactor PF rss set APIs with new common rss set APIs
    https://git.kernel.org/netdev/net-next/c/1813ee524331
  - [net-next,08/15] net: hns3: refactor VF rss set APIs with new common rss set APIs
    https://git.kernel.org/netdev/net-next/c/7428d6c93665
  - [net-next,09/15] net: hns3: create new set of common rss init APIs for PF and VF reuse
    https://git.kernel.org/netdev/net-next/c/2c0d3f4cd25f
  - [net-next,10/15] net: hns3: refactor PF rss init APIs with new common rss init APIs
    https://git.kernel.org/netdev/net-next/c/07dce03cd5aa
  - [net-next,11/15] net: hns3: refactor VF rss init APIs with new common rss init APIs
    https://git.kernel.org/netdev/net-next/c/93969dc14fcd
  - [net-next,12/15] net: hns3: create new set of common tqp stats APIs for PF and VF reuse
    https://git.kernel.org/netdev/net-next/c/287db5c40d15
  - [net-next,13/15] net: hns3: refactor PF tqp stats APIs with new common tqp stats APIs
    https://git.kernel.org/netdev/net-next/c/add7645c841c
  - [net-next,14/15] net: hns3: refactor VF tqp stats APIs with new common tqp stats APIs
    https://git.kernel.org/netdev/net-next/c/4afc310cf9a8
  - [net-next,15/15] net: hns3: create new common cmd code for PF and VF modules
    https://git.kernel.org/netdev/net-next/c/43710bfebf23

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



      parent reply	other threads:[~2022-01-05 14:50 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-05 14:20 Guangbin Huang
2022-01-05 14:20 ` [PATCH net-next 01/15] net: hns3: create new rss common structure hclge_comm_rss_cfg Guangbin Huang
2022-01-05 14:20 ` [PATCH net-next 02/15] net: hns3: refactor hclge_comm_send function in PF/VF drivers Guangbin Huang
2022-01-05 14:20 ` [PATCH net-next 03/15] net: hns3: create new set of common rss get APIs for PF and VF rss module Guangbin Huang
2022-01-05 14:20 ` [PATCH net-next 04/15] net: hns3: refactor PF rss get APIs with new common rss get APIs Guangbin Huang
2022-01-05 14:20 ` [PATCH net-next 05/15] net: hns3: refactor VF " Guangbin Huang
2022-01-05 14:20 ` [PATCH net-next 06/15] net: hns3: create new set of common rss set APIs for PF and VF module Guangbin Huang
2022-01-05 14:20 ` [PATCH net-next 07/15] net: hns3: refactor PF rss set APIs with new common rss set APIs Guangbin Huang
2022-01-05 14:20 ` [PATCH net-next 08/15] net: hns3: refactor VF " Guangbin Huang
2022-01-05 14:20 ` [PATCH net-next 09/15] net: hns3: create new set of common rss init APIs for PF and VF reuse Guangbin Huang
2022-01-05 14:20 ` [PATCH net-next 10/15] net: hns3: refactor PF rss init APIs with new common rss init APIs Guangbin Huang
2022-01-05 14:20 ` [PATCH net-next 11/15] net: hns3: refactor VF " Guangbin Huang
2022-01-05 14:20 ` [PATCH net-next 12/15] net: hns3: create new set of common tqp stats APIs for PF and VF reuse Guangbin Huang
2022-01-05 14:20 ` [PATCH net-next 13/15] net: hns3: refactor PF tqp stats APIs with new common tqp stats APIs Guangbin Huang
2022-01-05 14:20 ` [PATCH net-next 14/15] net: hns3: refactor VF " Guangbin Huang
2022-01-05 14:20 ` [PATCH net-next 15/15] net: hns3: create new common cmd code for PF and VF modules Guangbin Huang
2022-01-05 14:50 ` patchwork-bot+netdevbpf [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=164139421370.3088.17438905795107862686.git-patchwork-notify@kernel.org \
    --to=patchwork-bot+netdevbpf@kernel.org \
    --cc=chenhao288@hisilicon.com \
    --cc=davem@davemloft.net \
    --cc=huangguangbin2@huawei.com \
    --cc=kuba@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lipeng321@huawei.com \
    --cc=netdev@vger.kernel.org \
    --cc=wangjie125@huawei.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome