mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Sascha Hauer <s.hauer@pengutronix.de>
To: Antony Pavlov <antonynpavlov@gmail.com>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH] commands: ls: use 14 digits for filesize
Date: Fri, 2 Oct 2015 09:16:30 +0200	[thread overview]
Message-ID: <20151002071630.GP7858@pengutronix.de> (raw)
In-Reply-To: <1443761811-15621-1-git-send-email-antonynpavlov@gmail.com>

On Fri, Oct 02, 2015 at 07:56:51AM +0300, Antony Pavlov wrote:
> 10 digits are not enough for modern SATA/USB storages. E.g.:
> 
>     barebox> ls -l /dev/
>     cr-------- 500107862016 ata0
>     cr--------   33554432 ata0.0
>     cr-------- 500073258496 ata0.1
>     cr-------- 32224837632 disk0
>     cr--------   67108864 disk0.0
>     cr-------- 32156680192 disk0.1
> 
> 14 digits look much better. E.g.:
> 
>     barebox> ls -l /dev/
>     cr--------   500107862016 ata0
>     cr--------       33554432 ata0.0
>     cr--------   500073258496 ata0.1
>     cr--------    32224837632 disk0
>     cr--------       67108864 disk0.0
>     cr--------    32156680192 disk0.1
> 
> Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>
> ---
>  commands/ls.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/commands/ls.c b/commands/ls.c
> index 1a5925d..09437af 100644
> --- a/commands/ls.c
> +++ b/commands/ls.c
> @@ -32,7 +32,7 @@ static void ls_one(const char *path, const char* fullname, struct stat *s)
>  	unsigned int namelen = strlen(path);
>  
>  	mkmodestr(s->st_mode, modestr);
> -	printf("%s %10llu %*.*s", modestr, s->st_size, namelen, namelen, path);
> +	printf("%s %14llu %*.*s", modestr, s->st_size, namelen, namelen, path);

Maybe we should autogenerate that number from the current compile year
taking Moores law into account ;)

Until that is done: Applied this one

Sascha

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

      reply	other threads:[~2015-10-02  7:16 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-10-02  4:56 Antony Pavlov
2015-10-02  7:16 ` Sascha Hauer [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=20151002071630.GP7858@pengutronix.de \
    --to=s.hauer@pengutronix.de \
    --cc=antonynpavlov@gmail.com \
    --cc=barebox@lists.infradead.org \
    /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