From: Marek Vasut <marex@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v3 8/8] palmtreo680: add utility that writes u-boot to flash
Date: Tue, 16 Apr 2013 20:06:35 +0200 [thread overview]
Message-ID: <201304162006.35808.marex@denx.de> (raw)
In-Reply-To: <516D8F75.6030404@newsguy.com>
Dear Mike Dunn,
> Thanks again Marek. A question below...
>
>
> On 04/14/2013 10:38 AM, Marek Vasut wrote:
>
>
> [...]
>
> >> +
> >> + if (argc != 3) {
> >> + printf("usage: %s <image file> <mtd dev node>\n", argv[0]);
> >> + exit(-1);
> >
> > Use proper errno and "return" as you're returning from main() anyway.
>
> Agreed regarding 'return'. But should I be concerned with setting or
> preserving errno before all 'return -1' lines? Is it normal practice for
> a common utility to set errno? errno will have to be saved in many
> places, since perror() itself can change it. This will add many more
> lines of code.
Ooops! errno.h, sorry for the confusion :-(
> [...]
>
> >> +
> >> + blockbuf = malloc(RELIABLE_BLOCKSIZE);
> >
> > Do you not want to use some calloc() here to make sure the "blockbuf" is
> > zeroed?
>
> Not necessary here; the buffer is always filled or the utility exits with
> error. But will change to calloc() anyway.
If you're sure it's filled, then it's no problem.
> [...]
>
> >> +
> >> + /* read data for one block from file */
> >> + while (len != 0 && (read_ret = read(datafd, buf, len)) != 0) {
> >
> > Uh, this really might be a candidate for IOCCC, split this please ...
>
> Well, OK, but... I normally don't embed calls in tests, but I do it here
> because the read is performed at the start of each loop iteration, and I
> thought this made it clearer and more concise. Basically it means "loop
> while there's still more data to write, and read() does not return EOF".
>
> Actually, read() should never return EOF, because earlier I check the file
> length, so if I'm going to do the sanity check anyway, maybe it should be
> separate.
I'd say you can loop and break; out if needed, no ?
while (cond.) {
if (x)
break;
if (y)
break;
do_useful_stuff here;
}
Best regards,
Marek Vasut
prev parent reply other threads:[~2013-04-16 18:06 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-04-12 18:59 [U-Boot] [PATCH v3 0/8] palm treo 680 smartphone board support Mike Dunn
2013-04-12 18:59 ` [U-Boot] [PATCH v3 1/8] pxa_lcd: add the ACX544AKN lcd device Mike Dunn
2013-04-12 18:59 ` [U-Boot] [PATCH v3 2/8] pxa_lcd: make lcd_enable() a weak pointer Mike Dunn
2013-04-12 18:59 ` [U-Boot] [PATCH v3 3/8] pxa27x_udc: remove call to unimplemented set_GPIO_mode() Mike Dunn
2013-04-12 18:59 ` [U-Boot] [PATCH v3 4/8] arm: bootm: call udc_disable() before booting linux Mike Dunn
2013-04-14 17:26 ` Marek Vasut
2013-04-14 19:22 ` Albert ARIBAUD
2013-04-14 20:12 ` Marek Vasut
2013-04-15 12:45 ` Tom Rini
2013-04-15 12:56 ` Albert ARIBAUD
2013-04-15 13:08 ` Marek Vasut
2013-04-12 18:59 ` [U-Boot] [PATCH 5/8] lib: import bitrev library from the linux kernel Mike Dunn
2013-04-12 18:59 ` [U-Boot] [PATCH v3 6/8] mtd: nand: add driver for diskonchip g4 nand flash Mike Dunn
2013-04-12 19:21 ` Scott Wood
2013-04-13 14:42 ` Marek Vasut
2013-04-15 17:51 ` Scott Wood
2013-04-12 18:59 ` [U-Boot] [PATCH v3 7/8] add support for palm treo 680 board Mike Dunn
2013-04-14 17:34 ` Marek Vasut
2013-04-15 17:34 ` Mike Dunn
2013-04-15 18:33 ` Marek Vasut
2013-04-15 19:11 ` Mike Dunn
2013-04-12 18:59 ` [U-Boot] [PATCH v3 8/8] palmtreo680: add utility that writes u-boot to flash Mike Dunn
2013-04-14 17:38 ` Marek Vasut
2013-04-16 17:50 ` Mike Dunn
2013-04-16 18:06 ` Marek Vasut [this message]
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=201304162006.35808.marex@denx.de \
--to=marex@denx.de \
--cc=u-boot@lists.denx.de \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.