public inbox for ecos-discuss@sourceware.org
 help / color / mirror / Atom feed
From: Andrew Lunn <andrew@lunn.ch>
To: ?yvind Harboe <oyvind.harboe@zylin.com>
Cc: eCos Disuss <ecos-discuss@ecos.sourceware.org>
Subject: Re: [ECOS] Re: Improving TFTP performance
Date: Wed, 19 Dec 2007 22:42:00 -0000	[thread overview]
Message-ID: <20071219151107.GE5944@lunn.ch> (raw)
In-Reply-To: <c09652430712190647p2c401294y652b68caab87d475@mail.gmail.com>

On Wed, Dec 19, 2007 at 03:47:32PM +0100, ?yvind Harboe wrote:
> On Dec 19, 2007 3:17 PM, Andrew Lunn <andrew@lunn.ch> wrote:
> > > +        cdl_option CYGPKG_NET_TFTPD_CLIENT_GET_PACKETSIZE {
> > > +            display "TFTP protocol allows negotiation of bigger packets.
> > > +            Requires server which supports RFC 2348 blksize negotiation."
> > > +            flavor  data
> > > +            default_value 512
> > > +            legal_values 512 to 65464
> > > +            description   "
> > > +             tftp blksize egotiation support. >512 byte block sizes improves
> > > +             tftp GET performance"
> > > +        }
> >
> > The display should be kept to one line maximum. Put all the rest on
> > the description lines. You should also say that the default value of
> > 512 causes this to be disabled. It might even be better to change the
> > flavor of this to booldata, so it can be enabled/disabled and the
> > value set. It then makes your code cleaner.
> 
> I fought w/booldata for a bit, but couldn't make sense of it.

Something like this is O.K.

   cdl_component CYGOPY_NET_TFTPD_CLIENT_BIG_PACKET {
       display "Extension to allow negotiation of big packets"
       flavor bool
       default_value 0
       
       description "Implements RFC XXXX, an optional extension to the TFTP
                    protocol to allow the client and server to negotiate
                    to use bigger packets. This can make upload/download
                    faster"
                    
       cdl_option  CYGOPY_NET_TFTPD_CLIENT_BIG_PACKET {
           display  "Packet size to negotiate"    
           flavor    data            
           default_value 32768
           legal_values 8 to 65535
           description "
               Size of the packets to negotiate. In an error free
               environment, bigger packets will result in faster transfers."
       }
}


This will make your code cleaner. You no longer need the hard coded > 512
etc. 

     Andrew

-- 
Before posting, please read the FAQ: http://ecos.sourceware.org/fom/ecos
and search the list archive: http://ecos.sourceware.org/ml/ecos-discuss

  reply	other threads:[~2007-12-19 15:11 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-12-19 12:41 [ECOS] " Øyvind Harboe
2007-12-19 13:53 ` [ECOS] " Øyvind Harboe
2007-12-19 14:17   ` Andrew Lunn
2007-12-19 14:47     ` Øyvind Harboe
2007-12-19 15:11       ` Andrew Lunn
2007-12-19 15:34         ` Øyvind Harboe
2007-12-19 22:42           ` Andrew Lunn [this message]
2007-12-19 23:39             ` Gary Thomas
2007-12-19 23:52             ` Øyvind Harboe
2007-12-19 14:28   ` Sergei Gavrikov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20071219151107.GE5944@lunn.ch \
    --to=andrew@lunn.ch \
    --cc=ecos-discuss@ecos.sourceware.org \
    --cc=oyvind.harboe@zylin.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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 read-only IMAP folder(s) and NNTP newsgroup(s).