All of lore.kernel.org
 help / color / mirror / Atom feed
From: patchwork-bot+netdevbpf@kernel.org
To: =?utf-8?q?Th=C3=A9o_Lebrun_=3Ctheo=2Elebrun=40bootlin=2Ecom=3E?=@aws-us-west-2-korg-oddjob-rhel9-1.codeaurora.org
Cc: andrew+netdev@lunn.ch, davem@davemloft.net, edumazet@google.com,
	kuba@kernel.org, pabeni@redhat.com, robh@kernel.org,
	krzk+dt@kernel.org, conor+dt@kernel.org,
	nicolas.ferre@microchip.com, claudiu.beznea@tuxon.dev,
	richardcochran@gmail.com, linux@armlinux.org.uk,
	netdev@vger.kernel.org, devicetree@vger.kernel.org,
	linux-kernel@vger.kernel.org, vladimir.kondratiev@mobileye.com,
	tawfik.bayouk@mobileye.com, thomas.petazzoni@bootlin.com,
	gregory.clement@bootlin.com, benoit.monin@bootlin.com,
	maxime.chevallier@bootlin.com, krzysztof.kozlowski@linaro.org,
	andrew@lunn.ch, sean.anderson@linux.dev
Subject: Re: [PATCH net-next 00/15] net: macb: various cleanups
Date: Fri, 17 Oct 2025 01:50:29 +0000	[thread overview]
Message-ID: <176066582948.1978978.752807229943547484.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20251014-macb-cleanup-v1-0-31cd266e22cd@bootlin.com>

Hello:

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

On Tue, 14 Oct 2025 17:25:01 +0200 you wrote:
> Fix many oddities inside the MACB driver. They accumulated in my
> work-in-progress branch while working on MACB/GEM EyeQ5 support.
> 
> Part of this series has been seen on the lkml in March then June.
> See below for a semblance of a changelog.
> 
> The initial goal was to post them alongside EyeQ5 support, but that
> makes for too big of a series. It'll come afterwards, with new
> features (interrupt coalescing, ethtool .set_channels() and XDP mostly).
> 
> [...]

Here is the summary with links:
  - [net-next,01/15] dt-bindings: net: cdns,macb: sort compatibles
    https://git.kernel.org/netdev/net-next/c/f1150b779571
  - [net-next,02/15] net: macb: use BIT() macro for capability definitions
    https://git.kernel.org/netdev/net-next/c/a23b0b79e974
  - [net-next,03/15] net: macb: remove gap in MACB_CAPS_* flags
    https://git.kernel.org/netdev/net-next/c/bd0b35ec835a
  - [net-next,04/15] net: macb: Remove local variables clk_init and init in macb_probe()
    https://git.kernel.org/netdev/net-next/c/80cf78c59a1a
  - [net-next,05/15] net: macb: drop macb_config NULL checking
    https://git.kernel.org/netdev/net-next/c/d7a4a20abe25
  - [net-next,06/15] net: macb: simplify macb_dma_desc_get_size()
    https://git.kernel.org/netdev/net-next/c/94a164598d83
  - [net-next,07/15] net: macb: simplify macb_adj_dma_desc_idx()
    https://git.kernel.org/netdev/net-next/c/62e6c17463a7
  - [net-next,08/15] net: macb: move bp->hw_dma_cap flags to bp->caps
    https://git.kernel.org/netdev/net-next/c/731e991afb75
  - [net-next,09/15] net: macb: introduce DMA descriptor helpers (is 64bit? is PTP?)
    https://git.kernel.org/netdev/net-next/c/02d11c610555
  - [net-next,10/15] net: macb: remove bp->queue_mask
    https://git.kernel.org/netdev/net-next/c/39a913db6a47
  - [net-next,11/15] net: macb: replace min() with umin() calls
    https://git.kernel.org/netdev/net-next/c/f26c6438a285
  - [net-next,12/15] net: macb: drop `entry` local variable in macb_tx_map()
    https://git.kernel.org/netdev/net-next/c/027202adf079
  - [net-next,13/15] net: macb: drop `count` local variable in macb_tx_map()
    https://git.kernel.org/netdev/net-next/c/b5fe4f3e5912
  - [net-next,14/15] net: macb: apply reverse christmas tree in macb_tx_map()
    https://git.kernel.org/netdev/net-next/c/1ce9662e31fd
  - [net-next,15/15] net: macb: sort #includes
    https://git.kernel.org/netdev/net-next/c/8ebeef3d01c8

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



      parent reply	other threads:[~2025-10-17  1:50 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-10-14 15:25 [PATCH net-next 00/15] net: macb: various cleanups Théo Lebrun
2025-10-14 15:25 ` [PATCH net-next 01/15] dt-bindings: net: cdns,macb: sort compatibles Théo Lebrun
2025-10-17 17:45   ` Andrew Lunn
2025-10-14 15:25 ` [PATCH net-next 02/15] net: macb: use BIT() macro for capability definitions Théo Lebrun
2025-10-14 15:25 ` [PATCH net-next 03/15] net: macb: remove gap in MACB_CAPS_* flags Théo Lebrun
2025-10-17 17:52   ` Andrew Lunn
2025-10-14 15:25 ` [PATCH net-next 04/15] net: macb: Remove local variables clk_init and init in macb_probe() Théo Lebrun
2025-10-14 15:25 ` [PATCH net-next 05/15] net: macb: drop macb_config NULL checking Théo Lebrun
2025-10-14 15:25 ` [PATCH net-next 06/15] net: macb: simplify macb_dma_desc_get_size() Théo Lebrun
2025-10-17 17:57   ` Andrew Lunn
2025-10-14 15:25 ` [PATCH net-next 07/15] net: macb: simplify macb_adj_dma_desc_idx() Théo Lebrun
2025-10-17 18:00   ` Andrew Lunn
2025-10-20 11:58     ` Théo Lebrun
2025-10-14 15:25 ` [PATCH net-next 08/15] net: macb: move bp->hw_dma_cap flags to bp->caps Théo Lebrun
2025-10-17 18:03   ` Andrew Lunn
2025-10-14 15:25 ` [PATCH net-next 09/15] net: macb: introduce DMA descriptor helpers (is 64bit? is PTP?) Théo Lebrun
2025-10-17 18:07   ` Andrew Lunn
2025-10-14 15:25 ` [PATCH net-next 10/15] net: macb: remove bp->queue_mask Théo Lebrun
2025-10-17 18:11   ` Andrew Lunn
2025-10-14 15:25 ` [PATCH net-next 11/15] net: macb: replace min() with umin() calls Théo Lebrun
2025-10-19 14:10   ` David Laight
2025-10-20 11:44     ` Théo Lebrun
2025-10-20 11:56       ` David Laight
2025-10-14 15:25 ` [PATCH net-next 12/15] net: macb: drop `entry` local variable in macb_tx_map() Théo Lebrun
2025-10-14 15:25 ` [PATCH net-next 13/15] net: macb: drop `count` " Théo Lebrun
2025-10-14 15:25 ` [PATCH net-next 14/15] net: macb: apply reverse christmas tree " Théo Lebrun
2025-10-14 15:25 ` [PATCH net-next 15/15] net: macb: sort #includes Théo Lebrun
2025-10-17  1: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=176066582948.1978978.752807229943547484.git-patchwork-notify@kernel.org \
    --to=patchwork-bot+netdevbpf@kernel.org \
    --cc==?utf-8?q?Th=C3=A9o_Lebrun_=3Ctheo=2Elebrun=40bootlin=2Ecom=3E?=@aws-us-west-2-korg-oddjob-rhel9-1.codeaurora.org \
    --cc=andrew+netdev@lunn.ch \
    --cc=andrew@lunn.ch \
    --cc=benoit.monin@bootlin.com \
    --cc=claudiu.beznea@tuxon.dev \
    --cc=conor+dt@kernel.org \
    --cc=davem@davemloft.net \
    --cc=devicetree@vger.kernel.org \
    --cc=edumazet@google.com \
    --cc=gregory.clement@bootlin.com \
    --cc=krzk+dt@kernel.org \
    --cc=krzysztof.kozlowski@linaro.org \
    --cc=kuba@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@armlinux.org.uk \
    --cc=maxime.chevallier@bootlin.com \
    --cc=netdev@vger.kernel.org \
    --cc=nicolas.ferre@microchip.com \
    --cc=pabeni@redhat.com \
    --cc=richardcochran@gmail.com \
    --cc=robh@kernel.org \
    --cc=sean.anderson@linux.dev \
    --cc=tawfik.bayouk@mobileye.com \
    --cc=thomas.petazzoni@bootlin.com \
    --cc=vladimir.kondratiev@mobileye.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.