Re: [PATCH] net: tftp: fix tftp server initialization

2022-04-12 Thread Ramon Fried
On Thu, Mar 31, 2022 at 2:50 PM Arjan Minzinga Zijlstra wrote: > > Some globals where not properly initialized causing timeouts > as data packets where not immediately acknowledged. > > Signed-off-by: Arjan Minzinga Zijlstra > --- > net/tftp.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff

Re: [PATCH] net: tftp: fix tftp server initialization

2022-04-12 Thread Ramon Fried
On Mon, Apr 11, 2022 at 2:21 PM Arjan Minzinga Zijlstra wrote: > > > On Thu, Mar 31, 2022 at 2:50 PM Arjan Minzinga Zijlstra > > wrote: > > > Some globals where not properly initialized causing timeouts > > > as data packets where not immediately acknowledged. > > I don't see a scenario where

Re: [PATCH] net: tftp: fix tftp server initialization

2022-04-11 Thread Arjan Minzinga Zijlstra
> On Thu, Mar 31, 2022 at 2:50 PM Arjan Minzinga Zijlstra > wrote: > > Some globals where not properly initialized causing timeouts > > as data packets where not immediately acknowledged. > I don't see a scenario where these two variables will not be initialized. > Can you please elaborate ?

Re: [PATCH] net: tftp: fix tftp server initialization

2022-04-01 Thread Ramon Fried
On Thu, Mar 31, 2022 at 2:50 PM Arjan Minzinga Zijlstra wrote: > > Some globals where not properly initialized causing timeouts > as data packets where not immediately acknowledged. I don't see a scenario where these two variables will not be initialized. Can you please elaborate ? > >

[PATCH] net: tftp: fix tftp server initialization

2022-03-31 Thread Arjan Minzinga Zijlstra
Some globals where not properly initialized causing timeouts as data packets where not immediately acknowledged. Signed-off-by: Arjan Minzinga Zijlstra --- net/tftp.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/net/tftp.c b/net/tftp.c index 62a9648474..9d5fe2f2d9 100644 ---