git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
From: Johannes Sixt <j6t@kdbg.org>
To: Thomas Rast <trast@student.ethz.ch>
Cc: Junio C Hamano <gitster@pobox.com>,
	git@vger.kernel.org, Jeff King <peff@peff.net>,
	Alexander Potashev <aspotashev@gmail.com>
Subject: Re: [PATCH v2 3/3] Use die_errno() instead of die() when checking syscalls
Date: Sat, 6 Jun 2009 23:02:08 +0200	[thread overview]
Message-ID: <200906062302.08616.j6t@kdbg.org> (raw)
In-Reply-To: <62538974f2c0f4561428507e514daa87dbfcac01.1244299302.git.trast@student.ethz.ch>

On Samstag, 6. Juni 2009, Thomas Rast wrote:
> Lots of die() calls did not actually report the kind of error, which
> can leave the user confused as to the real problem.  Use die_errno()
> where we check a system/library call that sets errno on failure, or
> one of the following that wrap such calls:
>
>   Function              Passes on error from
>   --------              --------------------
>   odb_pack_keep         open
>   read_ancestry         fopen
>   read_in_full          xread
>   strbuf_read           xread
>   strbuf_read_file      open or strbuf_read_file
>   strbuf_readlink       readlink
>   write_in_full         xwrite
>
> Signed-off-by: Thomas Rast <trast@student.ethz.ch>
> ---

> @@ -2262,7 +2262,6 @@ int cmd_blame(int argc, const char **argv, const char
> *prefix)
>
>  	if (revs_file && read_ancestry(revs_file))
>  		die_errno("reading graft file '%s' failed", revs_file);
> -
>  	if (cmd_is_annotate) {
>  		output_option |= OUTPUT_ANNOTATE_COMPAT;
>  		blame_date_mode = DATE_ISO8601;

Unrelated and not an improvement.

> @@ -220,13 +220,12 @@ static void copy_or_link_directory(struct strbuf
> *src, struct strbuf *dest)
>
>  	dir = opendir(src->buf);
>  	if (!dir)
> -		die("failed to open %s", src->buf);
> -
> +		die_errno("failed to open '%s'", src->buf);

Here (and in other cases) you remote an empty line. I don't think that is an 
improvement.

> @@ -472,7 +472,6 @@ static int prepare_to_commit(const char *index_file,
> const char *prefix) fp = fopen(git_path(commit_editmsg), "w");
>  	if (fp == NULL)
>  		die_errno("could not open '%s'", git_path(commit_editmsg));
> -
>  	if (cleanup_mode != CLEANUP_NONE)
>  		stripspace(&sb, 0);
>

Unrelated.

> @@ -496,7 +495,6 @@ static int prepare_to_commit(const char *index_file,
> const char *prefix)
>
>  	if (fwrite(sb.buf, 1, sb.len, fp) < sb.len)
>  		die_errno("could not write commit template");
> -
>  	strbuf_release(&sb);
>
>  	determine_author_info();

Ditto.

> @@ -1018,8 +1017,10 @@ int cmd_commit(int argc, const char **argv, const
> char *prefix)
>
>  	if (commit_index_files())
>  		die ("Repository has been updated, but unable to write\n"
> -		     "new_index file. Check that disk is not full or quota is\n"
> -		     "not exceeded, and then \"git reset HEAD\" to recover.");
> +		     "new_index file: %s.\n"
> +		     "Check that disk is not full or quota is not exceeded,\n"
> +		     "and then \"git reset HEAD\" to recover.",
> +		     strerror(errno));

This change should probably not be in this patch.

> @@ -452,7 +452,6 @@ static void import_marks(char *input_file)
>  	FILE *f = fopen(input_file, "r");
>  	if (!f)
>  		die_errno("cannot read '%s'", input_file);
> -
>  	while (fgets(line, sizeof(line), f)) {
>  		uint32_t mark;
>  		char *line_end, *mark_end;

Unrelated.

> diff --git a/csum-file.c b/csum-file.c
> index 9cc93ba..4d50cc5 100644
> --- a/csum-file.c
> +++ b/csum-file.c
> @@ -55,8 +55,7 @@ int sha1close(struct sha1file *f, unsigned char *result,
> unsigned int flags) if (flags & CSUM_FSYNC)
>  			fsync_or_die(f->fd, f->name);
>  		if (close(f->fd))
> -			die_errno("%s: sha1 file error on close",
> -			    f->name);
> +			die_errno("%s: sha1 file error on close", f->name);

This should be in 2/3.

-- Hannes

  reply	other threads:[~2009-06-06 21:02 UTC|newest]

Thread overview: 42+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-06-02 21:34 [PATCH] add strerror(errno) to die() calls where applicable Thomas Rast
2009-06-03  1:55 ` Jeff King
     [not found]   ` <2325a7950906031855t1977448lbb1c8aa671c72f3d@mail.gmail.com>
2009-06-04  1:58     ` Alexander Potashev
2009-06-04 20:32       ` Jeff King
2009-06-04  2:05   ` [PATCH] diesys calls die and also reports strerror(errno) Alexander Potashev
2009-06-04 20:50     ` Jeff King
2009-06-04 21:13       ` Junio C Hamano
2009-06-05  6:25       ` Johannes Sixt
2009-06-05  7:12         ` Junio C Hamano
2009-06-06 22:09           ` Jeff King
2009-06-06 13:09   ` [PATCH] add strerror(errno) to die() calls where applicable Thomas Rast
2009-06-06 14:44     ` [PATCH v2 0/3] Thomas Rast <trast@student.ethz.ch> Thomas Rast
2009-06-08 21:02       ` [PATCH v3 0/3] die_errno() Thomas Rast
2009-06-27 15:58         ` [PATCH v4 0/4] die_errno() Thomas Rast
2009-06-27 15:58           ` [PATCH v4 1/4] Introduce die_errno() that appends strerror(errno) to die() Thomas Rast
2009-06-27 15:58           ` [PATCH v4 2/4] die_errno(): double % in strerror() output just in case Thomas Rast
2009-06-27 15:58           ` [PATCH v4 3/4] Convert existing die(..., strerror(errno)) to die_errno() Thomas Rast
2009-06-27 15:58           ` [PATCH v4 4/4] Use die_errno() instead of die() when checking syscalls Thomas Rast
2009-06-27 18:38           ` [PATCH v4 0/4] die_errno() Junio C Hamano
2009-06-08 21:02       ` [PATCH v3 1/3] Introduce die_errno() that appends strerror(errno) to die() Thomas Rast
2009-06-08 22:07         ` Jeff King
2009-06-09  8:22           ` Thomas Rast
2009-06-09  8:53             ` Jeff King
2009-06-09  9:29               ` Andreas Ericsson
2009-06-08 21:02       ` [PATCH v3 2/3] Convert existing die(..., strerror(errno)) to die_errno() Thomas Rast
2009-06-08 21:02       ` [PATCH v3 3/3] Use die_errno() instead of die() when checking syscalls Thomas Rast
2009-06-06 14:44     ` [PATCH v2 1/3] Introduce die_errno() that appends strerror(errno) to die() Thomas Rast
2009-06-06 20:36       ` Johannes Sixt
2009-06-06 20:56         ` Thomas Rast
2009-06-06 21:17           ` Johannes Sixt
2009-06-06 22:47           ` Jeff King
2009-06-06 22:13       ` Jeff King
2009-06-07 11:12         ` Alexander Potashev
2009-06-07 16:57           ` Junio C Hamano
2009-06-08 12:36             ` Jeff King
2009-06-08 15:35               ` Alexander Potashev
2009-06-08 22:04                 ` Jeff King
2009-06-06 14:44     ` [PATCH v2 2/3] Convert existing die(..., strerror(errno)) to die_errno() Thomas Rast
2009-06-06 20:31       ` Johannes Sixt
2009-06-06 14:44     ` [PATCH v2 3/3] Use die_errno() instead of die() when checking syscalls Thomas Rast
2009-06-06 21:02       ` Johannes Sixt [this message]
2009-06-06 22:27         ` Thomas Rast

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

  List information: http://vger.kernel.org/majordomo-info.html

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

  git send-email \
    --in-reply-to=200906062302.08616.j6t@kdbg.org \
    --to=j6t@kdbg.org \
    --cc=aspotashev@gmail.com \
    --cc=git@vger.kernel.org \
    --cc=gitster@pobox.com \
    --cc=peff@peff.net \
    --cc=trast@student.ethz.ch \
    /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.
Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

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).