Re: [PATCH v3,net-next] net: mana: Add support for page sizes other than 4KB on ARM64

2024-06-18 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net-next.git (main) by Jakub Kicinski : On Mon, 17 Jun 2024 13:17:26 -0700 you wrote: > As defined by the MANA Hardware spec, the queue size for DMA is 4KB > minimal, and power of 2. And, the HWC queue size has to be exactly > 4KB. > > To support page size

RE: [PATCH v3,net-next] net: mana: Add support for page sizes other than 4KB on ARM64

2024-06-17 Thread Michael Kelley
From: LKML haiyangz On Behalf Of Haiyang Zhang Sent: Monday, June 17, 2024 1:17 PM > > As defined by the MANA Hardware spec, the queue size for DMA is 4KB > minimal, and power of 2. And, the HWC queue size has to be exactly > 4KB. > > To support page sizes other than 4KB on ARM64, define the mi

[PATCH v3,net-next] net: mana: Add support for page sizes other than 4KB on ARM64

2024-06-17 Thread Haiyang Zhang
As defined by the MANA Hardware spec, the queue size for DMA is 4KB minimal, and power of 2. And, the HWC queue size has to be exactly 4KB. To support page sizes other than 4KB on ARM64, define the minimal queue size as a macro separately from the PAGE_SIZE, which we always assumed it to be 4KB be