mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: patchwork-bot+netdevbpf@kernel.org
To: Jijie Shao <shaojijie@huawei.com>
Cc: davem@davemloft.net, edumazet@google.com, kuba@kernel.org,
	pabeni@redhat.com, andrew+netdev@lunn.ch, horms@kernel.org,
	gregkh@linuxfoundation.org, shenjian15@huawei.com,
	wangpeiyang1@huawei.com, liuyonglong@huawei.com,
	chenhao418@huawei.com, sudongming1@huawei.com,
	xujunsheng@huawei.com, shiyongbang@huawei.com,
	libaihan@huawei.com, jonathan.cameron@huawei.com,
	shameerali.kolothum.thodi@huawei.com, salil.mehta@huawei.com,
	netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
	hkelam@marvell.com
Subject: Re: [PATCH V8 net-next 0/7] Support some features for the HIBMCGE driver
Date: Wed, 18 Dec 2024 04:10:34 +0000	[thread overview]
Message-ID: <173449503400.1173615.8949453426330063771.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20241216040532.1566229-1-shaojijie@huawei.com>

Hello:

This series was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:

On Mon, 16 Dec 2024 12:05:25 +0800 you wrote:
> In this patch series, The HIBMCGE driver implements some functions
> such as dump register, unicast MAC address filtering, debugfs and reset.
> 
> ---
> ChangeLog:
> v7 -> v8:
>   - Use kernel public helper "str_true_false" instead of self-defined,
>     suggested by Jakub.
>   v7: https://lore.kernel.org/all/20241212142334.1024136-1-shaojijie@huawei.com/
> v6 -> v7:
>   - Optimize the wrapper name, suggested by Jakub.
>   - Delete table_overflow to simplify the code, suggested by Jakub.
>   v6: https://lore.kernel.org/all/20241210134855.2864577-1-shaojijie@huawei.com/
> v5 -> v6:
>   - Drop debugfs_create_devm_dir() helper, suggested by Greg KH.
>   v5: https://lore.kernel.org/all/20241206111629.3521865-1-shaojijie@huawei.com/
> v4 -> v5:
>   - Add debugfs_create_devm_dir() helper, suggested by Jakub.
>   - Simplify reset logic by optimizing rtnl lock, suggested by Jakub.
>   v4: https://lore.kernel.org/all/20241203150131.3139399-1-shaojijie@huawei.com/
> v3 -> v4:
>   - Support auto-neg pause, suggested by Andrew.
>   v3: https://lore.kernel.org/all/20241111145558.1965325-1-shaojijie@huawei.com/
> v2 -> v3:
>   -  Not not dump in ethtool statistics which can be accessed via standard APIs,
>      suggested by Jakub. The relevant patche is removed from this patch series,
>      and the statistically relevant patches will be sent separately.
>   v2: https://lore.kernel.org/all/20241026115740.633503-1-shaojijie@huawei.com/
> v1 -> v2:
>   - Remove debugfs file 'dev_specs' because the dump register
>     does the same thing, suggested by Andrew.
>   - Move 'tx timeout cnt' from debugfs to ethtool -S, suggested by Andrew.
>   - Ignore the error code of the debugfs initialization failure, suggested by Andrew.
>   - Add a new patch for debugfs file 'irq_info', suggested by Andrew.
>   - Add somme comments for filtering, suggested by Andrew.
>   - Not pass back ASCII text in dump register, suggested by Andrew.
>   v1: https://lore.kernel.org/all/20241023134213.3359092-1-shaojijie@huawei.com/
> 
> [...]

Here is the summary with links:
  - [V8,net-next,1/7] net: hibmcge: Add debugfs supported in this module
    https://git.kernel.org/netdev/net-next/c/86331b510260
  - [V8,net-next,2/7] net: hibmcge: Add irq_info file to debugfs
    https://git.kernel.org/netdev/net-next/c/df491c419bcb
  - [V8,net-next,3/7] net: hibmcge: Add unicast frame filter supported in this module
    https://git.kernel.org/netdev/net-next/c/37b367d60d0f
  - [V8,net-next,4/7] net: hibmcge: Add register dump supported in this module
    https://git.kernel.org/netdev/net-next/c/51574da8dce3
  - [V8,net-next,5/7] net: hibmcge: Add pauseparam supported in this module
    https://git.kernel.org/netdev/net-next/c/3a03763f3876
  - [V8,net-next,6/7] net: hibmcge: Add reset supported in this module
    https://git.kernel.org/netdev/net-next/c/3f5a61f6d504
  - [V8,net-next,7/7] net: hibmcge: Add nway_reset supported in this module
    https://git.kernel.org/netdev/net-next/c/adb42b1e0ef3

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



      parent reply	other threads:[~2024-12-18  4:10 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-12-16  4:05 Jijie Shao
2024-12-16  4:05 ` [PATCH V8 net-next 1/7] net: hibmcge: Add debugfs supported in this module Jijie Shao
2024-12-16  4:05 ` [PATCH V8 net-next 2/7] net: hibmcge: Add irq_info file to debugfs Jijie Shao
2024-12-16  4:05 ` [PATCH V8 net-next 3/7] net: hibmcge: Add unicast frame filter supported in this module Jijie Shao
2024-12-16  4:05 ` [PATCH V8 net-next 4/7] net: hibmcge: Add register dump " Jijie Shao
2024-12-16  4:05 ` [PATCH V8 net-next 5/7] net: hibmcge: Add pauseparam " Jijie Shao
2024-12-16  4:05 ` [PATCH V8 net-next 6/7] net: hibmcge: Add reset " Jijie Shao
2024-12-16  4:05 ` [PATCH V8 net-next 7/7] net: hibmcge: Add nway_reset " Jijie Shao
2024-12-18  4:10 ` 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=173449503400.1173615.8949453426330063771.git-patchwork-notify@kernel.org \
    --to=patchwork-bot+netdevbpf@kernel.org \
    --cc=andrew+netdev@lunn.ch \
    --cc=chenhao418@huawei.com \
    --cc=davem@davemloft.net \
    --cc=edumazet@google.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=hkelam@marvell.com \
    --cc=horms@kernel.org \
    --cc=jonathan.cameron@huawei.com \
    --cc=kuba@kernel.org \
    --cc=libaihan@huawei.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=liuyonglong@huawei.com \
    --cc=netdev@vger.kernel.org \
    --cc=pabeni@redhat.com \
    --cc=salil.mehta@huawei.com \
    --cc=shameerali.kolothum.thodi@huawei.com \
    --cc=shaojijie@huawei.com \
    --cc=shenjian15@huawei.com \
    --cc=shiyongbang@huawei.com \
    --cc=sudongming1@huawei.com \
    --cc=wangpeiyang1@huawei.com \
    --cc=xujunsheng@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

all inboxes | Powered by JetHome®