diff options
author | Guoqing Jiang <guoqing.jiang@cloud.ionos.com> | 2020-07-28 13:01:41 +0300 |
---|---|---|
committer | Song Liu <songliubraving@fb.com> | 2020-08-03 09:03:51 +0300 |
commit | b3db8a216393cc228ab4add580f488da55177b66 (patch) | |
tree | ab1151cb6e66894109944698a7737ad5062c2402 /drivers/md/md.c | |
parent | e3914d596f79742ce3038ffdf66e4fa585ad7cd5 (diff) | |
download | linux-b3db8a216393cc228ab4add580f488da55177b66.tar.xz |
md: print errno in super_written
It is better to print errno instead of bi_status.
Signed-off-by: Guoqing Jiang <guoqing.jiang@cloud.ionos.com>
Signed-off-by: Song Liu <songliubraving@fb.com>
Diffstat (limited to 'drivers/md/md.c')
-rw-r--r-- | drivers/md/md.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/md/md.c b/drivers/md/md.c index 5116d29b74e1..9c69084cae73 100644 --- a/drivers/md/md.c +++ b/drivers/md/md.c @@ -978,7 +978,8 @@ static void super_written(struct bio *bio) struct mddev *mddev = rdev->mddev; if (bio->bi_status) { - pr_err("md: super_written gets error=%d\n", bio->bi_status); + pr_err("md: %s gets error=%d\n", __func__, + blk_status_to_errno(bio->bi_status)); md_error(mddev, rdev); if (!test_bit(Faulty, &rdev->flags) && (bio->bi_opf & MD_FAILFAST)) { |