From: Josef Bacik <jbacik@fb.com>
To: <linux-btrfs@vger.kernel.org>
Subject: Re: [PATCH] Btrfs-progs: bail if we find errors in the extent tree
Date: Tue, 7 Jan 2014 16:07:23 -0500 [thread overview]
Message-ID: <52CC6C8B.1080503@fb.com> (raw)
In-Reply-To: <1389126861-31257-1-git-send-email-jbacik@fb.com>
On 01/07/2014 03:34 PM, Josef Bacik wrote:
> For some reason we weren't exiting if there were errors in the extent tree,
> which means we could have errors in just the extent tree and things like
> xfstests would keep going because we completely throw away the return value.
> Thanks,
>
> Signed-off-by: Josef Bacik <jbacik@fb.com>
> ---
> cmds-check.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/cmds-check.c b/cmds-check.c
> index 689fe6c..cbabfdc 100644
> --- a/cmds-check.c
> +++ b/cmds-check.c
> @@ -6409,8 +6409,10 @@ int cmd_check(int argc, char **argv)
> goto out;
> }
> ret = check_chunks_and_extents(root);
> - if (ret)
> + if (ret) {
> fprintf(stderr, "Errors found in extent allocation tree or chunk allocation\n");
> + goto out;
> + }
>
> fprintf(stderr, "checking free space cache\n");
> ret = check_space_cache(root);
Sigh ignore this, it is causing other problems, I'm going to have to
figure out a better solution to this. Thanks,
Josef
prev parent reply other threads:[~2014-01-07 21:07 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-01-07 20:34 [PATCH] Btrfs-progs: bail if we find errors in the extent tree Josef Bacik
2014-01-07 21:07 ` Josef Bacik [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=52CC6C8B.1080503@fb.com \
--to=jbacik@fb.com \
--cc=linux-btrfs@vger.kernel.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.