Patch is attached

> Date: Tue, 22 Sep 2009 16:32:37 -0700
> From: biggerbadder...@gmail.com
> To: jefferypal...@hotmail.com
> CC: u-boot@lists.denx.de
> Subject: Re: [U-Boot] tftp packet failure counter reset
> 
> Jeffery Palmer wrote:
> > I do large transfers via tftp, and since the timeout counter never resets, 
> > they often fail since the failures are counted throughout the entire 
> > transfer. By resetting the counter to 0 on a successful packet, this issue 
> > is fixed
> >
> >
> >
> > tftp.c:
> >                 } else {
> >                         if (((TftpBlock - 1) % 10) == 0) {
> >                                 putc ('#');
> >                         } else if ((TftpBlock % (10 * HASHES_PER_LINE)) == 
> > 0) {
> >                                 puts ("\n\t ");
> >                         }
> > +                       //Reset timeout count since we received a good 
> > packet
> > +                       TftpTimeoutCount = 0;
> >                 }
> >
> >                 if (TftpState == STATE_RRQ)
> >   
> Please send a proper patch in plaintext with all the right bits and pieces.
> 
> regards,
> Ben

_________________________________________________________________
Bing brings you health info from trusted sources.
http://www.bing.com/search?q=pet+allergy&form=MHEINA&publ=WLHMTAG&crea=TXT_MHEINA_Health_Health_PetAllergy_1x1

Attachment: tftp.patch
Description: Binary data

_______________________________________________
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot

Reply via email to