All of lore.kernel.org
 help / color / mirror / Atom feed
From: Junio C Hamano <gitster@pobox.com>
To: Pierre Habouzit <madcoder@debian.org>
Cc: gitster@pobox.com, git@vger.kernel.org
Subject: Re: [PATCH 2/7] nfv?asprintf are broken without va_copy, workaround them.
Date: Wed, 19 Sep 2007 21:27:31 -0700	[thread overview]
Message-ID: <7vwsumkll8.fsf@gitster.siamese.dyndns.org> (raw)
In-Reply-To: <1190241736-30449-3-git-send-email-madcoder@debian.org> (Pierre Habouzit's message of "Thu, 20 Sep 2007 00:42:11 +0200")

Pierre Habouzit <madcoder@debian.org> writes:

> * drop nfasprintf.
> * move nfvasprintf into imap-send.c back, and let it work on a 8k buffer,
>   and die() in case of overflow. It should be enough for imap commands, if
>   someone cares about imap-send, he's welcomed to fix it properly.
> * replace nfvasprintf use in merge-recursive with a copy of the strbuf_addf
>   logic, it's one place, we'll live with it.
>   To ease the change, output_buffer string list is replaced with a strbuf ;)

While I'd agree with all of the above,

> * rework trace.c API's so that only one of the trace functions takes a
>   vararg. It's used to format strerror()s and git command names, it should
>   never be more than a few octets long, let it work on a 8k static buffer
>   with vsnprintf or die loudly.

and I'd agree with this in principle, there is a minor nit with
the implementation and use in trace.c.  E.g.

> diff --git a/exec_cmd.c b/exec_cmd.c
> index 9b74ed2..c0f954e 100644
> --- a/exec_cmd.c
> +++ b/exec_cmd.c
> @@ -97,7 +97,8 @@ int execv_git_cmd(const char **argv)
>  		tmp = argv[0];
>  		argv[0] = git_command;
>  
> -		trace_argv_printf(argv, -1, "trace: exec:");
> +		trace_printf("trace: exec:");
> +		trace_argv(argv, -1);

This used to be a single call into trace.c which would format a
single string to write(2) out.  Now these two messages go
through separate write(2) and can be broken up.  I think the
atomicity of the log/trace message was the primary reason the
original had such a strange calling convention.

  parent reply	other threads:[~2007-09-20  4:27 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-09-19 22:42 quote/strbuf series, take 3 Pierre Habouzit
     [not found] ` <1190241736-30449-2-git-send-email-madcoder@debian.org>
     [not found]   ` <1190241736-30449-3-git-send-email-madcoder@debian.org>
2007-09-20  4:27     ` Junio C Hamano [this message]
2007-09-20  4:53       ` [PATCH 2/7] nfv?asprintf are broken without va_copy, workaround them Christian Couder
2007-09-20  8:27       ` Pierre Habouzit
2007-09-20  8:43         ` [SUPERSEDES PATCH " Pierre Habouzit
2007-09-21  6:17           ` Junio C Hamano
2007-09-21  7:02             ` Pierre Habouzit
2007-09-20  8:44         ` [SUPERSEDES PATCH 4/7] sq_quote_argv and add_to_string rework with strbuf's Pierre Habouzit
     [not found]     ` <1190241736-30449-4-git-send-email-madcoder@debian.org>
     [not found]       ` <1190241736-30449-5-git-send-email-madcoder@debian.org>
     [not found]         ` <1190241736-30449-6-git-send-email-madcoder@debian.org>
     [not found]           ` <1190241736-30449-7-git-send-email-madcoder@debian.org>
     [not found]             ` <1190241736-30449-8-git-send-email-madcoder@debian.org>
2007-09-20 22:05               ` [PATCH 7/7] Avoid duplicating memory, and use xmemdupz instead of xstrdup Pierre Habouzit
2007-09-21  7:03               ` Pierre Habouzit
2007-09-21  7:39                 ` [DON'T MERGE PATCH 7/7] Pierre Habouzit

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=7vwsumkll8.fsf@gitster.siamese.dyndns.org \
    --to=gitster@pobox.com \
    --cc=git@vger.kernel.org \
    --cc=madcoder@debian.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 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.