Re: [PATCH 1/4] net: e1000: add and make use of NUM_RX_DESC macro

2023-05-02 Thread Christian Gmeiner
Am Sa., 1. Apr. 2023 um 21:01 Uhr schrieb Ramon Fried : > > On Fri, Mar 3, 2023 at 10:49 PM Christian Gmeiner > wrote: > > > > The call to DEFINE_ALIGN_BUFFER for the rx_desc array > > conained an icnonsistency as 16 receive descriptors > > were allocated when the remaining code would only use >

Re: [PATCH 1/4] net: e1000: add and make use of NUM_RX_DESC macro

2023-04-01 Thread Ramon Fried
On Fri, Mar 3, 2023 at 10:49 PM Christian Gmeiner wrote: > > The call to DEFINE_ALIGN_BUFFER for the rx_desc array > conained an icnonsistency as 16 receive descriptors > were allocated when the remaining code would only use > 8 of them. > > Signed-off-by: Christian Gmeiner > --- >

Re: [PATCH 1/4] net: e1000: add and make use of NUM_RX_DESC macro

2023-03-23 Thread Christian Gmeiner
> > > > > The call to DEFINE_ALIGN_BUFFER for the rx_desc array > > conained an icnonsistency as 16 receive descriptors > > were allocated when the remaining code would only use > > 8 of them. > > > > Signed-off-by: Christian Gmeiner > > gentle ping > Adding some more people to CC - maybe this

Re: [PATCH 1/4] net: e1000: add and make use of NUM_RX_DESC macro

2023-03-17 Thread Christian Gmeiner
> > The call to DEFINE_ALIGN_BUFFER for the rx_desc array > conained an icnonsistency as 16 receive descriptors > were allocated when the remaining code would only use > 8 of them. > > Signed-off-by: Christian Gmeiner gentle ping -- greets -- Christian Gmeiner, MSc

[PATCH 1/4] net: e1000: add and make use of NUM_RX_DESC macro

2023-03-03 Thread Christian Gmeiner
The call to DEFINE_ALIGN_BUFFER for the rx_desc array conained an icnonsistency as 16 receive descriptors were allocated when the remaining code would only use 8 of them. Signed-off-by: Christian Gmeiner --- drivers/net/e1000.c | 6 +++--- drivers/net/e1000.h | 2 ++ 2 files changed, 5