From: "David Tweed" <david.tweed@gmail.com>
To: "Brandon Casey" <casey@nrlssc.navy.mil>
Cc: "Nicolas Pitre" <nico@cam.org>,
"David Steven Tweed" <d.s.tweed@reading.ac.uk>,
git@vger.kernel.org, Johannes.Schindelin@gmx.de
Subject: Re: [PATCH] Make git prune remove temporary packs that look like write failures
Date: Wed, 6 Feb 2008 19:57:41 +0000 [thread overview]
Message-ID: <e1dab3980802061157r36dfa8b9uab49af013cb8e963@mail.gmail.com> (raw)
In-Reply-To: <47AA0D60.60504@nrlssc.navy.mil>
On Feb 6, 2008 7:41 PM, Brandon Casey <casey@nrlssc.navy.mil> wrote:
> They use sprintf for the "%02x" part, but they use memcpy to copy the return
> of get_object_directory() into a fixed string and then append onto that,
> rather than repeatedly writing the same string over and over. Ok, there is one
> instance in builtin-prune.c that repeatedly writes path, but builtin-prune-packed.c
> does the memcpy thing.
Given I'm the only person (AFAICS from the list archives) who's ever
talked about failed temporary packs, I assume that almost everyone
using git is using filesystems with sufficient space that they don't
get write errors, so the path building will generally be done 0 times
per --prune. (Using a USB disk that's almost full, along with
occasionally filling up my /home with experiment output, is the
occasions I get them.) So I don't think efficiency is an issue. So the
big (genuine) question is: is a properly checked snprintf more or less
readable/canonical git style than doing more complicated strlcpy
things? (I know I need to really think about what the below is doing,
and what the correctness conditions are.)
> Something like:
>
> char pathname[PATH_MAX];
> ...
>
> /* check length of dirname not too long */
>
> memcpy(pathname, dirname, len);
>
> if (len && pathname[len-1] != '/')
> pathname[len++] = '/';
>
> ...
>
> while ((de = readdir(dir)...) {
> if (!prefixcmp(...
> if (strlcpy(pathname + len, de->d_name, PATH_MAX - len)
> >= PATH_MAX - len) {
> warning("too long path encountered: %s%s",
> pathname, de->d_name);
> continue;
> }
>
> ...
--
cheers, dave tweed__________________________
david.tweed@gmail.com
Rm 124, School of Systems Engineering, University of Reading.
"while having code so boring anyone can maintain it, use Python." --
attempted insult seen on slashdot
next prev parent reply other threads:[~2008-02-06 19:58 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-02-05 18:49 [PATCH] Make git prune remove temporary packs that look like write failures David Steven Tweed
2008-02-05 19:02 ` Nicolas Pitre
2008-02-05 20:06 ` [PATCH] prune: heed --expire for stale packs, add a test Johannes Schindelin
2008-02-05 20:13 ` Nicolas Pitre
2008-02-06 5:15 ` Junio C Hamano
2008-02-06 7:41 ` Johannes Schindelin
2008-02-06 14:12 ` Nicolas Pitre
2008-02-06 20:30 ` Junio C Hamano
2008-02-06 16:48 ` [PATCH] Make git prune remove temporary packs that look like write failures Brandon Casey
2008-02-06 18:59 ` David Tweed
2008-02-06 19:41 ` Brandon Casey
2008-02-06 19:57 ` David Tweed [this message]
2008-02-06 20:07 ` Nicolas Pitre
2008-02-06 20:43 ` Brandon Casey
2008-02-06 19:10 ` David Tweed
2008-02-06 19:31 ` Nicolas Pitre
2008-02-06 20:02 ` David Tweed
2008-02-06 20:16 ` Nicolas Pitre
2008-02-06 20:25 ` David Tweed
2008-02-06 10:02 ` Junio C Hamano
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=e1dab3980802061157r36dfa8b9uab49af013cb8e963@mail.gmail.com \
--to=david.tweed@gmail.com \
--cc=Johannes.Schindelin@gmx.de \
--cc=casey@nrlssc.navy.mil \
--cc=d.s.tweed@reading.ac.uk \
--cc=git@vger.kernel.org \
--cc=nico@cam.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;
as well as URLs for NNTP newsgroup(s).