From: Anand Jain <anand.jain@oracle.com>
To: Zhaolei <zhaolei@cn.fujitsu.com>, linux-btrfs@vger.kernel.org
Subject: Re: [PATCH] btrfs: Show detail information when mount failed on missing devices
Date: Fri, 17 Jul 2015 18:32:58 +0800 [thread overview]
Message-ID: <55A8D9DA.7000509@oracle.com> (raw)
In-Reply-To: <258b89aa6a4d0f3a46f205931a62ebb2d5656309.1437036246.git.zhaolei@cn.fujitsu.com>
On 07/16/2015 04:44 PM, Zhaolei wrote:
> From: Zhao Lei <zhaolei@cn.fujitsu.com>
>
> When mount failed because missing device, we can see following
> dmesg:
> [ 1060.267743] BTRFS: too many missing devices, writeable mount is not allowed
> [ 1060.273158] BTRFS: open_ctree failed
>
> This patch add missing_device_number and tolerated_missing_device_number
> to above output, to let user know what really happened, and helps
> bug-report and debug.
yes.
> dmesg after patch:
> [ 127.912406] BTRFS: too many missing devices(1 > 0), writeable mount is not allowed
> [ 127.918128] BTRFS: open_ctree failed
it better to change the whole message just (1 > 0) is not more
informative unless src code is looked into.
something like
missing devices 1 max missing 0, writable mount is not allowed.
Thanks, Anand
> Signed-off-by: Zhao Lei <zhaolei@cn.fujitsu.com>
> ---
> fs/btrfs/disk-io.c | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c
> index 2eda03b..b6600c7 100644
> --- a/fs/btrfs/disk-io.c
> +++ b/fs/btrfs/disk-io.c
> @@ -2950,8 +2950,9 @@ retry_root_backup:
> if (fs_info->fs_devices->missing_devices >
> fs_info->num_tolerated_disk_barrier_failures &&
> !(sb->s_flags & MS_RDONLY)) {
> - printk(KERN_WARNING "BTRFS: "
> - "too many missing devices, writeable mount is not allowed\n");
> + pr_warn("BTRFS: too many missing devices(%llu > %d), writeable mount is not allowed\n",
> + fs_info->fs_devices->missing_devices,
> + fs_info->num_tolerated_disk_barrier_failures);
> goto fail_sysfs;
> }
>
>
next prev parent reply other threads:[~2015-07-17 10:33 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-07-16 8:44 [PATCH] btrfs: Show detail information when mount failed on missing devices Zhaolei
2015-07-17 10:32 ` Anand Jain [this message]
-- strict thread matches above, loose matches on Subject: below --
2015-07-20 9:54 Zhaolei
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=55A8D9DA.7000509@oracle.com \
--to=anand.jain@oracle.com \
--cc=linux-btrfs@vger.kernel.org \
--cc=zhaolei@cn.fujitsu.com \
/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.