netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next v2] net: ethernet: microchip: lan743x: Fix memory allocation failure
@ 2025-04-10  4:10 Thangaraj Samynathan
  2025-04-11 16:53 ` Simon Horman
  0 siblings, 1 reply; 3+ messages in thread
From: Thangaraj Samynathan @ 2025-04-10  4:10 UTC (permalink / raw)
  To: netdev
  Cc: bryan.whitehead, UNGLinuxDriver, andrew+netdev, davem, edumazet,
	kuba, pabeni, linux-kernel

The driver allocates ring elements using GFP_DMA flags. There is
no dependency from LAN743x hardware on memory allocation should be
in DMA_ZONE. Hence modifying the flags to use only GFP_ATOMIC

Signed-off-by: Thangaraj Samynathan <thangaraj.s@microchip.com>
---
v0
-Initial Commit

v1
-Modified GFP flags from GFP_KERNEL to GFP_ATOMIC
-added fixes tag

v2
-Resubmit net-next instead of net

---
 drivers/net/ethernet/microchip/lan743x_main.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/net/ethernet/microchip/lan743x_main.c b/drivers/net/ethernet/microchip/lan743x_main.c
index 23760b613d3e..8b6b9b6efe18 100644
--- a/drivers/net/ethernet/microchip/lan743x_main.c
+++ b/drivers/net/ethernet/microchip/lan743x_main.c
@@ -2495,8 +2495,7 @@ static int lan743x_rx_process_buffer(struct lan743x_rx *rx)
 
 	/* save existing skb, allocate new skb and map to dma */
 	skb = buffer_info->skb;
-	if (lan743x_rx_init_ring_element(rx, rx->last_head,
-					 GFP_ATOMIC | GFP_DMA)) {
+	if (lan743x_rx_init_ring_element(rx, rx->last_head, GFP_ATOMIC)) {
 		/* failed to allocate next skb.
 		 * Memory is very low.
 		 * Drop this packet and reuse buffer.
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH net-next v2] net: ethernet: microchip: lan743x: Fix memory allocation failure
  2025-04-10  4:10 [PATCH net-next v2] net: ethernet: microchip: lan743x: Fix memory allocation failure Thangaraj Samynathan
@ 2025-04-11 16:53 ` Simon Horman
  2025-04-15  4:53   ` Rengarajan.S
  0 siblings, 1 reply; 3+ messages in thread
From: Simon Horman @ 2025-04-11 16:53 UTC (permalink / raw)
  To: Thangaraj Samynathan
  Cc: netdev, bryan.whitehead, UNGLinuxDriver, andrew+netdev, davem,
	edumazet, kuba, pabeni, linux-kernel

On Thu, Apr 10, 2025 at 09:40:34AM +0530, Thangaraj Samynathan wrote:
> The driver allocates ring elements using GFP_DMA flags. There is
> no dependency from LAN743x hardware on memory allocation should be
> in DMA_ZONE. Hence modifying the flags to use only GFP_ATOMIC
> 
> Signed-off-by: Thangaraj Samynathan <thangaraj.s@microchip.com>
> ---
> v0
> -Initial Commit
> 
> v1
> -Modified GFP flags from GFP_KERNEL to GFP_ATOMIC
> -added fixes tag
> 
> v2
> -Resubmit net-next instead of net

Hi Thangaraj,

Thanks for the update. And sorry for not noticing this
in my earlier review. But I have some more feedback:

* I don't think it is correct to refer to this as fixing a failure
  in the subject.

* I do think the subject prefix can be shortened to 'net: lan743x: '



Perhaps something more like this?

	[PATCH net-next v3] net: lan743x: Allocate rings outside ZONE_DMA

And perhaps also mention in the commit message that this
is consistent with the other caller of lan743x_rx_init_ring_element().

Thanks!

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH net-next v2] net: ethernet: microchip: lan743x: Fix memory allocation failure
  2025-04-11 16:53 ` Simon Horman
@ 2025-04-15  4:53   ` Rengarajan.S
  0 siblings, 0 replies; 3+ messages in thread
From: Rengarajan.S @ 2025-04-15  4:53 UTC (permalink / raw)
  To: horms, Thangaraj.S
  Cc: Bryan.Whitehead, andrew+netdev, davem, linux-kernel, pabeni, kuba,
	edumazet, netdev, UNGLinuxDriver

Hi Simon,
Thanks for the comments. Have addressed your comments in the next
revison.

Thanks,
Thangaraj Samynathan

On Fri, 2025-04-11 at 17:53 +0100, Simon Horman wrote:
> EXTERNAL EMAIL: Do not click links or open attachments unless you
> know the content is safe
> 
> On Thu, Apr 10, 2025 at 09:40:34AM +0530, Thangaraj Samynathan wrote:
> > The driver allocates ring elements using GFP_DMA flags. There is
> > no dependency from LAN743x hardware on memory allocation should be
> > in DMA_ZONE. Hence modifying the flags to use only GFP_ATOMIC
> > 
> > Signed-off-by: Thangaraj Samynathan <thangaraj.s@microchip.com>
> > ---
> > v0
> > -Initial Commit
> > 
> > v1
> > -Modified GFP flags from GFP_KERNEL to GFP_ATOMIC
> > -added fixes tag
> > 
> > v2
> > -Resubmit net-next instead of net
> 
> Hi Thangaraj,
> 
> Thanks for the update. And sorry for not noticing this
> in my earlier review. But I have some more feedback:
> 
> * I don't think it is correct to refer to this as fixing a failure
>   in the subject.
> 
> * I do think the subject prefix can be shortened to 'net: lan743x: '
> 
> 
> 
> Perhaps something more like this?
> 
>         [PATCH net-next v3] net: lan743x: Allocate rings outside
> ZONE_DMA
> 
> And perhaps also mention in the commit message that this
> is consistent with the other caller of
> lan743x_rx_init_ring_element().
> 
> Thanks!

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-04-15  4:53 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-10  4:10 [PATCH net-next v2] net: ethernet: microchip: lan743x: Fix memory allocation failure Thangaraj Samynathan
2025-04-11 16:53 ` Simon Horman
2025-04-15  4:53   ` Rengarajan.S

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).