All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] xfs/083: disable dmesg check
@ 2016-07-12  5:41 Xiao Yang
  2016-07-13  4:25 ` Eryu Guan
  0 siblings, 1 reply; 10+ messages in thread
From: Xiao Yang @ 2016-07-12  5:41 UTC (permalink / raw)
  To: fstests; +Cc: Xiao Yang

xfs/083 will corrupt the fs intentionally, there will be WARNINGs
in dmesg as expected, so here disable dmesg check.

Signed-off-by: Xiao Yang <yangx.jy@cn.fujitsu.com>
---
 tests/xfs/083 | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/tests/xfs/083 b/tests/xfs/083
index d897754..040f3b6 100755
--- a/tests/xfs/083
+++ b/tests/xfs/083
@@ -102,6 +102,10 @@ scratch_repair() {
 }
 
 rm -f $seqres.full
+# This test will corrupt fs intentionally, so there will be WARNINGs
+# in dmesg as expected
+_disable_dmesg_check
+
 echo "See interesting results in $seqres.full" | sed -e "s,$RESULT_DIR,RESULT_DIR,g"
 SRCDIR=`pwd`
 test -z "${FUZZ_ARGS}" && FUZZ_ARGS="-3 -n 32"
-- 
1.8.3.1




^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [PATCH] xfs/083: disable dmesg check
  2016-07-12  5:41 [PATCH] xfs/083: disable dmesg check Xiao Yang
@ 2016-07-13  4:25 ` Eryu Guan
  2016-07-13  5:11   ` Darrick J. Wong
  2016-07-19  2:45   ` Darrick J. Wong
  0 siblings, 2 replies; 10+ messages in thread
From: Eryu Guan @ 2016-07-13  4:25 UTC (permalink / raw)
  To: Xiao Yang; +Cc: fstests, darrick.wong

On Tue, Jul 12, 2016 at 01:41:44PM +0800, Xiao Yang wrote:
> xfs/083 will corrupt the fs intentionally, there will be WARNINGs
> in dmesg as expected, so here disable dmesg check.
> 
> Signed-off-by: Xiao Yang <yangx.jy@cn.fujitsu.com>
> ---
>  tests/xfs/083 | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/tests/xfs/083 b/tests/xfs/083
> index d897754..040f3b6 100755
> --- a/tests/xfs/083
> +++ b/tests/xfs/083
> @@ -102,6 +102,10 @@ scratch_repair() {
>  }
>  
>  rm -f $seqres.full
> +# This test will corrupt fs intentionally, so there will be WARNINGs
> +# in dmesg as expected
> +_disable_dmesg_check
> +

This looks fine to me, but I'd like Darrick to review it as well :)

Thanks,
Eryu

>  echo "See interesting results in $seqres.full" | sed -e "s,$RESULT_DIR,RESULT_DIR,g"
>  SRCDIR=`pwd`
>  test -z "${FUZZ_ARGS}" && FUZZ_ARGS="-3 -n 32"
> -- 
> 1.8.3.1
> 
> 
> 
> --
> To unsubscribe from this list: send the line "unsubscribe fstests" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] xfs/083: disable dmesg check
  2016-07-13  4:25 ` Eryu Guan
@ 2016-07-13  5:11   ` Darrick J. Wong
  2016-07-13  8:02     ` Xiao Yang
                       ` (2 more replies)
  2016-07-19  2:45   ` Darrick J. Wong
  1 sibling, 3 replies; 10+ messages in thread
From: Darrick J. Wong @ 2016-07-13  5:11 UTC (permalink / raw)
  To: Eryu Guan; +Cc: Xiao Yang, fstests

On Wed, Jul 13, 2016 at 12:25:55PM +0800, Eryu Guan wrote:
> On Tue, Jul 12, 2016 at 01:41:44PM +0800, Xiao Yang wrote:
> > xfs/083 will corrupt the fs intentionally, there will be WARNINGs
> > in dmesg as expected, so here disable dmesg check.
> > 
> > Signed-off-by: Xiao Yang <yangx.jy@cn.fujitsu.com>
> > ---
> >  tests/xfs/083 | 4 ++++
> >  1 file changed, 4 insertions(+)
> > 
> > diff --git a/tests/xfs/083 b/tests/xfs/083
> > index d897754..040f3b6 100755
> > --- a/tests/xfs/083
> > +++ b/tests/xfs/083
> > @@ -102,6 +102,10 @@ scratch_repair() {
> >  }
> >  
> >  rm -f $seqres.full
> > +# This test will corrupt fs intentionally, so there will be WARNINGs
> > +# in dmesg as expected
> > +_disable_dmesg_check
> > +
> 
> This looks fine to me, but I'd like Darrick to review it as well :)

I really want to know which WARN_ON they're hitting -- if the FS is
corrupt, XFS should be returning -EFSCORRUPTED, which doesn't trigger
warnings.

(I suspect it's the warning that gets printed when corrupt inodes are
found...)

--D

> 
> Thanks,
> Eryu
> 
> >  echo "See interesting results in $seqres.full" | sed -e "s,$RESULT_DIR,RESULT_DIR,g"
> >  SRCDIR=`pwd`
> >  test -z "${FUZZ_ARGS}" && FUZZ_ARGS="-3 -n 32"
> > -- 
> > 1.8.3.1
> > 
> > 
> > 
> > --
> > To unsubscribe from this list: send the line "unsubscribe fstests" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] xfs/083: disable dmesg check
  2016-07-13  5:11   ` Darrick J. Wong
@ 2016-07-13  8:02     ` Xiao Yang
  2016-07-14  0:57     ` Xiao Yang
  2016-07-14  7:16     ` Guangwen Feng
  2 siblings, 0 replies; 10+ messages in thread
From: Xiao Yang @ 2016-07-13  8:02 UTC (permalink / raw)
  To: Darrick J. Wong; +Cc: Eryu Guan, fstests

[-- Attachment #1: Type: text/plain, Size: 1666 bytes --]

on 2016/07/13 13:11, Darrick J. Wong wrote:
> On Wed, Jul 13, 2016 at 12:25:55PM +0800, Eryu Guan wrote:
>> On Tue, Jul 12, 2016 at 01:41:44PM +0800, Xiao Yang wrote:
>>> xfs/083 will corrupt the fs intentionally, there will be WARNINGs
>>> in dmesg as expected, so here disable dmesg check.
>>>
>>> Signed-off-by: Xiao Yang<yangx.jy@cn.fujitsu.com>
>>> ---
>>>   tests/xfs/083 | 4 ++++
>>>   1 file changed, 4 insertions(+)
>>>
>>> diff --git a/tests/xfs/083 b/tests/xfs/083
>>> index d897754..040f3b6 100755
>>> --- a/tests/xfs/083
>>> +++ b/tests/xfs/083
>>> @@ -102,6 +102,10 @@ scratch_repair() {
>>>   }
>>>
>>>   rm -f $seqres.full
>>> +# This test will corrupt fs intentionally, so there will be WARNINGs
>>> +# in dmesg as expected
>>> +_disable_dmesg_check
>>> +
>> This looks fine to me, but I'd like Darrick to review it as well :)
> I really want to know which WARN_ON they're hitting -- if the FS is
> corrupt, XFS should be returning -EFSCORRUPTED, which doesn't trigger
> warnings.
>
> (I suspect it's the warning that gets printed when corrupt inodes are
> found...)
>
> --D
>
Hi Darrick,

We run xfs/083 in kernel v4.7-rc7-92d21ac and get the dmesg,
please have a look at the attachment, thanks.

Regards,
Xiao Yang

>> Thanks,
>> Eryu
>>
>>>   echo "See interesting results in $seqres.full" | sed -e "s,$RESULT_DIR,RESULT_DIR,g"
>>>   SRCDIR=`pwd`
>>>   test -z "${FUZZ_ARGS}"&&  FUZZ_ARGS="-3 -n 32"
>>> -- 
>>> 1.8.3.1
>>>
>>>
>>>
>>> --
>>> To unsubscribe from this list: send the line "unsubscribe fstests" in
>>> the body of a message to majordomo@vger.kernel.org
>>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>
>




[-- Attachment #2: 083.dmesg --]
[-- Type: text/plain, Size: 295434 bytes --]

[  360.431939] run fstests xfs/083 at 2016-07-13 15:38:08
[  360.641997] XFS (sdc): Unmounting Filesystem
[  360.909068] XFS (sdc): Mounting V4 Filesystem
[  360.918640] XFS (sdc): Ending clean mount
[  436.259805] XFS (sdc): Unmounting Filesystem
[  436.428374] XFS (sdc): Mounting V4 Filesystem
[  436.438448] XFS (sdc): Ending clean mount
[  436.475976] XFS (sdc): Unmounting Filesystem
[  437.460361] XFS (sdc): Mounting V4 Filesystem
[  437.469513] XFS (sdc): Ending clean mount
[  437.523580] XFS (sdc): Internal error XFS_WANT_CORRUPTED_RETURN at line 169 of file fs/xfs/libxfs/xfs_dir2_data.c.  Caller xfs_dir3_data_verify+0x8f/0xa0 [xfs]
[  437.525385] CPU: 0 PID: 53 Comm: kworker/0:1 Not tainted 4.7.0-rc7 #10
[  437.525387] Hardware name: Bochs Bochs, BIOS Bochs 01/01/2011
[  437.525414] Workqueue: xfs-buf/sdc xfs_buf_ioend_work [xfs]
[  437.525416]  0000000000000286 000000008fe89895 ffff88007c047cb0 ffffffff8134128f
[  437.525418]  ffffffffa026ada0 ffff88007937a000 ffff88007c047cc8 ffffffffa02325eb
[  437.525419]  ffffffffa021532f ffff88007c047d50 ffffffffa02150b2 ffff88007937a010
[  437.525421] Call Trace:
[  437.525425]  [<ffffffff8134128f>] dump_stack+0x63/0x84
[  437.525437]  [<ffffffffa02325eb>] xfs_error_report+0x3b/0x40 [xfs]
[  437.525447]  [<ffffffffa021532f>] ? xfs_dir3_data_verify+0x8f/0xa0 [xfs]
[  437.525459]  [<ffffffffa02150b2>] __xfs_dir3_data_check+0x372/0x560 [xfs]
[  437.525468]  [<ffffffffa021532f>] xfs_dir3_data_verify+0x8f/0xa0 [xfs]
[  437.525476]  [<ffffffffa0215484>] xfs_dir3_data_read_verify+0x44/0x100 [xfs]
[  437.525480]  [<ffffffff8102c6d9>] ? __switch_to+0x219/0x5c0
[  437.525497]  [<ffffffffa02155b6>] xfs_dir3_data_reada_verify+0x76/0x80 [xfs]
[  437.525508]  [<ffffffffa022fb19>] xfs_buf_ioend+0x79/0x1d0 [xfs]
[  437.525518]  [<ffffffffa022fc85>] xfs_buf_ioend_work+0x15/0x20 [xfs]
[  437.525520]  [<ffffffff810a1e32>] process_one_work+0x152/0x400
[  437.525522]  [<ffffffff810a2725>] worker_thread+0x125/0x4b0
[  437.525523]  [<ffffffff810a2600>] ? rescuer_thread+0x380/0x380
[  437.525524]  [<ffffffff810a82a8>] kthread+0xd8/0xf0
[  437.525527]  [<ffffffff816b72ff>] ret_from_fork+0x1f/0x40
[  437.525528]  [<ffffffff810a81d0>] ? kthread_park+0x60/0x60
[  437.525572] XFS (sdc): Metadata corruption detected at xfs_dir3_data_read_verify+0x5e/0x100 [xfs], xfs_dir3_data block 0x1e00af0
[  437.526937] XFS (sdc): Unmount and run xfs_repair
[  437.527528] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.528303] ffff88007937a000: 58 44 32 44 00 28 00 18 00 58 00 18 00 88 00 18  XD2D.(...X......
[  437.529215] ffff88007937a010: 00 00 00 00 06 00 15 a0 08 30 30 30 31 31 38 39  .........0001189
[  437.530154] ffff88007937a020: 38 00 00 00 00 00 00 10 ff ff 00 18 00 00 2c c5  8.............,.
[  437.531127] ffff88007937a030: 08 30 30 30 31 31 38 39 39 00 00 00 00 00 00 28  .00011899......(
[  437.533075] XFS (sdc): Internal error XFS_WANT_CORRUPTED_RETURN at line 169 of file fs/xfs/libxfs/xfs_dir2_data.c.  Caller xfs_dir3_data_verify+0x8f/0xa0 [xfs]
[  437.534746] CPU: 0 PID: 53 Comm: kworker/0:1 Not tainted 4.7.0-rc7 #10
[  437.534748] Hardware name: Bochs Bochs, BIOS Bochs 01/01/2011
[  437.534778] Workqueue: xfs-buf/sdc xfs_buf_ioend_work [xfs]
[  437.534781]  0000000000000286 000000008fe89895 ffff88007c047cc8 ffffffff8134128f
[  437.534782]  ffffffffa026ada0 ffff88007937a000 ffff88007c047ce0 ffffffffa02325eb
[  437.534784]  ffffffffa021532f ffff88007c047d68 ffffffffa02150b2 ffff88007937a010
[  437.534786] Call Trace:
[  437.534790]  [<ffffffff8134128f>] dump_stack+0x63/0x84
[  437.534803]  [<ffffffffa02325eb>] xfs_error_report+0x3b/0x40 [xfs]
[  437.534812]  [<ffffffffa021532f>] ? xfs_dir3_data_verify+0x8f/0xa0 [xfs]
[  437.534822]  [<ffffffffa02150b2>] __xfs_dir3_data_check+0x372/0x560 [xfs]
[  437.534825]  [<ffffffff810bde73>] ? set_next_entity+0x73/0x790
[  437.534826]  [<ffffffff810bf9f5>] ? put_prev_entity+0x35/0x6f0
[  437.534835]  [<ffffffffa021532f>] xfs_dir3_data_verify+0x8f/0xa0 [xfs]
[  437.534844]  [<ffffffffa0215484>] xfs_dir3_data_read_verify+0x44/0x100 [xfs]
[  437.534855]  [<ffffffffa022fb19>] xfs_buf_ioend+0x79/0x1d0 [xfs]
[  437.534864]  [<ffffffffa022fc85>] xfs_buf_ioend_work+0x15/0x20 [xfs]
[  437.534867]  [<ffffffff810a1e32>] process_one_work+0x152/0x400
[  437.534873]  [<ffffffff810a2725>] worker_thread+0x125/0x4b0
[  437.534875]  [<ffffffff810a2600>] ? rescuer_thread+0x380/0x380
[  437.534876]  [<ffffffff810a82a8>] kthread+0xd8/0xf0
[  437.534879]  [<ffffffff816b72ff>] ret_from_fork+0x1f/0x40
[  437.534880]  [<ffffffff810a81d0>] ? kthread_park+0x60/0x60
[  437.534898] XFS (sdc): Metadata corruption detected at xfs_dir3_data_read_verify+0x5e/0x100 [xfs], xfs_dir3_data block 0x1e00af0
[  437.536301] XFS (sdc): Unmount and run xfs_repair
[  437.536909] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.537615] ffff88007937a000: 58 44 32 44 00 28 00 18 00 58 00 18 00 88 00 18  XD2D.(...X......
[  437.538535] ffff88007937a010: 00 00 00 00 06 00 15 a0 08 30 30 30 31 31 38 39  .........0001189
[  437.539582] ffff88007937a020: 38 00 00 00 00 00 00 10 ff ff 00 18 00 00 2c c5  8.............,.
[  437.540509] ffff88007937a030: 08 30 30 30 31 31 38 39 39 00 00 00 00 00 00 28  .00011899......(
[  437.545106] XFS (sdc): metadata I/O error: block 0x1e00af0 ("xfs_trans_read_buf_map") error 117 numblks 8
[  437.548463] XFS (sdc): Internal error XFS_WANT_CORRUPTED_RETURN at line 169 of file fs/xfs/libxfs/xfs_dir2_data.c.  Caller xfs_dir3_data_verify+0x8f/0xa0 [xfs]
[  437.550361] CPU: 1 PID: 277 Comm: kworker/1:2 Not tainted 4.7.0-rc7 #10
[  437.550362] Hardware name: Bochs Bochs, BIOS Bochs 01/01/2011
[  437.550392] Workqueue: xfs-buf/sdc xfs_buf_ioend_work [xfs]
[  437.550395]  0000000000000286 00000000abdde129 ffff880034b67cc8 ffffffff8134128f
[  437.550396]  ffffffffa026ada0 ffff88007937a000 ffff880034b67ce0 ffffffffa02325eb
[  437.550398]  ffffffffa021532f ffff880034b67d68 ffffffffa02150b2 ffff88007937a010
[  437.550399] Call Trace:
[  437.550405]  [<ffffffff8134128f>] dump_stack+0x63/0x84
[  437.550417]  [<ffffffffa02325eb>] xfs_error_report+0x3b/0x40 [xfs]
[  437.550428]  [<ffffffffa021532f>] ? xfs_dir3_data_verify+0x8f/0xa0 [xfs]
[  437.550438]  [<ffffffffa02150b2>] __xfs_dir3_data_check+0x372/0x560 [xfs]
[  437.550440]  [<ffffffff810bde73>] ? set_next_entity+0x73/0x790
[  437.550441]  [<ffffffff810bf9f5>] ? put_prev_entity+0x35/0x6f0
[  437.550450]  [<ffffffffa021532f>] xfs_dir3_data_verify+0x8f/0xa0 [xfs]
[  437.550459]  [<ffffffffa0215484>] xfs_dir3_data_read_verify+0x44/0x100 [xfs]
[  437.550470]  [<ffffffffa022fb19>] xfs_buf_ioend+0x79/0x1d0 [xfs]
[  437.550480]  [<ffffffffa022fc85>] xfs_buf_ioend_work+0x15/0x20 [xfs]
[  437.550482]  [<ffffffff810a1e32>] process_one_work+0x152/0x400
[  437.550483]  [<ffffffff810a2725>] worker_thread+0x125/0x4b0
[  437.550486]  [<ffffffff816b6c45>] ? _raw_spin_unlock_irqrestore+0x15/0x20
[  437.550488]  [<ffffffff810a2600>] ? rescuer_thread+0x380/0x380
[  437.550489]  [<ffffffff810a82a8>] kthread+0xd8/0xf0
[  437.550491]  [<ffffffff816b72ff>] ret_from_fork+0x1f/0x40
[  437.550492]  [<ffffffff810a81d0>] ? kthread_park+0x60/0x60
[  437.550503] XFS (sdc): Metadata corruption detected at xfs_dir3_data_read_verify+0x5e/0x100 [xfs], xfs_dir3_data block 0x1e00af0
[  437.552398] XFS (sdc): Unmount and run xfs_repair
[  437.553284] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.554260] ffff88007937a000: 58 44 32 44 00 28 00 18 00 58 00 18 00 88 00 18  XD2D.(...X......
[  437.555363] ffff88007937a010: 00 00 00 00 06 00 15 a0 08 30 30 30 31 31 38 39  .........0001189
[  437.556494] ffff88007937a020: 38 00 00 00 00 00 00 10 ff ff 00 18 00 00 2c c5  8.............,.
[  437.557602] ffff88007937a030: 08 30 30 30 31 31 38 39 39 00 00 00 00 00 00 28  .00011899......(
[  437.559610] XFS (sdc): metadata I/O error: block 0x1e00af0 ("xfs_trans_read_buf_map") error 117 numblks 8
[  437.576737] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.578276] XFS (sdc): Unmount and run xfs_repair
[  437.579205] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.580177] ffff88007925e000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.582150] ffff88007925e010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.583435] ffff88007925e020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.584955] ffff88007925e030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.588411] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.590038] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.591110] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.592549] XFS (sdc): Unmount and run xfs_repair
[  437.593425] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.594356] ffff880077fdf000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.595389] ffff880077fdf010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.596465] ffff880077fdf020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.597526] ffff880077fdf030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.600702] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.602312] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.602833] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.604324] XFS (sdc): Unmount and run xfs_repair
[  437.605075] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.605891] ffff88007925e000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.606921] ffff88007925e010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.607981] ffff88007925e020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.609033] ffff88007925e030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.611120] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.619232] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.619820] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.621318] XFS (sdc): Unmount and run xfs_repair
[  437.622644] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.623720] ffff880077fdf000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.624779] ffff880077fdf010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.625746] ffff880077fdf020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.626736] ffff880077fdf030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.628830] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.630421] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.631937] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.633508] XFS (sdc): Unmount and run xfs_repair
[  437.634433] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.635433] ffff88007925e000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.640721] ffff88007925e010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.641866] ffff88007925e020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.644061] ffff88007925e030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.648219] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.650210] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.652216] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.654010] XFS (sdc): Unmount and run xfs_repair
[  437.655167] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.656070] ffff880077fdf000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.657405] ffff880077fdf010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.660653] ffff880077fdf020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.665640] ffff880077fdf030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.667589] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.680518] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.681279] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.683378] XFS (sdc): Unmount and run xfs_repair
[  437.684701] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.685629] ffff88007925e000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.686634] ffff88007925e010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.687849] ffff88007925e020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.689041] ffff88007925e030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.691120] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.692376] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.695004] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.696358] XFS (sdc): Unmount and run xfs_repair
[  437.697628] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.698726] ffff880077fdf000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.700538] ffff880077fdf010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.703716] ffff880077fdf020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.706288] ffff880077fdf030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.711812] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.713148] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.713583] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.714819] XFS (sdc): Unmount and run xfs_repair
[  437.715516] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.716339] ffff88007925e000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.717339] ffff88007925e010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.718371] ffff88007925e020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.719799] ffff88007925e030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.722072] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.723909] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.727317] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.728761] XFS (sdc): Unmount and run xfs_repair
[  437.729589] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.730399] ffff880077e0e000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.731311] ffff880077e0e010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.732231] ffff880077e0e020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.733335] ffff880077e0e030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.735300] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.738175] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.738542] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.739955] XFS (sdc): Unmount and run xfs_repair
[  437.740722] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.741613] ffff8800782e3000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.742739] ffff8800782e3010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.743728] ffff8800782e3020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.744839] ffff8800782e3030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.746278] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.747379] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.752150] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.754353] XFS (sdc): Unmount and run xfs_repair
[  437.755239] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.756640] ffff880077e0e000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.757860] ffff880077e0e010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.760112] ffff880077e0e020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.762355] ffff880077e0e030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.763533] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.764854] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.768492] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.769917] XFS (sdc): Unmount and run xfs_repair
[  437.770744] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.771665] ffff8800782e3000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.772756] ffff8800782e3010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.773848] ffff8800782e3020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.774950] ffff8800782e3030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.776704] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.780306] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.780765] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.782823] XFS (sdc): Unmount and run xfs_repair
[  437.783690] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.784568] ffff880077e0e000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.785585] ffff880077e0e010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.788946] ffff880077e0e020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.790196] ffff880077e0e030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.791456] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.793107] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.793689] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.795920] XFS (sdc): Unmount and run xfs_repair
[  437.796932] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.797993] ffff8800782e3000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.799235] ffff8800782e3010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.800590] ffff8800782e3020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.801951] ffff8800782e3030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.803136] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.806702] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.807287] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.808610] XFS (sdc): Unmount and run xfs_repair
[  437.811340] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.813594] ffff880077e0e000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.814923] ffff880077e0e010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.816009] ffff880077e0e020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.817234] ffff880077e0e030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.819164] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.823647] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.826678] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.840962] XFS (sdc): Unmount and run xfs_repair
[  437.843744] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.846220] ffff8800782e3000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.848532] ffff8800782e3010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.850988] ffff8800782e3020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.852199] ffff8800782e3030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.853570] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.854866] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.857787] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.859337] XFS (sdc): Unmount and run xfs_repair
[  437.860326] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.862481] ffff880077e0e000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.863643] ffff880077e0e010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.865099] ffff880077e0e020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.866219] ffff880077e0e030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.867990] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.869398] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.870034] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.872221] XFS (sdc): Unmount and run xfs_repair
[  437.873904] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.875390] ffff8800782e3000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.876793] ffff8800782e3010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.877994] ffff8800782e3020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.879006] ffff8800782e3030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.885767] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.887021] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.887683] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.889221] XFS (sdc): Unmount and run xfs_repair
[  437.890057] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.890913] ffff880076a47000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.891968] ffff880076a47010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.893049] ffff880076a47020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.894316] ffff880076a47030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.896673] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.897924] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.899731] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.901071] XFS (sdc): Unmount and run xfs_repair
[  437.902144] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.903144] ffff88007a641000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.904432] ffff88007a641010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.905702] ffff88007a641020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.906844] ffff88007a641030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.909081] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.910303] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.911627] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.913034] XFS (sdc): Unmount and run xfs_repair
[  437.913851] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.914753] ffff880076a47000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.921521] ffff880076a47010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.922804] ffff880076a47020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.923861] ffff880076a47030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.924861] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.925872] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.928032] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.929423] XFS (sdc): Unmount and run xfs_repair
[  437.930248] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.934011] ffff88007a641000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.935445] ffff88007a641010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.936768] ffff88007a641020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.937801] ffff88007a641030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.938966] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.940619] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.941198] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.942534] XFS (sdc): Unmount and run xfs_repair
[  437.943416] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.944401] ffff880076a47000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.945627] ffff880076a47010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.946702] ffff880076a47020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.947782] ffff880076a47030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.950623] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.953755] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.956002] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.957313] XFS (sdc): Unmount and run xfs_repair
[  437.958106] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.958933] ffff88007a641000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.960043] ffff88007a641010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.961054] ffff88007a641020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.965754] ffff88007a641030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.969852] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.972197] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.972568] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.973845] XFS (sdc): Unmount and run xfs_repair
[  437.974619] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.975509] ffff880076a47000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.976566] ffff880076a47010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.978818] ffff880076a47020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.980275] ffff880076a47030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.983028] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.984269] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.984642] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.987626] XFS (sdc): Unmount and run xfs_repair
[  437.988601] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.989384] ffff88007a641000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.990424] ffff88007a641010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.991739] ffff88007a641020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.993674] ffff88007a641030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.996062] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.997599] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.001402] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.002837] XFS (sdc): Unmount and run xfs_repair
[  438.003712] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.004639] ffff880076a47000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.005770] ffff880076a47010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.007458] ffff880076a47020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.008601] ffff880076a47030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.009833] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.011034] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.012064] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.013269] XFS (sdc): Unmount and run xfs_repair
[  438.013932] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.014656] ffff88007a641000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.015623] ffff88007a641010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.016635] ffff88007a641020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.017588] ffff88007a641030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.019330] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.022286] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.025676] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.027061] XFS (sdc): Unmount and run xfs_repair
[  438.027834] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.030016] ffff880076a47000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.036039] ffff880076a47010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.037632] ffff880076a47020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.039452] ffff880076a47030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.041366] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.042991] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.043589] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.045254] XFS (sdc): Unmount and run xfs_repair
[  438.045985] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.047038] ffff88007a641000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.048069] ffff88007a641010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.049075] ffff88007a641020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.050104] ffff88007a641030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.051636] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.057271] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.057902] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.059410] XFS (sdc): Unmount and run xfs_repair
[  438.060277] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.061122] ffff88007905c000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.062834] ffff88007905c010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.065853] ffff88007905c020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.067503] ffff88007905c030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.069290] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.070837] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.071189] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.072510] XFS (sdc): Unmount and run xfs_repair
[  438.073163] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.073932] ffff88007905d000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.074910] ffff88007905d010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.076114] ffff88007905d020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.077161] ffff88007905d030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.078480] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.079716] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.082734] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.085506] XFS (sdc): Unmount and run xfs_repair
[  438.088313] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.089738] ffff880077c14000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.091798] ffff880077c14010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.093121] ffff880077c14020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.094637] ffff880077c14030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.096212] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.097469] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.098222] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.099819] XFS (sdc): Unmount and run xfs_repair
[  438.100638] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.101679] ffff880077c15000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.103612] ffff880077c15010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.109546] ffff880077c15020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.110819] ffff880077c15030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.111860] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.119568] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.121244] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.123003] XFS (sdc): Unmount and run xfs_repair
[  438.123953] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.124831] ffff880077c14000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.126172] ffff880077c14010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.127881] ffff880077c14020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.129427] ffff880077c14030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.131259] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.132964] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.133807] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.135289] XFS (sdc): Unmount and run xfs_repair
[  438.136081] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.137004] ffff880077c15000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.138091] ffff880077c15010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.139370] ffff880077c15020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.140398] ffff880077c15030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.141660] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.143226] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.144027] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.151515] XFS (sdc): Unmount and run xfs_repair
[  438.152359] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.153213] ffff880077c14000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.154591] ffff880077c14010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.156209] ffff880077c14020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.157445] ffff880077c14030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.159879] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.161762] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.162628] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.164082] XFS (sdc): Unmount and run xfs_repair
[  438.165028] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.166004] ffff880077c15000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.167087] ffff880077c15010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.168109] ffff880077c15020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.169199] ffff880077c15030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.170858] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.173646] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.174180] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.177180] XFS (sdc): Unmount and run xfs_repair
[  438.178689] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.179726] ffff880077c14000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.180863] ffff880077c14010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.181901] ffff880077c14020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.185317] ffff880077c14030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.186644] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.190811] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.191186] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.192589] XFS (sdc): Unmount and run xfs_repair
[  438.193437] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.194276] ffff880077c15000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.195268] ffff880077c15010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.196226] ffff880077c15020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.197181] ffff880077c15030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.198253] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.199314] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.199646] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.200819] XFS (sdc): Unmount and run xfs_repair
[  438.201491] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.203276] ffff880077c14000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.205107] ffff880077c14010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.206782] ffff880077c14020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.208157] ffff880077c14030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.209819] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.211270] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.213491] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.214788] XFS (sdc): Unmount and run xfs_repair
[  438.215527] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.216311] ffff880077c15000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.217288] ffff880077c15010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.218231] ffff880077c15020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.219275] ffff880077c15030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.220415] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.221850] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.222899] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.224446] XFS (sdc): Unmount and run xfs_repair
[  438.225868] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.227453] ffff880077c14000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.228912] ffff880077c14010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.230508] ffff880077c14020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.231731] ffff880077c14030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.234109] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.236493] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.239321] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.241326] XFS (sdc): Unmount and run xfs_repair
[  438.242186] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.243086] ffff880077c15000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.244193] ffff880077c15010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.245269] ffff880077c15020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.246365] ffff880077c15030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.248568] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.249894] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.251234] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.252659] XFS (sdc): Unmount and run xfs_repair
[  438.253426] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.254279] ffff880077c14000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.255307] ffff880077c14010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.256327] ffff880077c14020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.259945] ffff880077c14030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.261405] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.264566] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.265015] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.266498] XFS (sdc): Unmount and run xfs_repair
[  438.267252] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.268066] ffff880077c15000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.269359] ffff880077c15010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.271483] ffff880077c15020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.272705] ffff880077c15030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.274867] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.276254] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.277745] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.279524] XFS (sdc): Unmount and run xfs_repair
[  438.280423] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.281347] ffff880077c14000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.282390] ffff880077c14010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.283698] ffff880077c14020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.285080] ffff880077c14030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.286601] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.288939] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.291899] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.293494] XFS (sdc): Unmount and run xfs_repair
[  438.294509] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.296559] ffff880077627000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.297818] ffff880077627010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.298914] ffff880077627020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.299904] ffff880077627030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.303469] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.305731] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.306483] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.308178] XFS (sdc): Unmount and run xfs_repair
[  438.309263] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.311461] ffff88007a70b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.315037] ffff88007a70b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.316275] ffff88007a70b020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.317232] ffff88007a70b030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.318687] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.321450] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.322564] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.324375] XFS (sdc): Unmount and run xfs_repair
[  438.325246] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.326949] ffff880077627000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.328507] ffff880077627010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.338196] ffff880077627020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.342177] ffff880077627030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.346298] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.347421] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.357527] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.359780] XFS (sdc): Unmount and run xfs_repair
[  438.360895] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.361720] ffff88007755f000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.362802] ffff88007755f010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.363821] ffff88007755f020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.364805] ffff88007755f030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.366655] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.367807] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.369089] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.370436] XFS (sdc): Unmount and run xfs_repair
[  438.371306] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.372265] ffff880077ddd000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.373262] ffff880077ddd010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.374823] ffff880077ddd020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.376783] ffff880077ddd030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.380102] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.381809] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.382462] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.383698] XFS (sdc): Unmount and run xfs_repair
[  438.384410] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.385178] ffff88007755f000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.386119] ffff88007755f010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.387267] ffff88007755f020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.388385] ffff88007755f030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.389528] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.390840] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.391256] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.392848] XFS (sdc): Unmount and run xfs_repair
[  438.396560] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.399492] ffff880077ddd000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.401211] ffff880077ddd010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.402983] ffff880077ddd020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.404679] ffff880077ddd030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.406355] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.407655] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.411313] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.417307] XFS (sdc): Unmount and run xfs_repair
[  438.419967] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.422033] ffff880077ddd000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.423730] ffff880077ddd010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.426937] ffff880077ddd020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.428193] ffff880077ddd030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.429308] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.430748] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.431936] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.433322] XFS (sdc): Unmount and run xfs_repair
[  438.434081] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.434932] ffff88007a6cd000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.436031] ffff88007a6cd010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.437200] ffff88007a6cd020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.438348] ffff88007a6cd030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.441178] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.442761] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.444986] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.447079] XFS (sdc): Unmount and run xfs_repair
[  438.447968] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.448756] ffff880077ddd000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.450833] ffff880077ddd010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.454141] ffff880077ddd020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.456393] ffff880077ddd030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.458604] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.459883] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.461416] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.462856] XFS (sdc): Unmount and run xfs_repair
[  438.463670] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.464619] ffff880078061000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.466343] ffff880078061010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.467707] ffff880078061020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.468803] ffff880078061030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.470267] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.471514] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.472122] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.473355] XFS (sdc): Unmount and run xfs_repair
[  438.474033] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.474819] ffff8800792cd000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.475786] ffff8800792cd010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.476760] ffff8800792cd020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.477745] ffff8800792cd030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.480093] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.481366] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.484230] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.485633] XFS (sdc): Unmount and run xfs_repair
[  438.486433] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.487318] ffff880078061000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.488312] ffff880078061010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.489292] ffff880078061020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.490326] ffff880078061030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.491385] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.496385] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.497132] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.498626] XFS (sdc): Unmount and run xfs_repair
[  438.499652] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.501213] ffff8800792cd000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.502361] ffff8800792cd010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.503365] ffff8800792cd020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.507312] ffff8800792cd030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.509405] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.510759] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.519161] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.520903] XFS (sdc): Unmount and run xfs_repair
[  438.521751] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.522753] ffff880078061000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.523848] ffff880078061010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.525192] ffff880078061020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.527958] ffff880078061030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.530771] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.532013] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.533360] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.535985] XFS (sdc): Unmount and run xfs_repair
[  438.537922] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.539754] ffff88007925a000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.541428] ffff88007925a010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.542865] ffff88007925a020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.543996] ffff88007925a030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.545898] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.547410] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.548123] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.549509] XFS (sdc): Unmount and run xfs_repair
[  438.550436] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.551451] ffff88007925b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.552552] ffff88007925b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.553653] ffff88007925b020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.554814] ffff88007925b030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.557319] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.560162] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.561216] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.562427] XFS (sdc): Unmount and run xfs_repair
[  438.563100] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.563916] ffff88007779f000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.564894] ffff88007779f010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.565836] ffff88007779f020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.566880] ffff88007779f030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.569083] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.570248] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.575237] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.579833] XFS (sdc): Unmount and run xfs_repair
[  438.580908] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.581864] ffff8800797a3000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.583137] ffff8800797a3010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.584252] ffff8800797a3020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.585614] ffff8800797a3030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.587399] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.591204] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.591723] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.593613] XFS (sdc): Unmount and run xfs_repair
[  438.595957] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.597163] ffff8800777ad000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.601433] ffff8800777ad010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.603424] ffff8800777ad020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.604834] ffff8800777ad030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.606877] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.608502] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.609703] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.611093] XFS (sdc): Unmount and run xfs_repair
[  438.612059] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.613003] ffff8800797a3000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.614117] ffff8800797a3010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.615175] ffff8800797a3020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.616204] ffff8800797a3030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.617968] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.620130] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.620592] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.621948] XFS (sdc): Unmount and run xfs_repair
[  438.622662] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.623489] ffff8800777ad000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.624483] ffff8800777ad010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.625479] ffff8800777ad020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.626459] ffff8800777ad030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.627400] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.628761] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.629824] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.638337] XFS (sdc): Unmount and run xfs_repair
[  438.640098] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.640929] ffff8800797a3000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.641950] ffff8800797a3010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.642943] ffff8800797a3020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.644326] ffff8800797a3030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.645447] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.646808] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.647813] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.649427] XFS (sdc): Unmount and run xfs_repair
[  438.650307] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.651223] ffff8800769b0000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.652410] ffff8800769b0010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.653633] ffff8800769b0020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.654782] ffff8800769b0030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.658423] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.660230] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.666118] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.667555] XFS (sdc): Unmount and run xfs_repair
[  438.668455] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.669378] ffff88007a3c5000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.670467] ffff88007a3c5010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.671519] ffff88007a3c5020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.672520] ffff88007a3c5030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.674757] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.676685] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.680621] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.682661] XFS (sdc): Unmount and run xfs_repair
[  438.683529] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.684596] ffff88007a740000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.686219] ffff88007a740010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.687629] ffff88007a740020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.689524] ffff88007a740030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.691411] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.693114] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.693734] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.695073] XFS (sdc): Unmount and run xfs_repair
[  438.695868] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.698474] ffff88007a3c5000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.699984] ffff88007a3c5010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.701152] ffff88007a3c5020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.702481] ffff88007a3c5030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.705646] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.706861] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.708359] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.709716] XFS (sdc): Unmount and run xfs_repair
[  438.710497] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.711278] ffff880078183000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.712205] ffff880078183010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.713913] ffff880078183020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.715104] ffff880078183030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.717075] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.718280] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.720983] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.722911] XFS (sdc): Unmount and run xfs_repair
[  438.724066] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.725071] ffff880078005000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.726119] ffff880078005010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.727190] ffff880078005020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.728226] ffff880078005030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.729969] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.731361] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.732747] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.734117] XFS (sdc): Unmount and run xfs_repair
[  438.734902] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.735752] ffff880078183000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.736832] ffff880078183010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.737962] ffff880078183020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.739045] ffff880078183030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.740977] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.743126] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.744501] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.745725] XFS (sdc): Unmount and run xfs_repair
[  438.746442] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.747267] ffff880077fe5000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.748273] ffff880077fe5010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.749320] ffff880077fe5020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.750234] ffff880077fe5030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.752178] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.756882] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.759212] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.760569] XFS (sdc): Unmount and run xfs_repair
[  438.761555] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.762896] ffff8800793d0000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.763974] ffff8800793d0010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.765079] ffff8800793d0020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.766224] ffff8800793d0030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.767303] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.768759] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.772009] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.774195] XFS (sdc): Unmount and run xfs_repair
[  438.775363] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.777658] ffff88007a7c1000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.779076] ffff88007a7c1010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.780252] ffff88007a7c1020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.781722] ffff88007a7c1030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.783360] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.784792] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.789488] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.790954] XFS (sdc): Unmount and run xfs_repair
[  438.794111] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.795980] ffff88007a7c0000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.797165] ffff88007a7c0010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.798473] ffff88007a7c0020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.800261] ffff88007a7c0030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.801453] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.803507] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.804388] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.805609] XFS (sdc): Unmount and run xfs_repair
[  438.806350] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.807097] ffff880077eac000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.808016] ffff880077eac010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.808926] ffff880077eac020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.809843] ffff880077eac030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.811506] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.812625] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.819493] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.820967] XFS (sdc): Unmount and run xfs_repair
[  438.821836] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.822738] ffff88007915c000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.823807] ffff88007915c010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.824862] ffff88007915c020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.827468] ffff88007915c030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.829913] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.835179] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.836340] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.841101] XFS (sdc): Unmount and run xfs_repair
[  438.841860] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.842737] ffff880077eac000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.843950] ffff880077eac010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.844945] ffff880077eac020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.845999] ffff880077eac030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.848330] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.849598] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.854066] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.855342] XFS (sdc): Unmount and run xfs_repair
[  438.856058] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.856908] ffff88007915c000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.857986] ffff88007915c010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.859132] ffff88007915c020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.860254] ffff88007915c030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.862968] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.864620] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.865736] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.867346] XFS (sdc): Unmount and run xfs_repair
[  438.868293] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.869630] ffff880077eac000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.870804] ffff880077eac010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.871859] ffff880077eac020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.872954] ffff880077eac030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.879763] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.883000] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.884597] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.886239] XFS (sdc): Unmount and run xfs_repair
[  438.887116] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.887999] ffff880077e68000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.889017] ffff880077e68010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.890090] ffff880077e68020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.891484] ffff880077e68030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.893523] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.894630] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.898003] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.899265] XFS (sdc): Unmount and run xfs_repair
[  438.899928] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.900634] ffff88007755f000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.901581] ffff88007755f010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.902637] ffff88007755f020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.903668] ffff88007755f030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.906230] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.907559] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.908632] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.909941] XFS (sdc): Unmount and run xfs_repair
[  438.910665] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.911728] ffff880077e68000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.916153] ffff880077e68010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.917679] ffff880077e68020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.919431] ffff880077e68030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.920606] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.922511] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.924386] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.925726] XFS (sdc): Unmount and run xfs_repair
[  438.926588] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.927576] ffff88007755f000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.928765] ffff88007755f010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.929848] ffff88007755f020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.931004] ffff88007755f030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.932901] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.934798] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.937045] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.939484] XFS (sdc): Unmount and run xfs_repair
[  438.940976] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.942460] ffff880077e68000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.943659] ffff880077e68010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.944812] ffff880077e68020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.945822] ffff880077e68030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.946839] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.948175] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.950074] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.951661] XFS (sdc): Unmount and run xfs_repair
[  438.952465] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.953868] ffff880079222000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.957957] ffff880079222010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.959473] ffff880079222020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.960681] ffff880079222030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.961826] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.962952] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.964405] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.965733] XFS (sdc): Unmount and run xfs_repair
[  438.966472] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.967259] ffff88007a697000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.968291] ffff88007a697010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.970131] ffff88007a697020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.972625] ffff88007a697030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.973901] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.975198] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.976963] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.978280] XFS (sdc): Unmount and run xfs_repair
[  438.979086] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.980019] ffff880079276000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.983999] ffff880079276010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.987699] ffff880079276020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.991137] ffff880079276030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.995977] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.002487] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.006924] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  439.009009] XFS (sdc): Unmount and run xfs_repair
[  439.009914] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.011171] ffff88007a697000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  439.012436] ffff88007a697010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  439.013706] ffff88007a697020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  439.014916] ffff88007a697030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  439.016860] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.018425] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.019466] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  439.024321] XFS (sdc): Unmount and run xfs_repair
[  439.025518] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.026507] ffff880079276000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  439.028112] ffff880079276010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  439.029458] ffff880079276020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  439.031656] ffff880079276030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  439.033612] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.035362] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.035912] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  439.037534] XFS (sdc): Unmount and run xfs_repair
[  439.038328] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.039641] ffff88007a697000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  439.041373] ffff88007a697010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  439.043147] ffff88007a697020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  439.044399] ffff88007a697030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  439.046170] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.047882] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.048797] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  439.052714] XFS (sdc): Unmount and run xfs_repair
[  439.053985] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.056057] ffff88007a703000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  439.058883] ffff88007a703010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  439.060771] ffff88007a703020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  439.062023] ffff88007a703030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  439.063342] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.064991] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.065765] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  439.067102] XFS (sdc): Unmount and run xfs_repair
[  439.067834] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.068670] ffff88007922f000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  439.069775] ffff88007922f010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  439.071063] ffff88007922f020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  439.072171] ffff88007922f030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  439.075830] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.078017] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.080077] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  439.081388] XFS (sdc): Unmount and run xfs_repair
[  439.082103] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.083061] ffff88007a703000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  439.084999] ffff88007a703010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  439.086860] ffff88007a703020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  439.088918] ffff88007a703030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  439.090203] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.091938] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.095667] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  439.098349] XFS (sdc): Unmount and run xfs_repair
[  439.099267] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.100209] ffff880078097000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  439.101553] ffff880078097010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  439.102882] ffff880078097020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  439.104008] ffff880078097030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  439.106211] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.107831] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.156277] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.157587] XFS (sdc): Unmount and run xfs_repair
[  439.158302] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.159085] ffff880078203000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.160050] ffff880078203010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.161056] ffff880078203020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.162037] ffff880078203030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.163544] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.164646] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.165952] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.167168] XFS (sdc): Unmount and run xfs_repair
[  439.167841] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.168687] ffff88007745e000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.169703] ffff88007745e010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.170750] ffff88007745e020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.171803] ffff88007745e030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.172914] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.174251] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.175176] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.176421] XFS (sdc): Unmount and run xfs_repair
[  439.177177] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.178041] ffff880078203000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.179087] ffff880078203010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.180070] ffff880078203020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.181012] ffff880078203030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.183004] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.186973] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.188902] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.190311] XFS (sdc): Unmount and run xfs_repair
[  439.191144] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.191949] ffff88007745e000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.192974] ffff88007745e010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.194165] ffff88007745e020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.195340] ffff88007745e030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.196877] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.198743] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.202561] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.203959] XFS (sdc): Unmount and run xfs_repair
[  439.204679] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.205552] ffff880078203000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.206683] ffff880078203010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.207762] ffff880078203020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.208905] ffff880078203030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.212046] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.213274] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.213762] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.215225] XFS (sdc): Unmount and run xfs_repair
[  439.216079] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.217305] ffff88007745e000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.218621] ffff88007745e010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.219731] ffff88007745e020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.221247] ffff88007745e030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.224595] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.226257] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.228327] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.229929] XFS (sdc): Unmount and run xfs_repair
[  439.230902] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.231953] ffff880078203000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.233053] ffff880078203010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.234111] ffff880078203020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.235239] ffff880078203030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.236613] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.237839] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.242595] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.244883] XFS (sdc): Unmount and run xfs_repair
[  439.246067] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.247138] ffff88007745e000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.248343] ffff88007745e010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.249761] ffff88007745e020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.251198] ffff88007745e030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.252549] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.255894] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.257072] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.258384] XFS (sdc): Unmount and run xfs_repair
[  439.259175] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.260022] ffff880079219000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.261046] ffff880079219010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.262065] ffff880079219020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.263068] ffff880079219030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.265164] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.266569] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.273311] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.274621] XFS (sdc): Unmount and run xfs_repair
[  439.275967] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.277258] ffff88007745e000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.278429] ffff88007745e010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.280534] ffff88007745e020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.282345] ffff88007745e030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.283674] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.290855] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.295518] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.296881] XFS (sdc): Unmount and run xfs_repair
[  439.297706] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.300662] ffff88007770c000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.303985] ffff88007770c010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.305397] ffff88007770c020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.306516] ffff88007770c030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.308002] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.316157] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.317926] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.319675] XFS (sdc): Unmount and run xfs_repair
[  439.320900] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.322271] ffff8800782e3000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.323402] ffff8800782e3010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.325120] ffff8800782e3020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.326620] ffff8800782e3030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.328675] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.331699] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.333790] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.335263] XFS (sdc): Unmount and run xfs_repair
[  439.336116] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.336998] ffff88007770c000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.338191] ffff88007770c010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.339290] ffff88007770c020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.340279] ffff88007770c030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.341368] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.343618] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.348152] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.349945] XFS (sdc): Unmount and run xfs_repair
[  439.352278] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.353664] ffff8800782e3000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.355121] ffff8800782e3010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.357026] ffff8800782e3020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.360614] ffff8800782e3030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.362604] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.365205] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.365921] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.367380] XFS (sdc): Unmount and run xfs_repair
[  439.368271] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.369155] ffff880077760000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.370240] ffff880077760010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.373470] ffff880077760020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.375334] ffff880077760030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.378038] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.379411] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.380122] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.381428] XFS (sdc): Unmount and run xfs_repair
[  439.382220] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.383267] ffff8800782e3000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.384434] ffff8800782e3010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.385622] ffff8800782e3020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.386663] ffff8800782e3030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.387737] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.388904] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.391755] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.393606] XFS (sdc): Unmount and run xfs_repair
[  439.395232] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.396855] ffff880077760000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.399157] ffff880077760010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.406361] ffff880077760020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.408197] ffff880077760030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.409480] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.410970] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.412361] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.413775] XFS (sdc): Unmount and run xfs_repair
[  439.414517] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.415304] ffff8800782e3000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.416274] ffff8800782e3010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.417304] ffff8800782e3020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.418309] ffff8800782e3030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.420571] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.424395] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.425839] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.428852] XFS (sdc): Unmount and run xfs_repair
[  439.430126] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.431209] ffff88007750b000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.432395] ffff88007750b010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.433556] ffff88007750b020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.434671] ffff88007750b030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.435969] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.437377] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.438204] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.439674] XFS (sdc): Unmount and run xfs_repair
[  439.440535] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.441568] ffff88007a66d000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.442708] ffff88007a66d010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.443711] ffff88007a66d020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.444746] ffff88007a66d030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.445769] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.447518] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.449781] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.451234] XFS (sdc): Unmount and run xfs_repair
[  439.452057] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.452898] ffff88007750b000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.453951] ffff88007750b010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.455049] ffff88007750b020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.456091] ffff88007750b030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.457393] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.458940] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.459877] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.461381] XFS (sdc): Unmount and run xfs_repair
[  439.462348] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.463536] ffff8800782e3000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.465041] ffff8800782e3010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.466251] ffff8800782e3020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.467413] ffff8800782e3030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.469380] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.470656] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.472484] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.474011] XFS (sdc): Unmount and run xfs_repair
[  439.474875] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.476355] ffff88007929d000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.477919] ffff88007929d010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.479109] ffff88007929d020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.480174] ffff88007929d030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.481936] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.483876] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.485529] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.486983] XFS (sdc): Unmount and run xfs_repair
[  439.487790] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.488637] ffff8800761e0000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.489755] ffff8800761e0010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.490824] ffff8800761e0020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.491937] ffff8800761e0030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.493440] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.495313] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.500715] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.502134] XFS (sdc): Unmount and run xfs_repair
[  439.502932] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.504419] ffff88007929d000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.506130] ffff88007929d010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.508312] ffff88007929d020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.511892] ffff88007929d030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.514231] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.515838] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.517606] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.519185] XFS (sdc): Unmount and run xfs_repair
[  439.520156] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.521036] ffff8800761e0000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.522128] ffff8800761e0010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.523197] ffff8800761e0020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.524334] ffff8800761e0030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.526536] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.528764] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.532617] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.533971] XFS (sdc): Unmount and run xfs_repair
[  439.534882] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.535823] ffff88007929d000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.537141] ffff88007929d010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.538568] ffff88007929d020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.539652] ffff88007929d030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.543461] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.545267] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.546575] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.548238] XFS (sdc): Unmount and run xfs_repair
[  439.549066] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.549975] ffff88007813d000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.551099] ffff88007813d010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.552167] ffff88007813d020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.553171] ffff88007813d030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.554376] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.556064] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.557142] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.558659] XFS (sdc): Unmount and run xfs_repair
[  439.559529] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.560389] ffff880077692000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.561392] ffff880077692010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.562506] ffff880077692020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.563787] ffff880077692030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.565244] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.566665] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.567106] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.568453] XFS (sdc): Unmount and run xfs_repair
[  439.569188] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.570051] ffff880077fda000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.571091] ffff880077fda010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.572097] ffff880077fda020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.573073] ffff880077fda030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.574857] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.576729] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.577407] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.578995] XFS (sdc): Unmount and run xfs_repair
[  439.579766] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.580610] ffff880077692000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.584185] ffff880077692010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.587593] ffff880077692020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.590379] ffff880077692030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.593328] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.595040] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.595820] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.597493] XFS (sdc): Unmount and run xfs_repair
[  439.598579] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.599472] ffff880077fda000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.600562] ffff880077fda010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.602543] ffff880077fda020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.604067] ffff880077fda030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.605555] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.607163] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.608113] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.609465] XFS (sdc): Unmount and run xfs_repair
[  439.610287] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.611681] ffff88007770c000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.618831] ffff88007770c010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.620927] ffff88007770c020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.622249] ffff88007770c030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.623621] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.627129] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.633266] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.635067] XFS (sdc): Unmount and run xfs_repair
[  439.635920] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.636749] ffff880077f2b000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.637746] ffff880077f2b010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.638773] ffff880077f2b020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.639873] ffff880077f2b030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.640919] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.642955] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.643881] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.645666] XFS (sdc): Unmount and run xfs_repair
[  439.650811] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.652202] ffff88007915d000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.653617] ffff88007915d010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.655233] ffff88007915d020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.656507] ffff88007915d030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.658849] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.660809] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.661826] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.663477] XFS (sdc): Unmount and run xfs_repair
[  439.664376] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.665344] ffff880077f2b000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.666500] ffff880077f2b010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.667701] ffff880077f2b020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.668897] ffff880077f2b030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.670134] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.671962] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.673452] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.675034] XFS (sdc): Unmount and run xfs_repair
[  439.675825] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.676666] ffff88007a741000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.677716] ffff88007a741010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.678752] ffff88007a741020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.680657] ffff88007a741030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.682571] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.685530] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.686724] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.688202] XFS (sdc): Unmount and run xfs_repair
[  439.689373] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.690397] ffff880077e9a000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.691843] ffff880077e9a010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.693188] ffff880077e9a020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.694241] ffff880077e9a030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.696835] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.700315] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.701271] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.702747] XFS (sdc): Unmount and run xfs_repair
[  439.703510] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.704509] ffff880079352000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.706554] ffff880079352010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.709166] ffff880079352020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.711980] ffff880079352030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.713556] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.716394] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.717154] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.718540] XFS (sdc): Unmount and run xfs_repair
[  439.723295] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.725245] ffff880077616000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.727130] ffff880077616010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.728260] ffff880077616020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.729356] ffff880077616030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.730889] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.732723] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.734961] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.739033] XFS (sdc): Unmount and run xfs_repair
[  439.740122] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.741006] ffff880079352000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.744923] ffff880079352010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.746205] ffff880079352020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.747465] ffff880079352030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.748936] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.750139] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.751141] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.752799] XFS (sdc): Unmount and run xfs_repair
[  439.753946] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.759800] ffff880077616000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.761264] ffff880077616010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.762510] ffff880077616020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.765025] ffff880077616030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.767110] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.770142] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.772324] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.773848] XFS (sdc): Unmount and run xfs_repair
[  439.774549] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.775329] ffff88007915d000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.776509] ffff88007915d010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.777693] ffff88007915d020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.779018] ffff88007915d030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.780261] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.781461] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.782470] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.789493] XFS (sdc): Unmount and run xfs_repair
[  439.791131] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.792284] ffff880078255000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.793820] ffff880078255010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.795862] ffff880078255020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.798524] ffff880078255030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.801201] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.802595] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.804477] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.806154] XFS (sdc): Unmount and run xfs_repair
[  439.807066] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.808787] ffff88007915d000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.810026] ffff88007915d010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.811270] ffff88007915d020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.812617] ffff88007915d030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.813672] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.816140] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.816554] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.817972] XFS (sdc): Unmount and run xfs_repair
[  439.818821] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.819792] ffff880078255000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.821137] ffff880078255010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.822244] ffff880078255020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.823270] ffff880078255030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.827146] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.829776] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.834249] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.835651] XFS (sdc): Unmount and run xfs_repair
[  439.836543] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.837461] ffff88007915d000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.839652] ffff88007915d010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.841423] ffff88007915d020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.843060] ffff88007915d030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.844418] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.846069] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.848308] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.850687] XFS (sdc): Unmount and run xfs_repair
[  439.851732] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.853598] ffff88007a73b000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.854860] ffff88007a73b010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.856169] ffff88007a73b020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.857377] ffff88007a73b030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.860475] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.861561] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.865018] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.866416] XFS (sdc): Unmount and run xfs_repair
[  439.867333] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.868323] ffff8800777cf000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.869811] ffff8800777cf010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.870981] ffff8800777cf020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.872054] ffff8800777cf030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.873251] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.874467] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.879541] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.881067] XFS (sdc): Unmount and run xfs_repair
[  439.881947] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.882874] ffff88007a73b000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.884398] ffff88007a73b010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.886882] ffff88007a73b020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.889078] ffff88007a73b030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.890625] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.892403] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.896581] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.898136] XFS (sdc): Unmount and run xfs_repair
[  439.899089] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.900224] ffff88007811a000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.901325] ffff88007811a010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.902412] ffff88007811a020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.904584] ffff88007811a030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.907957] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.909335] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.909896] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.911192] XFS (sdc): Unmount and run xfs_repair
[  439.911939] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.912858] ffff8800777cf000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.914414] ffff8800777cf010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.916627] ffff8800777cf020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.918957] ffff8800777cf030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.921198] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.923167] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.924605] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.926055] XFS (sdc): Unmount and run xfs_repair
[  439.926955] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.927762] ffff88007811a000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.929416] ffff88007811a010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.931527] ffff88007811a020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.934279] ffff88007811a030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.936224] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.937810] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.939837] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.941868] XFS (sdc): Unmount and run xfs_repair
[  439.943252] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.944270] ffff8800777cf000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.946496] ffff8800777cf010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.947791] ffff8800777cf020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.949512] ffff8800777cf030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.951158] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.954833] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.956440] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.958406] XFS (sdc): Unmount and run xfs_repair
[  439.960927] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.962137] ffff88007811a000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.963356] ffff88007811a010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.964518] ffff88007811a020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.966989] ffff88007811a030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.969146] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.970372] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.971685] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.973080] XFS (sdc): Unmount and run xfs_repair
[  439.973888] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.974767] ffff8800777cf000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.975797] ffff8800777cf010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.977304] ffff8800777cf020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.978578] ffff8800777cf030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.980299] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.982068] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.984175] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.985667] XFS (sdc): Unmount and run xfs_repair
[  439.986999] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.988151] ffff88007811a000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.989303] ffff88007811a010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.990371] ffff88007811a020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.991395] ffff88007811a030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.992427] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.993678] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.994368] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.995648] XFS (sdc): Unmount and run xfs_repair
[  439.996402] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.997246] ffff8800777cf000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.999340] ffff8800777cf010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  440.001476] ffff8800777cf020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  440.003100] ffff8800777cf030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  440.005009] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.006766] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.007616] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  440.009037] XFS (sdc): Unmount and run xfs_repair
[  440.009876] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.010759] ffff88007811a000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  440.012183] ffff88007811a010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  440.014410] ffff88007811a020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  440.016000] ffff88007811a030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  440.017359] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.018751] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.019287] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  440.022008] XFS (sdc): Unmount and run xfs_repair
[  440.023340] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.025187] ffff8800777cf000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  440.026929] ffff8800777cf010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  440.028206] ffff8800777cf020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  440.029443] ffff8800777cf030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  440.030749] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.032115] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.067158] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.068562] XFS (sdc): Unmount and run xfs_repair
[  440.069360] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.070231] ffff8800790e8000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.071298] ffff8800790e8010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.072409] ffff8800790e8020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.073424] ffff8800790e8030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.074805] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.076690] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.077415] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.079001] XFS (sdc): Unmount and run xfs_repair
[  440.079685] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.080501] ffff8800790e9000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.081491] ffff8800790e9010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.082574] ffff8800790e9020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.083619] ffff8800790e9030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.086103] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.087632] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.089584] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.091031] XFS (sdc): Unmount and run xfs_repair
[  440.091912] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.092821] ffff880076d94000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.093960] ffff880076d94010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.095020] ffff880076d94020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.096006] ffff880076d94030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.097900] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.099200] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.100846] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.102336] XFS (sdc): Unmount and run xfs_repair
[  440.103162] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.104126] ffff880077ea1000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.105281] ffff880077ea1010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.106440] ffff880077ea1020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.107506] ffff880077ea1030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.109189] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.111094] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.112307] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.113578] XFS (sdc): Unmount and run xfs_repair
[  440.114265] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.115010] ffff88007774b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.115985] ffff88007774b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.116973] ffff88007774b020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.118020] ffff88007774b030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.119438] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.122227] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.123911] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.125999] XFS (sdc): Unmount and run xfs_repair
[  440.127156] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.127996] ffff880077788000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.129009] ffff880077788010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.130196] ffff880077788020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.131831] ffff880077788030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.133071] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.134187] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.134803] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.136052] XFS (sdc): Unmount and run xfs_repair
[  440.136906] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.137862] ffff88007774b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.138972] ffff88007774b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.141490] ffff88007774b020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.149873] ffff88007774b030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.151868] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.153590] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.157070] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.162387] XFS (sdc): Unmount and run xfs_repair
[  440.163576] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.164837] ffff88007774b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.165984] ffff88007774b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.167011] ffff88007774b020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.168101] ffff88007774b030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.169276] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.170663] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.171470] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.172812] XFS (sdc): Unmount and run xfs_repair
[  440.173694] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.174562] ffff880079262000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.176209] ffff880079262010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.177787] ffff880079262020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.179200] ffff880079262030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.180710] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.182111] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.183096] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.184435] XFS (sdc): Unmount and run xfs_repair
[  440.185184] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.186004] ffff880079078000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.187277] ffff880079078010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.190554] ffff880079078020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.192054] ffff880079078030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.193970] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.197641] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.198138] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.199582] XFS (sdc): Unmount and run xfs_repair
[  440.200378] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.201195] ffff880077f8b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.202287] ffff880077f8b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.203329] ffff880077f8b020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.204352] ffff880077f8b030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.206710] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.208126] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.210171] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.211524] XFS (sdc): Unmount and run xfs_repair
[  440.212441] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.214234] ffff880079078000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.216619] ffff880079078010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.217916] ffff880079078020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.220155] ffff880079078030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.221468] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.222820] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.227279] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.228649] XFS (sdc): Unmount and run xfs_repair
[  440.230925] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.231854] ffff880077f8b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.233909] ffff880077f8b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.235900] ffff880077f8b020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.237050] ffff880077f8b030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.242092] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.244808] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.245488] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.246923] XFS (sdc): Unmount and run xfs_repair
[  440.247867] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.248965] ffff88007902b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.250340] ffff88007902b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.253678] ffff88007902b020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.254997] ffff88007902b030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.257013] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.259046] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.259492] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.260953] XFS (sdc): Unmount and run xfs_repair
[  440.261691] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.262491] ffff880077f8b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.263427] ffff880077f8b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.264468] ffff880077f8b020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.265844] ffff880077f8b030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.267094] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.268380] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.269832] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.271095] XFS (sdc): Unmount and run xfs_repair
[  440.271798] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.274895] ffff88007a689000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.278987] ffff88007a689010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.281078] ffff88007a689020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.282617] ffff88007a689030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.283673] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.284937] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.287433] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.290060] XFS (sdc): Unmount and run xfs_repair
[  440.292053] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.293522] ffff8800780e4000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.294893] ffff8800780e4010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.296086] ffff8800780e4020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.297687] ffff8800780e4030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.299210] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.300374] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.301040] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.305237] XFS (sdc): Unmount and run xfs_repair
[  440.307349] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.309866] ffff88007a689000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.311662] ffff88007a689010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.313079] ffff88007a689020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.314108] ffff88007a689030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.317028] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.326450] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.327692] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.330791] XFS (sdc): Unmount and run xfs_repair
[  440.331696] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.332610] ffff88007a689000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.333781] ffff88007a689010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.334722] ffff88007a689020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.336507] ffff88007a689030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.338654] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.339937] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.341988] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.343335] XFS (sdc): Unmount and run xfs_repair
[  440.344861] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.348975] ffff88007a73b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.350164] ffff88007a73b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.351843] ffff88007a73b020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.353203] ffff88007a73b030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.354253] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.355528] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.356114] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.357410] XFS (sdc): Unmount and run xfs_repair
[  440.358116] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.358945] ffff88007a73b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.359933] ffff88007a73b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.360847] ffff88007a73b020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.361830] ffff88007a73b030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.363971] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.365190] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.368471] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.370125] XFS (sdc): Unmount and run xfs_repair
[  440.371051] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.373946] ffff8800776b6000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.376385] ffff8800776b6010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.377552] ffff8800776b6020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.378702] ffff8800776b6030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.379651] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.382717] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.383559] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.384898] XFS (sdc): Unmount and run xfs_repair
[  440.386725] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.387638] ffff880077777000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.388643] ffff880077777010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.390541] ffff880077777020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.392601] ffff880077777030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.394220] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.395502] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.398534] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.400966] XFS (sdc): Unmount and run xfs_repair
[  440.401742] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.403244] ffff880077d7f000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.404539] ffff880077d7f010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.406440] ffff880077d7f020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.408878] ffff880077d7f030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.411937] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.413510] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.415296] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.419876] XFS (sdc): Unmount and run xfs_repair
[  440.420844] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.421654] ffff880077777000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.422849] ffff880077777010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.424951] ffff880077777020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.426380] ffff880077777030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.428838] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.430537] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.431484] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.433094] XFS (sdc): Unmount and run xfs_repair
[  440.434432] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.435453] ffff880077d7f000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.437880] ffff880077d7f010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.439021] ffff880077d7f020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.440102] ffff880077d7f030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.441982] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.443106] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.444433] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.445844] XFS (sdc): Unmount and run xfs_repair
[  440.446674] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.449101] ffff880077777000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.450303] ffff880077777010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.451386] ffff880077777020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.452442] ffff880077777030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.453859] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.455248] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.457583] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.458879] XFS (sdc): Unmount and run xfs_repair
[  440.459675] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.460546] ffff88007a71b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.461551] ffff88007a71b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.462541] ffff88007a71b020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.463561] ffff88007a71b030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.464834] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.469339] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.478046] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.479404] XFS (sdc): Unmount and run xfs_repair
[  440.480202] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.481742] ffff88007a71b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.483415] ffff88007a71b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.484573] ffff88007a71b020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.485663] ffff88007a71b030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.487486] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.488632] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.491245] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.493185] XFS (sdc): Unmount and run xfs_repair
[  440.494339] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.495914] ffff880077777000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.497263] ffff880077777010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.498475] ffff880077777020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.499843] ffff880077777030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.501956] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.503570] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.505497] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.507055] XFS (sdc): Unmount and run xfs_repair
[  440.507785] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.508609] ffff88007a689000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.509637] ffff88007a689010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.510656] ffff88007a689020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.511635] ffff88007a689030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.513113] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.514217] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.516367] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.517599] XFS (sdc): Unmount and run xfs_repair
[  440.519982] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.520982] ffff880077777000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.523584] ffff880077777010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.526329] ffff880077777020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.527882] ffff880077777030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.529164] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.530450] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.531010] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.532255] XFS (sdc): Unmount and run xfs_repair
[  440.532957] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.534019] ffff88007a689000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.535133] ffff88007a689010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.536139] ffff88007a689020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.537167] ffff88007a689030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.539318] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.540814] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.543934] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.545290] XFS (sdc): Unmount and run xfs_repair
[  440.546242] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.547583] ffff880077777000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.550977] ffff880077777010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.552088] ffff880077777020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.553228] ffff880077777030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.554377] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.555490] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.558755] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.560036] XFS (sdc): Unmount and run xfs_repair
[  440.560755] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.561603] ffff88007a689000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.563050] ffff88007a689010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.565926] ffff88007a689020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.566981] ffff88007a689030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.568011] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.569680] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.570910] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.572577] XFS (sdc): Unmount and run xfs_repair
[  440.573723] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.574634] ffff880077748000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.575652] ffff880077748010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.576934] ffff880077748020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.578183] ffff880077748030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.582683] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.584430] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.585466] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.586768] XFS (sdc): Unmount and run xfs_repair
[  440.587611] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.588490] ffff880078016000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.589489] ffff880078016010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.590475] ffff880078016020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.591665] ffff880078016030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.593697] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.594963] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.599225] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.601283] XFS (sdc): Unmount and run xfs_repair
[  440.602170] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.602943] ffff880077ca4000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.603902] ffff880077ca4010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.604980] ffff880077ca4020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.606030] ffff880077ca4030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.608522] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.612007] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.612645] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.614059] XFS (sdc): Unmount and run xfs_repair
[  440.614774] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.615620] ffff880078016000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.616662] ffff880078016010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.617681] ffff880078016020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.618734] ffff880078016030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.621086] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.622471] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.625122] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.626396] XFS (sdc): Unmount and run xfs_repair
[  440.627209] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.628124] ffff880077ca4000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.630146] ffff880077ca4010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.631382] ffff880077ca4020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.633319] ffff880077ca4030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.635835] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.638242] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.638801] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.641813] XFS (sdc): Unmount and run xfs_repair
[  440.642591] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.643457] ffff880078016000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.644950] ffff880078016010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.646631] ffff880078016020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.647988] ffff880078016030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.650120] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.651384] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.652715] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.654009] XFS (sdc): Unmount and run xfs_repair
[  440.654634] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.655371] ffff8800793ed000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.656357] ffff8800793ed010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.657339] ffff8800793ed020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.658326] ffff8800793ed030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.660246] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.661649] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.662992] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.664189] XFS (sdc): Unmount and run xfs_repair
[  440.664888] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.665704] ffff880077e0c000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.666666] ffff880077e0c010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.667877] ffff880077e0c020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.668932] ffff880077e0c030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.670840] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.672275] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.672797] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.674389] XFS (sdc): Unmount and run xfs_repair
[  440.675096] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.675880] ffff8800793ed000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.676909] ffff8800793ed010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.678002] ffff8800793ed020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.679097] ffff8800793ed030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.682094] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.683914] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.687721] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.689284] XFS (sdc): Unmount and run xfs_repair
[  440.690232] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.691692] ffff880077540000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.693278] ffff880077540010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.694639] ffff880077540020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.696239] ffff880077540030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.697604] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.698911] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.703176] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.704568] XFS (sdc): Unmount and run xfs_repair
[  440.705420] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.706251] ffff880077fa8000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.707323] ffff880077fa8010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.708349] ffff880077fa8020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.709358] ffff880077fa8030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.711913] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.713091] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.717089] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.718498] XFS (sdc): Unmount and run xfs_repair
[  440.720218] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.721677] ffff8800790eb000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.722827] ffff8800790eb010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.723913] ffff8800790eb020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.725066] ffff8800790eb030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.727246] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.728516] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.730122] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.731710] XFS (sdc): Unmount and run xfs_repair
[  440.732470] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.733377] ffff880079377000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.735015] ffff880079377010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.736202] ffff880079377020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.737276] ffff880079377030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.739158] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.740434] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.771161] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.772689] XFS (sdc): Unmount and run xfs_repair
[  440.773591] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.774618] ffff880077cc1000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.775859] ffff880077cc1010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.777104] ffff880077cc1020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.778453] ffff880077cc1030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.780910] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.782343] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.783768] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.785263] XFS (sdc): Unmount and run xfs_repair
[  440.785915] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.786631] ffff880077617000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.787650] ffff880077617010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.788828] ffff880077617020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.789994] ffff880077617030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.791204] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.792605] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.796746] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.798261] XFS (sdc): Unmount and run xfs_repair
[  440.799156] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.800113] ffff88007769a000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.801636] ffff88007769a010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.803249] ffff88007769a020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.804552] ffff88007769a030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.805930] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.808455] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.810819] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.812150] XFS (sdc): Unmount and run xfs_repair
[  440.812879] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.813653] ffff88007a426000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.814638] ffff88007a426010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.815635] ffff88007a426020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.816616] ffff88007a426030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.817997] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.819268] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.820356] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.821664] XFS (sdc): Unmount and run xfs_repair
[  440.822429] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.823263] ffff88007a427000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.825054] ffff88007a427010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.826662] ffff88007a427020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.828439] ffff88007a427030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.830523] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.832158] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.833994] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.835496] XFS (sdc): Unmount and run xfs_repair
[  440.836323] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.837151] ffff88007a426000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.838127] ffff88007a426010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.839205] ffff88007a426020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.840223] ffff88007a426030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.842309] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.843616] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.844244] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.847759] XFS (sdc): Unmount and run xfs_repair
[  440.849032] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.850208] ffff88007a427000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.851330] ffff88007a427010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.852406] ffff88007a427020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.853386] ffff88007a427030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.855815] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.857076] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.860710] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.862287] XFS (sdc): Unmount and run xfs_repair
[  440.863249] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.864417] ffff8800793ce000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.865578] ffff8800793ce010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.866922] ffff8800793ce020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.867999] ffff8800793ce030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.870628] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.871911] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.873964] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.882328] XFS (sdc): Unmount and run xfs_repair
[  440.883152] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.886926] ffff8800793cf000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.888265] ffff8800793cf010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.889247] ffff8800793cf020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.890212] ffff8800793cf030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.891194] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.892312] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.895125] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.896396] XFS (sdc): Unmount and run xfs_repair
[  440.897932] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.898833] ffff88007a71a000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.901149] ffff88007a71a010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.905091] ffff88007a71a020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.907677] ffff88007a71a030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.910888] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.912802] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.913856] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.915245] XFS (sdc): Unmount and run xfs_repair
[  440.916013] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.916901] ffff8800793ce000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.917877] ffff8800793ce010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.919017] ffff8800793ce020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.920262] ffff8800793ce030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.921393] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.922932] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.924367] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.925770] XFS (sdc): Unmount and run xfs_repair
[  440.926831] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.927941] ffff88007a71a000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.929325] ffff88007a71a010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.930391] ffff88007a71a020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.931552] ffff88007a71a030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.933694] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.936952] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.940340] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.941753] XFS (sdc): Unmount and run xfs_repair
[  440.942637] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.943537] ffff88007a719000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.944645] ffff88007a719010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.945612] ffff88007a719020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.946565] ffff88007a719030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.948975] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.950310] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.952302] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.953518] XFS (sdc): Unmount and run xfs_repair
[  440.954200] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.955310] ffff880077d35000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.956515] ffff880077d35010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.957739] ffff880077d35020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.958992] ffff880077d35030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.960215] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.961614] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.962451] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.963669] XFS (sdc): Unmount and run xfs_repair
[  440.964326] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.965133] ffff88007a719000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.966204] ffff88007a719010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.967185] ffff88007a719020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.968266] ffff88007a719030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.970139] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.971403] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.981997] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.983338] XFS (sdc): Unmount and run xfs_repair
[  440.984103] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.984934] ffff8800793ed000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.986002] ffff8800793ed010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.986983] ffff8800793ed020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.988066] ffff8800793ed030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.990718] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.992280] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.997138] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.998645] XFS (sdc): Unmount and run xfs_repair
[  440.999972] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.001058] ffff880077eb7000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.002164] ffff880077eb7010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.003303] ffff880077eb7020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.004300] ffff880077eb7030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.005824] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.008076] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.012822] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.014223] XFS (sdc): Unmount and run xfs_repair
[  441.015013] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.015973] ffff8800793ed000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.017433] ffff8800793ed010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.018618] ffff8800793ed020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.019683] ffff8800793ed030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.021397] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.022487] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.025427] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.026642] XFS (sdc): Unmount and run xfs_repair
[  441.027324] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.028095] ffff880077d20000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.029051] ffff880077d20010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.029960] ffff880077d20020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.030881] ffff880077d20030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.032248] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.033551] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.033995] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.035209] XFS (sdc): Unmount and run xfs_repair
[  441.036336] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.037321] ffff880078203000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.038396] ffff880078203010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.039471] ffff880078203020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.040539] ffff880078203030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.042331] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.044412] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.046128] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.047573] XFS (sdc): Unmount and run xfs_repair
[  441.048404] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.049214] ffff880077d20000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.050164] ffff880077d20010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.051077] ffff880077d20020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.052004] ffff880077d20030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.053418] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.054591] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.065338] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.068558] XFS (sdc): Unmount and run xfs_repair
[  441.069462] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.070343] ffff880077541000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.071391] ffff880077541010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.072451] ffff880077541020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.074132] ffff880077541030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.075900] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.077149] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.078198] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.081979] XFS (sdc): Unmount and run xfs_repair
[  441.082805] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.083596] ffff880077e60000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.084705] ffff880077e60010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.085719] ffff880077e60020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.086726] ffff880077e60030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.087811] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.089019] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.090455] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.091898] XFS (sdc): Unmount and run xfs_repair
[  441.092665] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.093470] ffff880078203000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.094473] ffff880078203010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.095405] ffff880078203020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.096481] ffff880078203030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.097533] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.098792] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.099624] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.100949] XFS (sdc): Unmount and run xfs_repair
[  441.101838] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.105800] ffff88007a657000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.107151] ffff88007a657010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.108521] ffff88007a657020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.109821] ffff88007a657030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.112455] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.113664] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.117142] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.118755] XFS (sdc): Unmount and run xfs_repair
[  441.119631] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.120680] ffff880077fca000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.121909] ffff880077fca010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.123012] ffff880077fca020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.124193] ffff880077fca030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.125910] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.128276] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.130187] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.132054] XFS (sdc): Unmount and run xfs_repair
[  441.132929] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.133857] ffff88007599c000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.134941] ffff88007599c010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.136004] ffff88007599c020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.137107] ffff88007599c030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.138861] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.142779] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.144361] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.145755] XFS (sdc): Unmount and run xfs_repair
[  441.146444] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.147400] ffff880078203000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.148410] ffff880078203010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.149352] ffff880078203020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.150372] ffff880078203030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.152078] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.153211] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.153731] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.161028] XFS (sdc): Unmount and run xfs_repair
[  441.163805] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.164823] ffff880077d22000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.165843] ffff880077d22010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.166822] ffff880077d22020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.167762] ffff880077d22030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.168814] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.169863] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.171754] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.173034] XFS (sdc): Unmount and run xfs_repair
[  441.173775] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.175231] ffff880078203000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.177127] ffff880078203010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.180829] ffff880078203020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.182082] ffff880078203030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.183465] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.185113] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.188621] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.189995] XFS (sdc): Unmount and run xfs_repair
[  441.191488] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.193246] ffff880077d22000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.194619] ffff880077d22010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.195758] ffff880077d22020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.196853] ffff880077d22030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.198236] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.200198] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.203452] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.205076] XFS (sdc): Unmount and run xfs_repair
[  441.205803] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.206605] ffff88007a697000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.207564] ffff88007a697010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.208474] ffff88007a697020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.209370] ffff88007a697030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.211083] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.212224] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.214240] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.215614] XFS (sdc): Unmount and run xfs_repair
[  441.216357] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.217377] ffff880077746000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.218371] ffff880077746010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.219359] ffff880077746020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.220389] ffff880077746030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.221702] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.226403] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.229548] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.231698] XFS (sdc): Unmount and run xfs_repair
[  441.232544] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.234192] ffff880077d7d000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.236861] ffff880077d7d010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.238626] ffff880077d7d020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.239763] ffff880077d7d030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.241832] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.243196] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.244430] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.245826] XFS (sdc): Unmount and run xfs_repair
[  441.246661] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.247652] ffff88007745e000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.248752] ffff88007745e010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.249747] ffff88007745e020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.250807] ffff88007745e030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.251915] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.253967] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.255616] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.257094] XFS (sdc): Unmount and run xfs_repair
[  441.258316] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.259717] ffff880077786000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.261355] ffff880077786010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.262696] ffff880077786020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.265817] ffff880077786030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.267629] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.271034] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.275378] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.279362] XFS (sdc): Unmount and run xfs_repair
[  441.280072] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.280975] ffff880076d97000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.282213] ffff880076d97010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.284831] ffff880076d97020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.286030] ffff880076d97030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.287090] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.288243] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.291837] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.293432] XFS (sdc): Unmount and run xfs_repair
[  441.294273] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.297733] ffff880077cc1000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.300370] ffff880077cc1010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.301541] ffff880077cc1020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.302793] ffff880077cc1030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.304296] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.306019] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.307535] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.310013] XFS (sdc): Unmount and run xfs_repair
[  441.311066] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.311981] ffff880076d97000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.313174] ffff880076d97010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.314320] ffff880076d97020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.315441] ffff880076d97030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.316623] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.318356] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.322172] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.323588] XFS (sdc): Unmount and run xfs_repair
[  441.326704] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.327931] ffff88007937e000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.329016] ffff88007937e010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.329970] ffff88007937e020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.330972] ffff88007937e030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.331968] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.333231] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.333672] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.334928] XFS (sdc): Unmount and run xfs_repair
[  441.335711] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.336566] ffff880079122000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.338237] ffff880079122010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.339284] ffff880079122020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.340319] ffff880079122030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.344369] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.346111] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.349057] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.350390] XFS (sdc): Unmount and run xfs_repair
[  441.351112] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.351888] ffff880077faf000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.352977] ffff880077faf010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.353974] ffff880077faf020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.354997] ffff880077faf030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.357031] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.358374] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.360535] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.363036] XFS (sdc): Unmount and run xfs_repair
[  441.364877] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.366246] ffff88007937e000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.367657] ffff88007937e010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.368788] ffff88007937e020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.369884] ffff88007937e030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.370928] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.372963] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.377184] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.378938] XFS (sdc): Unmount and run xfs_repair
[  441.380469] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.382190] ffff880077faf000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.383794] ffff880077faf010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.385315] ffff880077faf020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.387937] ffff880077faf030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.389158] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.390341] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.390748] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.392071] XFS (sdc): Unmount and run xfs_repair
[  441.393072] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.394270] ffff88007937e000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.395415] ffff88007937e010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.396539] ffff88007937e020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.397731] ffff88007937e030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.400346] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.401541] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.401976] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.403286] XFS (sdc): Unmount and run xfs_repair
[  441.406327] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.407315] ffff880077faf000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.408679] ffff880077faf010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.409859] ffff880077faf020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.410896] ffff880077faf030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.412045] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.413662] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.414545] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.416210] XFS (sdc): Unmount and run xfs_repair
[  441.416955] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.417733] ffff88007937e000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.418853] ffff88007937e010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.420862] ffff88007937e020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.423954] ffff88007937e030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.426111] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.428570] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.430109] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.432292] XFS (sdc): Unmount and run xfs_repair
[  441.433915] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.435729] ffff880077faf000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.437110] ffff880077faf010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.438520] ffff880077faf020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.440040] ffff880077faf030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.441980] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.443609] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.444683] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.446056] XFS (sdc): Unmount and run xfs_repair
[  441.447673] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.451280] ffff880078207000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.453490] ffff880078207010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.455953] ffff880078207020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.457360] ffff880078207030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.460759] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.462814] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.464093] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.465521] XFS (sdc): Unmount and run xfs_repair
[  441.466417] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.467357] ffff880077670000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.468487] ffff880077670010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.469642] ffff880077670020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.471603] ffff880077670030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.473180] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.475257] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.476480] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.477802] XFS (sdc): Unmount and run xfs_repair
[  441.478644] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.479569] ffff880078207000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.480630] ffff880078207010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.481704] ffff880078207020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.482851] ffff880078207030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.484048] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.485291] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.492303] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.494081] XFS (sdc): Unmount and run xfs_repair
[  441.494921] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.495848] ffff880077670000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.497148] ffff880077670010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.498303] ffff880077670020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.499467] ffff880077670030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.500738] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.502407] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.503547] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.505119] XFS (sdc): Unmount and run xfs_repair
[  441.506411] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.507344] ffff880077671000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.508504] ffff880077671010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.509602] ffff880077671020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.510663] ffff880077671030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.512245] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.513687] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.515118] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.517243] XFS (sdc): Unmount and run xfs_repair
[  441.518111] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.519248] ffff880078205000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.522926] ffff880078205010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.524219] ffff880078205020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.525762] ffff880078205030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.528758] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.530985] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.532995] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.534285] XFS (sdc): Unmount and run xfs_repair
[  441.535092] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.535880] ffff88007a6a6000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.536903] ffff88007a6a6010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.537925] ffff88007a6a6020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.539187] ffff88007a6a6030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.541160] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.542492] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.545012] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.546312] XFS (sdc): Unmount and run xfs_repair
[  441.547063] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.547854] ffff880077505000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.548760] ffff880077505010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.549771] ffff880077505020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.550838] ffff880077505030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.552984] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.554603] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.556981] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.558404] XFS (sdc): Unmount and run xfs_repair
[  441.559236] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.560133] ffff880077c96000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.561164] ffff880077c96010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.562255] ffff880077c96020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.563934] ffff880077c96030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.565646] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.567658] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.570561] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.572226] XFS (sdc): Unmount and run xfs_repair
[  441.573068] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.573915] ffff88007747f000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.574910] ffff88007747f010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.576225] ffff88007747f020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.577785] ffff88007747f030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.579133] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.581412] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.582356] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.584001] XFS (sdc): Unmount and run xfs_repair
[  441.584754] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.585546] ffff88007a68a000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.587879] ffff88007a68a010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.590152] ffff88007a68a020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.592425] ffff88007a68a030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.594946] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.596587] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.597286] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.598704] XFS (sdc): Unmount and run xfs_repair
[  441.599508] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.600363] ffff880077d20000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.601419] ffff880077d20010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.602358] ffff880077d20020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.604911] ffff880077d20030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.608051] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.610293] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.613253] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.614895] XFS (sdc): Unmount and run xfs_repair
[  441.615645] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.616508] ffff88007a68a000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.617556] ffff88007a68a010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.618712] ffff88007a68a020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.619757] ffff88007a68a030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.621106] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.623083] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.624361] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.625792] XFS (sdc): Unmount and run xfs_repair
[  441.626630] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.627574] ffff880077d20000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.628607] ffff880077d20010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.630033] ffff880077d20020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.631555] ffff880077d20030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.634249] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.637314] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.640120] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.642120] XFS (sdc): Unmount and run xfs_repair
[  441.643658] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.647122] ffff88007824d000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.648394] ffff88007824d010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.649651] ffff88007824d020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.650729] ffff88007824d030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.651942] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.653885] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.654482] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.655948] XFS (sdc): Unmount and run xfs_repair
[  441.656756] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.658174] ffff880077d20000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.659575] ffff880077d20010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.660997] ffff880077d20020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.662122] ffff880077d20030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.663201] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.664567] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.665219] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.666491] XFS (sdc): Unmount and run xfs_repair
[  441.667216] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.667979] ffff88007824d000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.668937] ffff88007824d010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.669849] ffff88007824d020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.670796] ffff88007824d030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.672177] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.674262] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.674703] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.676846] XFS (sdc): Unmount and run xfs_repair
[  441.677615] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.678430] ffff880077d20000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.679465] ffff880077d20010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.680534] ffff880077d20020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.681819] ffff880077d20030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.683740] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.686034] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.687377] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.688658] XFS (sdc): Unmount and run xfs_repair
[  441.689383] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.690145] ffff8800774b8000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.691123] ffff8800774b8010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.694021] ffff8800774b8020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.695369] ffff8800774b8030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.696960] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.698110] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.699332] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.704991] XFS (sdc): Unmount and run xfs_repair
[  441.706111] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.707137] ffff8800792f5000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.709063] ffff8800792f5010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.711229] ffff8800792f5020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.713089] ffff8800792f5030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.714883] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.716331] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.717552] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.718961] XFS (sdc): Unmount and run xfs_repair
[  441.719685] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.720488] ffff8800774b8000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.721538] ffff8800774b8010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.722620] ffff8800774b8020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.723636] ffff8800774b8030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.725075] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.726412] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.727985] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.729283] XFS (sdc): Unmount and run xfs_repair
[  441.730017] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.730803] ffff8800792f5000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.733350] ffff8800792f5010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.735352] ffff8800792f5020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.738699] ffff8800792f5030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.741912] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.743103] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.744942] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.746362] XFS (sdc): Unmount and run xfs_repair
[  441.747140] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.747946] ffff8800774b8000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.749043] ffff8800774b8010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.749945] ffff8800774b8020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.750880] ffff8800774b8030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.753814] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.755010] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.756699] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.758026] XFS (sdc): Unmount and run xfs_repair
[  441.758832] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.759967] ffff880077fa9000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.761997] ffff880077fa9010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.764023] ffff880077fa9020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.765303] ffff880077fa9030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.766482] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.768371] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.769266] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.771001] XFS (sdc): Unmount and run xfs_repair
[  441.771987] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.773274] ffff880077505000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.774537] ffff880077505010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.775656] ffff880077505020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.776747] ffff880077505030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.777915] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.779028] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.781340] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.783183] XFS (sdc): Unmount and run xfs_repair
[  441.784928] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.785951] ffff880077fa9000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.787262] ffff880077fa9010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.788554] ffff880077fa9020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.790690] ffff880077fa9030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.793056] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.797757] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.799679] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.801074] XFS (sdc): Unmount and run xfs_repair
[  441.801847] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.802710] ffff880077505000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.803952] ffff880077505010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.805521] ffff880077505020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.809025] ffff880077505030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.810501] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.812090] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.813377] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.814728] XFS (sdc): Unmount and run xfs_repair
[  441.815522] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.816633] ffff880077fa9000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.818601] ffff880077fa9010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.819638] ffff880077fa9020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.820626] ffff880077fa9030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.822031] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.830676] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.832154] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.833430] XFS (sdc): Unmount and run xfs_repair
[  441.834158] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.834992] ffff880077505000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.835989] ffff880077505010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.836988] ffff880077505020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.837940] ffff880077505030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.839070] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.840628] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.846349] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.848024] XFS (sdc): Unmount and run xfs_repair
[  441.849726] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.852512] ffff880077fa9000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.854717] ffff880077fa9010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.858143] ffff880077fa9020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.859836] ffff880077fa9030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.861469] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.864421] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.872553] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.874021] XFS (sdc): Unmount and run xfs_repair
[  441.875305] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.876256] ffff880077531000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.877249] ffff880077531010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.878281] ffff880077531020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.879343] ffff880077531030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.880606] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.882317] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.887394] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.888963] XFS (sdc): Unmount and run xfs_repair
[  441.889775] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.891380] ffff880077504000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.893214] ffff880077504010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.894654] ffff880077504020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.896325] ffff880077504030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.897674] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.899138] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.900588] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.906865] XFS (sdc): Unmount and run xfs_repair
[  441.907676] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.908520] ffff880077d20000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.909525] ffff880077d20010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.910584] ffff880077d20020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.911815] ffff880077d20030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.912981] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.914169] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.949207] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  441.950692] XFS (sdc): Unmount and run xfs_repair
[  441.951484] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.953175] ffff880078302000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  441.954804] ffff880078302010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.956248] ffff880078302020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  441.957703] ffff880078302030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  441.959409] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.961489] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.962733] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  441.964028] XFS (sdc): Unmount and run xfs_repair
[  441.964707] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.965483] ffff880077d34000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  441.966433] ffff880077d34010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.967388] ffff880077d34020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  441.968401] ffff880077d34030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  441.971566] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.973652] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.977183] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  441.978537] XFS (sdc): Unmount and run xfs_repair
[  441.979476] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.980593] ffff880078302000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  441.981787] ffff880078302010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.982825] ffff880078302020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  441.984150] ffff880078302030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  441.985562] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.988421] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.989325] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  441.991076] XFS (sdc): Unmount and run xfs_repair
[  441.992048] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.995120] ffff880077d34000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  441.996768] ffff880077d34010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.997985] ffff880077d34020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  441.999210] ffff880077d34030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.000379] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.002708] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.003633] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.004900] XFS (sdc): Unmount and run xfs_repair
[  442.005569] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.006336] ffff880077ceb000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.007352] ffff880077ceb010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.008782] ffff880077ceb020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.010144] ffff880077ceb030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.011264] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.013307] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.013750] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.015378] XFS (sdc): Unmount and run xfs_repair
[  442.017941] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.018982] ffff880077e96000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.020163] ffff880077e96010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.021409] ffff880077e96020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.022613] ffff880077e96030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.023769] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.024926] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.025945] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.027321] XFS (sdc): Unmount and run xfs_repair
[  442.028103] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.029053] ffff88007908b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.030614] ffff88007908b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.032605] ffff88007908b020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.034196] ffff88007908b030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.035434] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.036724] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.041552] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.042988] XFS (sdc): Unmount and run xfs_repair
[  442.043843] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.044774] ffff880077746000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.045857] ffff880077746010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.046850] ffff880077746020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.047852] ffff880077746030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.049850] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.050969] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.052547] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.053835] XFS (sdc): Unmount and run xfs_repair
[  442.054535] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.055338] ffff8800782eb000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.056361] ffff8800782eb010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.057334] ffff8800782eb020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.058359] ffff8800782eb030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.060261] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.061415] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.063158] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.065017] XFS (sdc): Unmount and run xfs_repair
[  442.066917] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.068144] ffff8800793c6000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.069462] ffff8800793c6010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.070596] ffff8800793c6020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.071685] ffff8800793c6030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.072779] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.074014] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.078638] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.079984] XFS (sdc): Unmount and run xfs_repair
[  442.080910] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.083060] ffff8800782eb000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.084287] ffff8800782eb010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.085404] ffff8800782eb020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.086477] ffff8800782eb030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.087697] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.089188] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.091621] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.092980] XFS (sdc): Unmount and run xfs_repair
[  442.093720] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.094493] ffff880077fbf000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.095476] ffff880077fbf010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.096487] ffff880077fbf020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.097514] ffff880077fbf030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.098670] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.100275] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.102440] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.103822] XFS (sdc): Unmount and run xfs_repair
[  442.104533] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.105284] ffff8800793c6000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.107211] ffff8800793c6010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.109537] ffff8800793c6020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.111419] ffff8800793c6030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.113962] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.115308] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.116950] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.118335] XFS (sdc): Unmount and run xfs_repair
[  442.119152] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.120130] ffff880077e90000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.121413] ffff880077e90010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.122692] ffff880077e90020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.123856] ffff880077e90030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.124934] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.126522] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.127366] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.128634] XFS (sdc): Unmount and run xfs_repair
[  442.132183] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.134383] ffff88007773b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.135550] ffff88007773b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.136678] ffff88007773b020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.137696] ffff88007773b030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.139975] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.141649] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.145075] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.146749] XFS (sdc): Unmount and run xfs_repair
[  442.147512] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.148317] ffff880077e90000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.151071] ffff880077e90010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.152300] ffff880077e90020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.155020] ffff880077e90030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.157303] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.158742] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.160261] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.161625] XFS (sdc): Unmount and run xfs_repair
[  442.162374] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.163273] ffff880077458000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.164217] ffff880077458010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.165171] ffff880077458020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.166194] ffff880077458030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.167880] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.168943] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.170351] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.172068] XFS (sdc): Unmount and run xfs_repair
[  442.172975] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.173874] ffff88007764d000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.174865] ffff88007764d010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.175949] ffff88007764d020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.176999] ffff88007764d030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.178080] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.179703] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.180689] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.182356] XFS (sdc): Unmount and run xfs_repair
[  442.183246] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.184514] ffff880077458000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.185623] ffff880077458010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.186687] ffff880077458020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.187791] ffff880077458030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.189243] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.190784] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.192515] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.194085] XFS (sdc): Unmount and run xfs_repair
[  442.194919] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.195868] ffff880077698000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.197345] ffff880077698010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.198443] ffff880077698020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.199458] ffff880077698030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.201155] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.202642] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.203297] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.205663] XFS (sdc): Unmount and run xfs_repair
[  442.206457] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.207569] ffff88007764d000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.210683] ffff88007764d010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.212500] ffff88007764d020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.213614] ffff88007764d030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.215383] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.219614] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.221981] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.223489] XFS (sdc): Unmount and run xfs_repair
[  442.224276] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.225515] ffff880077698000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.226572] ffff880077698010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.229961] ffff880077698020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.231251] ffff880077698030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.233519] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.234949] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.237376] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.238803] XFS (sdc): Unmount and run xfs_repair
[  442.239598] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.240660] ffff88007764d000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.242329] ffff88007764d010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.243487] ffff88007764d020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.244546] ffff88007764d030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.245893] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.248734] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.250211] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.251724] XFS (sdc): Unmount and run xfs_repair
[  442.252500] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.253513] ffff880077698000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.254671] ffff880077698010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.255702] ffff880077698020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.256719] ffff880077698030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.258171] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.259647] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.261013] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.262573] XFS (sdc): Unmount and run xfs_repair
[  442.267002] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.268432] ffff880077459000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.270478] ffff880077459010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.271919] ffff880077459020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.273590] ffff880077459030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.275972] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.279856] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.280385] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.281666] XFS (sdc): Unmount and run xfs_repair
[  442.282499] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.283473] ffff880077698000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.285525] ffff880077698010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.287896] ffff880077698020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.288931] ffff880077698030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.290150] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.291928] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.292352] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.295597] XFS (sdc): Unmount and run xfs_repair
[  442.296457] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.297370] ffff880077459000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.298435] ffff880077459010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.299527] ffff880077459020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.300540] ffff880077459030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.304043] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.306501] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.311461] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.312945] XFS (sdc): Unmount and run xfs_repair
[  442.314132] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.315159] ffff8800782ee000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.316651] ffff8800782ee010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.317843] ffff8800782ee020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.318854] ffff8800782ee030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.319963] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.321216] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.322614] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.323939] XFS (sdc): Unmount and run xfs_repair
[  442.324704] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.326461] ffff880077e92000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.327949] ffff880077e92010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.329400] ffff880077e92020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.330567] ffff880077e92030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.331739] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.333370] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.334489] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.335959] XFS (sdc): Unmount and run xfs_repair
[  442.337416] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.338373] ffff880077ffb000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.339517] ffff880077ffb010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.340558] ffff880077ffb020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.341523] ffff880077ffb030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.342722] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.344205] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.345730] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.347078] XFS (sdc): Unmount and run xfs_repair
[  442.347891] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.348768] ffff880078305000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.349781] ffff880078305010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.350751] ffff880078305020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.351728] ffff880078305030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.353035] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.354734] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.356312] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.357661] XFS (sdc): Unmount and run xfs_repair
[  442.358454] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.359322] ffff88007a73b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.360345] ffff88007a73b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.361284] ffff88007a73b020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.362203] ffff88007a73b030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.364214] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.365409] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.366235] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.367717] XFS (sdc): Unmount and run xfs_repair
[  442.370598] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.371801] ffff880078305000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.374126] ffff880078305010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.377929] ffff880078305020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.379227] ffff880078305030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.382315] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.383591] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.385032] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.386337] XFS (sdc): Unmount and run xfs_repair
[  442.387178] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.388288] ffff88007a73b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.389568] ffff88007a73b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.390774] ffff88007a73b020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.392804] ffff88007a73b030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.394676] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.396345] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.397601] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.399082] XFS (sdc): Unmount and run xfs_repair
[  442.399832] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.401460] ffff880077f37000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.403535] ffff880077f37010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.404782] ffff880077f37020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.406287] ffff880077f37030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.408129] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.409884] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.411114] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.413055] XFS (sdc): Unmount and run xfs_repair
[  442.414572] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.415641] ffff880077458000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.416740] ffff880077458010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.417886] ffff880077458020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.419004] ffff880077458030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.421488] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.422791] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.424419] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.426033] XFS (sdc): Unmount and run xfs_repair
[  442.427079] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.427966] ffff880077f37000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.428990] ffff880077f37010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.429977] ffff880077f37020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.430967] ffff880077f37030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.432769] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.434391] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.435171] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.436496] XFS (sdc): Unmount and run xfs_repair
[  442.437189] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.437945] ffff880077458000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.438939] ffff880077458010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.439903] ffff880077458020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.440853] ffff880077458030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.443340] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.444714] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.446329] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.449409] XFS (sdc): Unmount and run xfs_repair
[  442.450286] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.452000] ffff880077f37000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.453190] ffff880077f37010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.454977] ffff880077f37020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.456235] ffff880077f37030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.458886] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.460363] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.460992] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.462477] XFS (sdc): Unmount and run xfs_repair
[  442.463456] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.464344] ffff880077458000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.465429] ffff880077458010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.466460] ffff880077458020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.467472] ffff880077458030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.468561] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.470131] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.471110] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.472374] XFS (sdc): Unmount and run xfs_repair
[  442.473161] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.474279] ffff88007804a000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.475415] ffff88007804a010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.476462] ffff88007804a020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.478410] ffff88007804a030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.481155] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.482741] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.483990] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.485295] XFS (sdc): Unmount and run xfs_repair
[  442.487606] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.488653] ffff880077e93000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.489819] ffff880077e93010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.490967] ffff880077e93020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.492085] ffff880077e93030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.493343] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.496482] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.497500] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.498811] XFS (sdc): Unmount and run xfs_repair
[  442.499857] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.501406] ffff880077fcd000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.502694] ffff880077fcd010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.503784] ffff880077fcd020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.504955] ffff880077fcd030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.506758] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.508764] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.510821] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.512509] XFS (sdc): Unmount and run xfs_repair
[  442.514337] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.515600] ffff8800782ed000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.516803] ffff8800782ed010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.517915] ffff8800782ed020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.518834] ffff8800782ed030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.520899] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.522487] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.523738] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.525253] XFS (sdc): Unmount and run xfs_repair
[  442.526023] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.526904] ffff880077fcd000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.528127] ffff880077fcd010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.529266] ffff880077fcd020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.530404] ffff880077fcd030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.531691] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.532852] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.535274] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.538289] XFS (sdc): Unmount and run xfs_repair
[  442.540936] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.542107] ffff880077fcd000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.543210] ffff880077fcd010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.544295] ffff880077fcd020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.547696] ffff880077fcd030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.549990] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.551557] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.552904] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.558719] XFS (sdc): Unmount and run xfs_repair
[  442.559473] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.560715] ffff88007817e000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.561784] ffff88007817e010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.562725] ffff88007817e020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.563954] ffff88007817e030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.565418] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.567063] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.570044] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.571590] XFS (sdc): Unmount and run xfs_repair
[  442.572420] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.573299] ffff88007776f000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.574357] ffff88007776f010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.575511] ffff88007776f020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.576987] ffff88007776f030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.579244] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.580550] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.581969] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.583237] XFS (sdc): Unmount and run xfs_repair
[  442.583968] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.584982] ffff88007817e000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.587926] ffff88007817e010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.589150] ffff88007817e020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.590580] ffff88007817e030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.592070] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.593576] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.595678] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.596969] XFS (sdc): Unmount and run xfs_repair
[  442.597618] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.598817] ffff8800777ee000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.600231] ffff8800777ee010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.601336] ffff8800777ee020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.602321] ffff8800777ee030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.603472] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.604929] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.605600] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.606961] XFS (sdc): Unmount and run xfs_repair
[  442.607660] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.608542] ffff8800777ef000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.609569] ffff8800777ef010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.610755] ffff8800777ef020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.611950] ffff8800777ef030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.613891] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.615409] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  443.524136] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  443.526083] XFS (sdc): Unmount and run xfs_repair
[  443.527109] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  443.528340] ffff8800775c7000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  443.529883] ffff8800775c7010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  443.531419] ffff8800775c7020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  443.532569] ffff8800775c7030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  443.533588] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  443.534990] XFS (sdc): xfs_do_force_shutdown(0x1) called from line 315 of file fs/xfs/xfs_trans_buf.c.  Return address = 0xffffffffa025e1b9
[  443.585494] XFS (sdc): I/O Error Detected. Shutting down filesystem
[  443.586398] XFS (sdc): Please umount the filesystem and rectify the problem(s)
[  443.587285] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  443.651592] XFS (sdc): xfs_log_force: error -5 returned.
[  443.673050] XFS (sdc): xfs_log_force: error -5 returned.
[  443.676852] XFS (sdc): Unmounting Filesystem
[  443.676859] XFS (sdc): xfs_log_force: error -5 returned.
[  443.681074] XFS (sdc): xfs_log_force: error -5 returned.
[  444.031175] XFS (sdc): Mounting V4 Filesystem
[  444.979543] XFS (sdc): Starting recovery (logdev: internal)
[  445.578254] XFS (sdc): Ending recovery (logdev: internal)
[  445.591130] XFS (sdc): Unmounting Filesystem
[  446.674420] XFS (sdc): Mounting V4 Filesystem
[  446.684134] XFS (sdc): Ending clean mount
[  450.764788] XFS (sdc): Unmounting Filesystem

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] xfs/083: disable dmesg check
  2016-07-13  5:11   ` Darrick J. Wong
  2016-07-13  8:02     ` Xiao Yang
@ 2016-07-14  0:57     ` Xiao Yang
  2016-07-14  7:16     ` Guangwen Feng
  2 siblings, 0 replies; 10+ messages in thread
From: Xiao Yang @ 2016-07-14  0:57 UTC (permalink / raw)
  To: Darrick J. Wong; +Cc: fstests

[-- Attachment #1: Type: text/plain, Size: 1727 bytes --]

于 2016/07/13 13:11, Darrick J. Wong 写道:
> On Wed, Jul 13, 2016 at 12:25:55PM +0800, Eryu Guan wrote:
>> On Tue, Jul 12, 2016 at 01:41:44PM +0800, Xiao Yang wrote:
>>> xfs/083 will corrupt the fs intentionally, there will be WARNINGs
>>> in dmesg as expected, so here disable dmesg check.
>>>
>>> Signed-off-by: Xiao Yang<yangx.jy@cn.fujitsu.com>
>>> ---
>>>   tests/xfs/083 | 4 ++++
>>>   1 file changed, 4 insertions(+)
>>>
>>> diff --git a/tests/xfs/083 b/tests/xfs/083
>>> index d897754..040f3b6 100755
>>> --- a/tests/xfs/083
>>> +++ b/tests/xfs/083
>>> @@ -102,6 +102,10 @@ scratch_repair() {
>>>   }
>>>
>>>   rm -f $seqres.full
>>> +# This test will corrupt fs intentionally, so there will be WARNINGs
>>> +# in dmesg as expected
>>> +_disable_dmesg_check
>>> +
>> This looks fine to me, but I'd like Darrick to review it as well :)
> I really want to know which WARN_ON they're hitting -- if the FS is
> corrupt, XFS should be returning -EFSCORRUPTED, which doesn't trigger
> warnings.
>
> (I suspect it's the warning that gets printed when corrupt inodes are
> found...)
>
> --D
>
Hi Darrick,

We run xfs/083 in kernel v4.7-rc7-92d21ac and get the dmesg,
please have a look at the attachment, thanks.

Regards,
Xiao Yang
>> Thanks,
>> Eryu
>>
>>>   echo "See interesting results in $seqres.full" | sed -e "s,$RESULT_DIR,RESULT_DIR,g"
>>>   SRCDIR=`pwd`
>>>   test -z "${FUZZ_ARGS}"&&  FUZZ_ARGS="-3 -n 32"
>>> -- 
>>> 1.8.3.1
>>>
>>>
>>>
>>> --
>>> To unsubscribe from this list: send the line "unsubscribe fstests" in
>>> the body of a message to majordomo@vger.kernel.org
>>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>
>




[-- Attachment #2: 083.dmesg --]
[-- Type: text/plain, Size: 295434 bytes --]

[  360.431939] run fstests xfs/083 at 2016-07-13 15:38:08
[  360.641997] XFS (sdc): Unmounting Filesystem
[  360.909068] XFS (sdc): Mounting V4 Filesystem
[  360.918640] XFS (sdc): Ending clean mount
[  436.259805] XFS (sdc): Unmounting Filesystem
[  436.428374] XFS (sdc): Mounting V4 Filesystem
[  436.438448] XFS (sdc): Ending clean mount
[  436.475976] XFS (sdc): Unmounting Filesystem
[  437.460361] XFS (sdc): Mounting V4 Filesystem
[  437.469513] XFS (sdc): Ending clean mount
[  437.523580] XFS (sdc): Internal error XFS_WANT_CORRUPTED_RETURN at line 169 of file fs/xfs/libxfs/xfs_dir2_data.c.  Caller xfs_dir3_data_verify+0x8f/0xa0 [xfs]
[  437.525385] CPU: 0 PID: 53 Comm: kworker/0:1 Not tainted 4.7.0-rc7 #10
[  437.525387] Hardware name: Bochs Bochs, BIOS Bochs 01/01/2011
[  437.525414] Workqueue: xfs-buf/sdc xfs_buf_ioend_work [xfs]
[  437.525416]  0000000000000286 000000008fe89895 ffff88007c047cb0 ffffffff8134128f
[  437.525418]  ffffffffa026ada0 ffff88007937a000 ffff88007c047cc8 ffffffffa02325eb
[  437.525419]  ffffffffa021532f ffff88007c047d50 ffffffffa02150b2 ffff88007937a010
[  437.525421] Call Trace:
[  437.525425]  [<ffffffff8134128f>] dump_stack+0x63/0x84
[  437.525437]  [<ffffffffa02325eb>] xfs_error_report+0x3b/0x40 [xfs]
[  437.525447]  [<ffffffffa021532f>] ? xfs_dir3_data_verify+0x8f/0xa0 [xfs]
[  437.525459]  [<ffffffffa02150b2>] __xfs_dir3_data_check+0x372/0x560 [xfs]
[  437.525468]  [<ffffffffa021532f>] xfs_dir3_data_verify+0x8f/0xa0 [xfs]
[  437.525476]  [<ffffffffa0215484>] xfs_dir3_data_read_verify+0x44/0x100 [xfs]
[  437.525480]  [<ffffffff8102c6d9>] ? __switch_to+0x219/0x5c0
[  437.525497]  [<ffffffffa02155b6>] xfs_dir3_data_reada_verify+0x76/0x80 [xfs]
[  437.525508]  [<ffffffffa022fb19>] xfs_buf_ioend+0x79/0x1d0 [xfs]
[  437.525518]  [<ffffffffa022fc85>] xfs_buf_ioend_work+0x15/0x20 [xfs]
[  437.525520]  [<ffffffff810a1e32>] process_one_work+0x152/0x400
[  437.525522]  [<ffffffff810a2725>] worker_thread+0x125/0x4b0
[  437.525523]  [<ffffffff810a2600>] ? rescuer_thread+0x380/0x380
[  437.525524]  [<ffffffff810a82a8>] kthread+0xd8/0xf0
[  437.525527]  [<ffffffff816b72ff>] ret_from_fork+0x1f/0x40
[  437.525528]  [<ffffffff810a81d0>] ? kthread_park+0x60/0x60
[  437.525572] XFS (sdc): Metadata corruption detected at xfs_dir3_data_read_verify+0x5e/0x100 [xfs], xfs_dir3_data block 0x1e00af0
[  437.526937] XFS (sdc): Unmount and run xfs_repair
[  437.527528] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.528303] ffff88007937a000: 58 44 32 44 00 28 00 18 00 58 00 18 00 88 00 18  XD2D.(...X......
[  437.529215] ffff88007937a010: 00 00 00 00 06 00 15 a0 08 30 30 30 31 31 38 39  .........0001189
[  437.530154] ffff88007937a020: 38 00 00 00 00 00 00 10 ff ff 00 18 00 00 2c c5  8.............,.
[  437.531127] ffff88007937a030: 08 30 30 30 31 31 38 39 39 00 00 00 00 00 00 28  .00011899......(
[  437.533075] XFS (sdc): Internal error XFS_WANT_CORRUPTED_RETURN at line 169 of file fs/xfs/libxfs/xfs_dir2_data.c.  Caller xfs_dir3_data_verify+0x8f/0xa0 [xfs]
[  437.534746] CPU: 0 PID: 53 Comm: kworker/0:1 Not tainted 4.7.0-rc7 #10
[  437.534748] Hardware name: Bochs Bochs, BIOS Bochs 01/01/2011
[  437.534778] Workqueue: xfs-buf/sdc xfs_buf_ioend_work [xfs]
[  437.534781]  0000000000000286 000000008fe89895 ffff88007c047cc8 ffffffff8134128f
[  437.534782]  ffffffffa026ada0 ffff88007937a000 ffff88007c047ce0 ffffffffa02325eb
[  437.534784]  ffffffffa021532f ffff88007c047d68 ffffffffa02150b2 ffff88007937a010
[  437.534786] Call Trace:
[  437.534790]  [<ffffffff8134128f>] dump_stack+0x63/0x84
[  437.534803]  [<ffffffffa02325eb>] xfs_error_report+0x3b/0x40 [xfs]
[  437.534812]  [<ffffffffa021532f>] ? xfs_dir3_data_verify+0x8f/0xa0 [xfs]
[  437.534822]  [<ffffffffa02150b2>] __xfs_dir3_data_check+0x372/0x560 [xfs]
[  437.534825]  [<ffffffff810bde73>] ? set_next_entity+0x73/0x790
[  437.534826]  [<ffffffff810bf9f5>] ? put_prev_entity+0x35/0x6f0
[  437.534835]  [<ffffffffa021532f>] xfs_dir3_data_verify+0x8f/0xa0 [xfs]
[  437.534844]  [<ffffffffa0215484>] xfs_dir3_data_read_verify+0x44/0x100 [xfs]
[  437.534855]  [<ffffffffa022fb19>] xfs_buf_ioend+0x79/0x1d0 [xfs]
[  437.534864]  [<ffffffffa022fc85>] xfs_buf_ioend_work+0x15/0x20 [xfs]
[  437.534867]  [<ffffffff810a1e32>] process_one_work+0x152/0x400
[  437.534873]  [<ffffffff810a2725>] worker_thread+0x125/0x4b0
[  437.534875]  [<ffffffff810a2600>] ? rescuer_thread+0x380/0x380
[  437.534876]  [<ffffffff810a82a8>] kthread+0xd8/0xf0
[  437.534879]  [<ffffffff816b72ff>] ret_from_fork+0x1f/0x40
[  437.534880]  [<ffffffff810a81d0>] ? kthread_park+0x60/0x60
[  437.534898] XFS (sdc): Metadata corruption detected at xfs_dir3_data_read_verify+0x5e/0x100 [xfs], xfs_dir3_data block 0x1e00af0
[  437.536301] XFS (sdc): Unmount and run xfs_repair
[  437.536909] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.537615] ffff88007937a000: 58 44 32 44 00 28 00 18 00 58 00 18 00 88 00 18  XD2D.(...X......
[  437.538535] ffff88007937a010: 00 00 00 00 06 00 15 a0 08 30 30 30 31 31 38 39  .........0001189
[  437.539582] ffff88007937a020: 38 00 00 00 00 00 00 10 ff ff 00 18 00 00 2c c5  8.............,.
[  437.540509] ffff88007937a030: 08 30 30 30 31 31 38 39 39 00 00 00 00 00 00 28  .00011899......(
[  437.545106] XFS (sdc): metadata I/O error: block 0x1e00af0 ("xfs_trans_read_buf_map") error 117 numblks 8
[  437.548463] XFS (sdc): Internal error XFS_WANT_CORRUPTED_RETURN at line 169 of file fs/xfs/libxfs/xfs_dir2_data.c.  Caller xfs_dir3_data_verify+0x8f/0xa0 [xfs]
[  437.550361] CPU: 1 PID: 277 Comm: kworker/1:2 Not tainted 4.7.0-rc7 #10
[  437.550362] Hardware name: Bochs Bochs, BIOS Bochs 01/01/2011
[  437.550392] Workqueue: xfs-buf/sdc xfs_buf_ioend_work [xfs]
[  437.550395]  0000000000000286 00000000abdde129 ffff880034b67cc8 ffffffff8134128f
[  437.550396]  ffffffffa026ada0 ffff88007937a000 ffff880034b67ce0 ffffffffa02325eb
[  437.550398]  ffffffffa021532f ffff880034b67d68 ffffffffa02150b2 ffff88007937a010
[  437.550399] Call Trace:
[  437.550405]  [<ffffffff8134128f>] dump_stack+0x63/0x84
[  437.550417]  [<ffffffffa02325eb>] xfs_error_report+0x3b/0x40 [xfs]
[  437.550428]  [<ffffffffa021532f>] ? xfs_dir3_data_verify+0x8f/0xa0 [xfs]
[  437.550438]  [<ffffffffa02150b2>] __xfs_dir3_data_check+0x372/0x560 [xfs]
[  437.550440]  [<ffffffff810bde73>] ? set_next_entity+0x73/0x790
[  437.550441]  [<ffffffff810bf9f5>] ? put_prev_entity+0x35/0x6f0
[  437.550450]  [<ffffffffa021532f>] xfs_dir3_data_verify+0x8f/0xa0 [xfs]
[  437.550459]  [<ffffffffa0215484>] xfs_dir3_data_read_verify+0x44/0x100 [xfs]
[  437.550470]  [<ffffffffa022fb19>] xfs_buf_ioend+0x79/0x1d0 [xfs]
[  437.550480]  [<ffffffffa022fc85>] xfs_buf_ioend_work+0x15/0x20 [xfs]
[  437.550482]  [<ffffffff810a1e32>] process_one_work+0x152/0x400
[  437.550483]  [<ffffffff810a2725>] worker_thread+0x125/0x4b0
[  437.550486]  [<ffffffff816b6c45>] ? _raw_spin_unlock_irqrestore+0x15/0x20
[  437.550488]  [<ffffffff810a2600>] ? rescuer_thread+0x380/0x380
[  437.550489]  [<ffffffff810a82a8>] kthread+0xd8/0xf0
[  437.550491]  [<ffffffff816b72ff>] ret_from_fork+0x1f/0x40
[  437.550492]  [<ffffffff810a81d0>] ? kthread_park+0x60/0x60
[  437.550503] XFS (sdc): Metadata corruption detected at xfs_dir3_data_read_verify+0x5e/0x100 [xfs], xfs_dir3_data block 0x1e00af0
[  437.552398] XFS (sdc): Unmount and run xfs_repair
[  437.553284] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.554260] ffff88007937a000: 58 44 32 44 00 28 00 18 00 58 00 18 00 88 00 18  XD2D.(...X......
[  437.555363] ffff88007937a010: 00 00 00 00 06 00 15 a0 08 30 30 30 31 31 38 39  .........0001189
[  437.556494] ffff88007937a020: 38 00 00 00 00 00 00 10 ff ff 00 18 00 00 2c c5  8.............,.
[  437.557602] ffff88007937a030: 08 30 30 30 31 31 38 39 39 00 00 00 00 00 00 28  .00011899......(
[  437.559610] XFS (sdc): metadata I/O error: block 0x1e00af0 ("xfs_trans_read_buf_map") error 117 numblks 8
[  437.576737] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.578276] XFS (sdc): Unmount and run xfs_repair
[  437.579205] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.580177] ffff88007925e000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.582150] ffff88007925e010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.583435] ffff88007925e020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.584955] ffff88007925e030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.588411] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.590038] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.591110] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.592549] XFS (sdc): Unmount and run xfs_repair
[  437.593425] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.594356] ffff880077fdf000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.595389] ffff880077fdf010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.596465] ffff880077fdf020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.597526] ffff880077fdf030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.600702] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.602312] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.602833] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.604324] XFS (sdc): Unmount and run xfs_repair
[  437.605075] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.605891] ffff88007925e000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.606921] ffff88007925e010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.607981] ffff88007925e020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.609033] ffff88007925e030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.611120] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.619232] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.619820] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.621318] XFS (sdc): Unmount and run xfs_repair
[  437.622644] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.623720] ffff880077fdf000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.624779] ffff880077fdf010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.625746] ffff880077fdf020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.626736] ffff880077fdf030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.628830] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.630421] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.631937] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.633508] XFS (sdc): Unmount and run xfs_repair
[  437.634433] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.635433] ffff88007925e000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.640721] ffff88007925e010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.641866] ffff88007925e020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.644061] ffff88007925e030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.648219] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.650210] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.652216] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.654010] XFS (sdc): Unmount and run xfs_repair
[  437.655167] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.656070] ffff880077fdf000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.657405] ffff880077fdf010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.660653] ffff880077fdf020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.665640] ffff880077fdf030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.667589] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.680518] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.681279] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.683378] XFS (sdc): Unmount and run xfs_repair
[  437.684701] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.685629] ffff88007925e000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.686634] ffff88007925e010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.687849] ffff88007925e020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.689041] ffff88007925e030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.691120] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.692376] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.695004] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.696358] XFS (sdc): Unmount and run xfs_repair
[  437.697628] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.698726] ffff880077fdf000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.700538] ffff880077fdf010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.703716] ffff880077fdf020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.706288] ffff880077fdf030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.711812] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.713148] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.713583] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.714819] XFS (sdc): Unmount and run xfs_repair
[  437.715516] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.716339] ffff88007925e000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.717339] ffff88007925e010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.718371] ffff88007925e020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.719799] ffff88007925e030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.722072] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.723909] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.727317] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.728761] XFS (sdc): Unmount and run xfs_repair
[  437.729589] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.730399] ffff880077e0e000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.731311] ffff880077e0e010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.732231] ffff880077e0e020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.733335] ffff880077e0e030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.735300] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.738175] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.738542] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.739955] XFS (sdc): Unmount and run xfs_repair
[  437.740722] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.741613] ffff8800782e3000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.742739] ffff8800782e3010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.743728] ffff8800782e3020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.744839] ffff8800782e3030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.746278] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.747379] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.752150] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.754353] XFS (sdc): Unmount and run xfs_repair
[  437.755239] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.756640] ffff880077e0e000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.757860] ffff880077e0e010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.760112] ffff880077e0e020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.762355] ffff880077e0e030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.763533] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.764854] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.768492] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.769917] XFS (sdc): Unmount and run xfs_repair
[  437.770744] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.771665] ffff8800782e3000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.772756] ffff8800782e3010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.773848] ffff8800782e3020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.774950] ffff8800782e3030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.776704] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.780306] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.780765] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.782823] XFS (sdc): Unmount and run xfs_repair
[  437.783690] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.784568] ffff880077e0e000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.785585] ffff880077e0e010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.788946] ffff880077e0e020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.790196] ffff880077e0e030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.791456] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.793107] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.793689] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.795920] XFS (sdc): Unmount and run xfs_repair
[  437.796932] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.797993] ffff8800782e3000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.799235] ffff8800782e3010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.800590] ffff8800782e3020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.801951] ffff8800782e3030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.803136] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.806702] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.807287] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.808610] XFS (sdc): Unmount and run xfs_repair
[  437.811340] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.813594] ffff880077e0e000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.814923] ffff880077e0e010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.816009] ffff880077e0e020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.817234] ffff880077e0e030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.819164] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.823647] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.826678] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.840962] XFS (sdc): Unmount and run xfs_repair
[  437.843744] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.846220] ffff8800782e3000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.848532] ffff8800782e3010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.850988] ffff8800782e3020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.852199] ffff8800782e3030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.853570] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.854866] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.857787] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.859337] XFS (sdc): Unmount and run xfs_repair
[  437.860326] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.862481] ffff880077e0e000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.863643] ffff880077e0e010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.865099] ffff880077e0e020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.866219] ffff880077e0e030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.867990] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.869398] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.870034] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.872221] XFS (sdc): Unmount and run xfs_repair
[  437.873904] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.875390] ffff8800782e3000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.876793] ffff8800782e3010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.877994] ffff8800782e3020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.879006] ffff8800782e3030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.885767] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.887021] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.887683] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.889221] XFS (sdc): Unmount and run xfs_repair
[  437.890057] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.890913] ffff880076a47000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.891968] ffff880076a47010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.893049] ffff880076a47020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.894316] ffff880076a47030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.896673] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.897924] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.899731] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.901071] XFS (sdc): Unmount and run xfs_repair
[  437.902144] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.903144] ffff88007a641000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.904432] ffff88007a641010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.905702] ffff88007a641020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.906844] ffff88007a641030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.909081] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.910303] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.911627] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.913034] XFS (sdc): Unmount and run xfs_repair
[  437.913851] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.914753] ffff880076a47000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.921521] ffff880076a47010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.922804] ffff880076a47020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.923861] ffff880076a47030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.924861] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.925872] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.928032] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.929423] XFS (sdc): Unmount and run xfs_repair
[  437.930248] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.934011] ffff88007a641000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.935445] ffff88007a641010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.936768] ffff88007a641020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.937801] ffff88007a641030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.938966] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.940619] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.941198] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.942534] XFS (sdc): Unmount and run xfs_repair
[  437.943416] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.944401] ffff880076a47000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.945627] ffff880076a47010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.946702] ffff880076a47020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.947782] ffff880076a47030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.950623] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.953755] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.956002] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.957313] XFS (sdc): Unmount and run xfs_repair
[  437.958106] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.958933] ffff88007a641000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.960043] ffff88007a641010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.961054] ffff88007a641020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.965754] ffff88007a641030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.969852] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.972197] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.972568] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.973845] XFS (sdc): Unmount and run xfs_repair
[  437.974619] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.975509] ffff880076a47000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.976566] ffff880076a47010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.978818] ffff880076a47020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.980275] ffff880076a47030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.983028] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.984269] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.984642] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.987626] XFS (sdc): Unmount and run xfs_repair
[  437.988601] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.989384] ffff88007a641000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.990424] ffff88007a641010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.991739] ffff88007a641020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.993674] ffff88007a641030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.996062] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.997599] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.001402] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.002837] XFS (sdc): Unmount and run xfs_repair
[  438.003712] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.004639] ffff880076a47000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.005770] ffff880076a47010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.007458] ffff880076a47020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.008601] ffff880076a47030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.009833] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.011034] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.012064] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.013269] XFS (sdc): Unmount and run xfs_repair
[  438.013932] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.014656] ffff88007a641000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.015623] ffff88007a641010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.016635] ffff88007a641020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.017588] ffff88007a641030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.019330] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.022286] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.025676] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.027061] XFS (sdc): Unmount and run xfs_repair
[  438.027834] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.030016] ffff880076a47000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.036039] ffff880076a47010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.037632] ffff880076a47020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.039452] ffff880076a47030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.041366] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.042991] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.043589] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.045254] XFS (sdc): Unmount and run xfs_repair
[  438.045985] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.047038] ffff88007a641000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.048069] ffff88007a641010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.049075] ffff88007a641020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.050104] ffff88007a641030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.051636] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.057271] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.057902] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.059410] XFS (sdc): Unmount and run xfs_repair
[  438.060277] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.061122] ffff88007905c000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.062834] ffff88007905c010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.065853] ffff88007905c020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.067503] ffff88007905c030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.069290] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.070837] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.071189] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.072510] XFS (sdc): Unmount and run xfs_repair
[  438.073163] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.073932] ffff88007905d000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.074910] ffff88007905d010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.076114] ffff88007905d020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.077161] ffff88007905d030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.078480] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.079716] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.082734] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.085506] XFS (sdc): Unmount and run xfs_repair
[  438.088313] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.089738] ffff880077c14000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.091798] ffff880077c14010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.093121] ffff880077c14020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.094637] ffff880077c14030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.096212] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.097469] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.098222] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.099819] XFS (sdc): Unmount and run xfs_repair
[  438.100638] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.101679] ffff880077c15000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.103612] ffff880077c15010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.109546] ffff880077c15020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.110819] ffff880077c15030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.111860] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.119568] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.121244] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.123003] XFS (sdc): Unmount and run xfs_repair
[  438.123953] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.124831] ffff880077c14000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.126172] ffff880077c14010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.127881] ffff880077c14020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.129427] ffff880077c14030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.131259] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.132964] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.133807] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.135289] XFS (sdc): Unmount and run xfs_repair
[  438.136081] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.137004] ffff880077c15000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.138091] ffff880077c15010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.139370] ffff880077c15020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.140398] ffff880077c15030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.141660] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.143226] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.144027] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.151515] XFS (sdc): Unmount and run xfs_repair
[  438.152359] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.153213] ffff880077c14000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.154591] ffff880077c14010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.156209] ffff880077c14020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.157445] ffff880077c14030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.159879] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.161762] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.162628] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.164082] XFS (sdc): Unmount and run xfs_repair
[  438.165028] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.166004] ffff880077c15000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.167087] ffff880077c15010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.168109] ffff880077c15020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.169199] ffff880077c15030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.170858] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.173646] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.174180] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.177180] XFS (sdc): Unmount and run xfs_repair
[  438.178689] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.179726] ffff880077c14000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.180863] ffff880077c14010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.181901] ffff880077c14020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.185317] ffff880077c14030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.186644] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.190811] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.191186] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.192589] XFS (sdc): Unmount and run xfs_repair
[  438.193437] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.194276] ffff880077c15000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.195268] ffff880077c15010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.196226] ffff880077c15020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.197181] ffff880077c15030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.198253] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.199314] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.199646] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.200819] XFS (sdc): Unmount and run xfs_repair
[  438.201491] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.203276] ffff880077c14000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.205107] ffff880077c14010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.206782] ffff880077c14020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.208157] ffff880077c14030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.209819] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.211270] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.213491] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.214788] XFS (sdc): Unmount and run xfs_repair
[  438.215527] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.216311] ffff880077c15000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.217288] ffff880077c15010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.218231] ffff880077c15020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.219275] ffff880077c15030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.220415] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.221850] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.222899] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.224446] XFS (sdc): Unmount and run xfs_repair
[  438.225868] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.227453] ffff880077c14000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.228912] ffff880077c14010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.230508] ffff880077c14020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.231731] ffff880077c14030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.234109] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.236493] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.239321] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.241326] XFS (sdc): Unmount and run xfs_repair
[  438.242186] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.243086] ffff880077c15000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.244193] ffff880077c15010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.245269] ffff880077c15020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.246365] ffff880077c15030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.248568] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.249894] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.251234] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.252659] XFS (sdc): Unmount and run xfs_repair
[  438.253426] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.254279] ffff880077c14000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.255307] ffff880077c14010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.256327] ffff880077c14020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.259945] ffff880077c14030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.261405] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.264566] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.265015] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.266498] XFS (sdc): Unmount and run xfs_repair
[  438.267252] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.268066] ffff880077c15000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.269359] ffff880077c15010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.271483] ffff880077c15020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.272705] ffff880077c15030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.274867] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.276254] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.277745] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.279524] XFS (sdc): Unmount and run xfs_repair
[  438.280423] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.281347] ffff880077c14000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.282390] ffff880077c14010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.283698] ffff880077c14020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.285080] ffff880077c14030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.286601] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.288939] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.291899] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.293494] XFS (sdc): Unmount and run xfs_repair
[  438.294509] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.296559] ffff880077627000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.297818] ffff880077627010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.298914] ffff880077627020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.299904] ffff880077627030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.303469] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.305731] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.306483] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.308178] XFS (sdc): Unmount and run xfs_repair
[  438.309263] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.311461] ffff88007a70b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.315037] ffff88007a70b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.316275] ffff88007a70b020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.317232] ffff88007a70b030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.318687] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.321450] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.322564] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.324375] XFS (sdc): Unmount and run xfs_repair
[  438.325246] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.326949] ffff880077627000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.328507] ffff880077627010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.338196] ffff880077627020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.342177] ffff880077627030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.346298] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.347421] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.357527] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.359780] XFS (sdc): Unmount and run xfs_repair
[  438.360895] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.361720] ffff88007755f000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.362802] ffff88007755f010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.363821] ffff88007755f020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.364805] ffff88007755f030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.366655] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.367807] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.369089] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.370436] XFS (sdc): Unmount and run xfs_repair
[  438.371306] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.372265] ffff880077ddd000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.373262] ffff880077ddd010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.374823] ffff880077ddd020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.376783] ffff880077ddd030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.380102] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.381809] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.382462] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.383698] XFS (sdc): Unmount and run xfs_repair
[  438.384410] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.385178] ffff88007755f000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.386119] ffff88007755f010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.387267] ffff88007755f020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.388385] ffff88007755f030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.389528] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.390840] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.391256] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.392848] XFS (sdc): Unmount and run xfs_repair
[  438.396560] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.399492] ffff880077ddd000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.401211] ffff880077ddd010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.402983] ffff880077ddd020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.404679] ffff880077ddd030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.406355] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.407655] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.411313] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.417307] XFS (sdc): Unmount and run xfs_repair
[  438.419967] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.422033] ffff880077ddd000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.423730] ffff880077ddd010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.426937] ffff880077ddd020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.428193] ffff880077ddd030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.429308] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.430748] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.431936] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.433322] XFS (sdc): Unmount and run xfs_repair
[  438.434081] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.434932] ffff88007a6cd000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.436031] ffff88007a6cd010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.437200] ffff88007a6cd020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.438348] ffff88007a6cd030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.441178] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.442761] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.444986] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.447079] XFS (sdc): Unmount and run xfs_repair
[  438.447968] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.448756] ffff880077ddd000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.450833] ffff880077ddd010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.454141] ffff880077ddd020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.456393] ffff880077ddd030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.458604] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.459883] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.461416] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.462856] XFS (sdc): Unmount and run xfs_repair
[  438.463670] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.464619] ffff880078061000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.466343] ffff880078061010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.467707] ffff880078061020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.468803] ffff880078061030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.470267] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.471514] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.472122] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.473355] XFS (sdc): Unmount and run xfs_repair
[  438.474033] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.474819] ffff8800792cd000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.475786] ffff8800792cd010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.476760] ffff8800792cd020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.477745] ffff8800792cd030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.480093] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.481366] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.484230] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.485633] XFS (sdc): Unmount and run xfs_repair
[  438.486433] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.487318] ffff880078061000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.488312] ffff880078061010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.489292] ffff880078061020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.490326] ffff880078061030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.491385] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.496385] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.497132] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.498626] XFS (sdc): Unmount and run xfs_repair
[  438.499652] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.501213] ffff8800792cd000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.502361] ffff8800792cd010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.503365] ffff8800792cd020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.507312] ffff8800792cd030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.509405] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.510759] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.519161] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.520903] XFS (sdc): Unmount and run xfs_repair
[  438.521751] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.522753] ffff880078061000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.523848] ffff880078061010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.525192] ffff880078061020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.527958] ffff880078061030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.530771] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.532013] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.533360] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.535985] XFS (sdc): Unmount and run xfs_repair
[  438.537922] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.539754] ffff88007925a000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.541428] ffff88007925a010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.542865] ffff88007925a020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.543996] ffff88007925a030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.545898] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.547410] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.548123] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.549509] XFS (sdc): Unmount and run xfs_repair
[  438.550436] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.551451] ffff88007925b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.552552] ffff88007925b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.553653] ffff88007925b020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.554814] ffff88007925b030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.557319] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.560162] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.561216] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.562427] XFS (sdc): Unmount and run xfs_repair
[  438.563100] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.563916] ffff88007779f000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.564894] ffff88007779f010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.565836] ffff88007779f020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.566880] ffff88007779f030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.569083] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.570248] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.575237] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.579833] XFS (sdc): Unmount and run xfs_repair
[  438.580908] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.581864] ffff8800797a3000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.583137] ffff8800797a3010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.584252] ffff8800797a3020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.585614] ffff8800797a3030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.587399] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.591204] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.591723] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.593613] XFS (sdc): Unmount and run xfs_repair
[  438.595957] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.597163] ffff8800777ad000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.601433] ffff8800777ad010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.603424] ffff8800777ad020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.604834] ffff8800777ad030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.606877] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.608502] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.609703] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.611093] XFS (sdc): Unmount and run xfs_repair
[  438.612059] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.613003] ffff8800797a3000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.614117] ffff8800797a3010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.615175] ffff8800797a3020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.616204] ffff8800797a3030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.617968] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.620130] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.620592] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.621948] XFS (sdc): Unmount and run xfs_repair
[  438.622662] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.623489] ffff8800777ad000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.624483] ffff8800777ad010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.625479] ffff8800777ad020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.626459] ffff8800777ad030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.627400] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.628761] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.629824] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.638337] XFS (sdc): Unmount and run xfs_repair
[  438.640098] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.640929] ffff8800797a3000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.641950] ffff8800797a3010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.642943] ffff8800797a3020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.644326] ffff8800797a3030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.645447] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.646808] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.647813] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.649427] XFS (sdc): Unmount and run xfs_repair
[  438.650307] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.651223] ffff8800769b0000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.652410] ffff8800769b0010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.653633] ffff8800769b0020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.654782] ffff8800769b0030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.658423] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.660230] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.666118] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.667555] XFS (sdc): Unmount and run xfs_repair
[  438.668455] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.669378] ffff88007a3c5000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.670467] ffff88007a3c5010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.671519] ffff88007a3c5020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.672520] ffff88007a3c5030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.674757] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.676685] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.680621] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.682661] XFS (sdc): Unmount and run xfs_repair
[  438.683529] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.684596] ffff88007a740000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.686219] ffff88007a740010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.687629] ffff88007a740020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.689524] ffff88007a740030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.691411] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.693114] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.693734] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.695073] XFS (sdc): Unmount and run xfs_repair
[  438.695868] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.698474] ffff88007a3c5000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.699984] ffff88007a3c5010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.701152] ffff88007a3c5020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.702481] ffff88007a3c5030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.705646] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.706861] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.708359] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.709716] XFS (sdc): Unmount and run xfs_repair
[  438.710497] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.711278] ffff880078183000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.712205] ffff880078183010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.713913] ffff880078183020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.715104] ffff880078183030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.717075] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.718280] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.720983] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.722911] XFS (sdc): Unmount and run xfs_repair
[  438.724066] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.725071] ffff880078005000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.726119] ffff880078005010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.727190] ffff880078005020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.728226] ffff880078005030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.729969] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.731361] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.732747] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.734117] XFS (sdc): Unmount and run xfs_repair
[  438.734902] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.735752] ffff880078183000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.736832] ffff880078183010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.737962] ffff880078183020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.739045] ffff880078183030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.740977] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.743126] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.744501] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.745725] XFS (sdc): Unmount and run xfs_repair
[  438.746442] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.747267] ffff880077fe5000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.748273] ffff880077fe5010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.749320] ffff880077fe5020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.750234] ffff880077fe5030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.752178] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.756882] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.759212] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.760569] XFS (sdc): Unmount and run xfs_repair
[  438.761555] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.762896] ffff8800793d0000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.763974] ffff8800793d0010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.765079] ffff8800793d0020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.766224] ffff8800793d0030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.767303] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.768759] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.772009] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.774195] XFS (sdc): Unmount and run xfs_repair
[  438.775363] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.777658] ffff88007a7c1000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.779076] ffff88007a7c1010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.780252] ffff88007a7c1020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.781722] ffff88007a7c1030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.783360] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.784792] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.789488] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.790954] XFS (sdc): Unmount and run xfs_repair
[  438.794111] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.795980] ffff88007a7c0000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.797165] ffff88007a7c0010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.798473] ffff88007a7c0020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.800261] ffff88007a7c0030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.801453] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.803507] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.804388] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.805609] XFS (sdc): Unmount and run xfs_repair
[  438.806350] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.807097] ffff880077eac000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.808016] ffff880077eac010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.808926] ffff880077eac020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.809843] ffff880077eac030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.811506] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.812625] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.819493] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.820967] XFS (sdc): Unmount and run xfs_repair
[  438.821836] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.822738] ffff88007915c000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.823807] ffff88007915c010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.824862] ffff88007915c020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.827468] ffff88007915c030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.829913] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.835179] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.836340] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.841101] XFS (sdc): Unmount and run xfs_repair
[  438.841860] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.842737] ffff880077eac000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.843950] ffff880077eac010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.844945] ffff880077eac020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.845999] ffff880077eac030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.848330] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.849598] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.854066] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.855342] XFS (sdc): Unmount and run xfs_repair
[  438.856058] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.856908] ffff88007915c000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.857986] ffff88007915c010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.859132] ffff88007915c020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.860254] ffff88007915c030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.862968] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.864620] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.865736] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.867346] XFS (sdc): Unmount and run xfs_repair
[  438.868293] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.869630] ffff880077eac000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.870804] ffff880077eac010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.871859] ffff880077eac020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.872954] ffff880077eac030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.879763] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.883000] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.884597] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.886239] XFS (sdc): Unmount and run xfs_repair
[  438.887116] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.887999] ffff880077e68000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.889017] ffff880077e68010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.890090] ffff880077e68020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.891484] ffff880077e68030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.893523] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.894630] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.898003] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.899265] XFS (sdc): Unmount and run xfs_repair
[  438.899928] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.900634] ffff88007755f000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.901581] ffff88007755f010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.902637] ffff88007755f020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.903668] ffff88007755f030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.906230] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.907559] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.908632] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.909941] XFS (sdc): Unmount and run xfs_repair
[  438.910665] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.911728] ffff880077e68000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.916153] ffff880077e68010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.917679] ffff880077e68020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.919431] ffff880077e68030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.920606] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.922511] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.924386] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.925726] XFS (sdc): Unmount and run xfs_repair
[  438.926588] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.927576] ffff88007755f000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.928765] ffff88007755f010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.929848] ffff88007755f020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.931004] ffff88007755f030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.932901] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.934798] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.937045] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.939484] XFS (sdc): Unmount and run xfs_repair
[  438.940976] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.942460] ffff880077e68000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.943659] ffff880077e68010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.944812] ffff880077e68020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.945822] ffff880077e68030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.946839] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.948175] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.950074] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.951661] XFS (sdc): Unmount and run xfs_repair
[  438.952465] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.953868] ffff880079222000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.957957] ffff880079222010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.959473] ffff880079222020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.960681] ffff880079222030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.961826] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.962952] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.964405] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.965733] XFS (sdc): Unmount and run xfs_repair
[  438.966472] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.967259] ffff88007a697000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.968291] ffff88007a697010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.970131] ffff88007a697020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.972625] ffff88007a697030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.973901] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.975198] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.976963] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.978280] XFS (sdc): Unmount and run xfs_repair
[  438.979086] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.980019] ffff880079276000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.983999] ffff880079276010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.987699] ffff880079276020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.991137] ffff880079276030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.995977] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.002487] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.006924] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  439.009009] XFS (sdc): Unmount and run xfs_repair
[  439.009914] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.011171] ffff88007a697000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  439.012436] ffff88007a697010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  439.013706] ffff88007a697020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  439.014916] ffff88007a697030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  439.016860] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.018425] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.019466] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  439.024321] XFS (sdc): Unmount and run xfs_repair
[  439.025518] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.026507] ffff880079276000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  439.028112] ffff880079276010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  439.029458] ffff880079276020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  439.031656] ffff880079276030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  439.033612] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.035362] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.035912] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  439.037534] XFS (sdc): Unmount and run xfs_repair
[  439.038328] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.039641] ffff88007a697000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  439.041373] ffff88007a697010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  439.043147] ffff88007a697020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  439.044399] ffff88007a697030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  439.046170] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.047882] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.048797] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  439.052714] XFS (sdc): Unmount and run xfs_repair
[  439.053985] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.056057] ffff88007a703000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  439.058883] ffff88007a703010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  439.060771] ffff88007a703020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  439.062023] ffff88007a703030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  439.063342] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.064991] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.065765] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  439.067102] XFS (sdc): Unmount and run xfs_repair
[  439.067834] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.068670] ffff88007922f000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  439.069775] ffff88007922f010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  439.071063] ffff88007922f020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  439.072171] ffff88007922f030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  439.075830] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.078017] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.080077] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  439.081388] XFS (sdc): Unmount and run xfs_repair
[  439.082103] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.083061] ffff88007a703000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  439.084999] ffff88007a703010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  439.086860] ffff88007a703020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  439.088918] ffff88007a703030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  439.090203] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.091938] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.095667] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  439.098349] XFS (sdc): Unmount and run xfs_repair
[  439.099267] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.100209] ffff880078097000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  439.101553] ffff880078097010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  439.102882] ffff880078097020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  439.104008] ffff880078097030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  439.106211] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.107831] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.156277] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.157587] XFS (sdc): Unmount and run xfs_repair
[  439.158302] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.159085] ffff880078203000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.160050] ffff880078203010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.161056] ffff880078203020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.162037] ffff880078203030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.163544] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.164646] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.165952] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.167168] XFS (sdc): Unmount and run xfs_repair
[  439.167841] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.168687] ffff88007745e000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.169703] ffff88007745e010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.170750] ffff88007745e020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.171803] ffff88007745e030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.172914] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.174251] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.175176] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.176421] XFS (sdc): Unmount and run xfs_repair
[  439.177177] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.178041] ffff880078203000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.179087] ffff880078203010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.180070] ffff880078203020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.181012] ffff880078203030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.183004] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.186973] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.188902] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.190311] XFS (sdc): Unmount and run xfs_repair
[  439.191144] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.191949] ffff88007745e000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.192974] ffff88007745e010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.194165] ffff88007745e020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.195340] ffff88007745e030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.196877] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.198743] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.202561] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.203959] XFS (sdc): Unmount and run xfs_repair
[  439.204679] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.205552] ffff880078203000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.206683] ffff880078203010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.207762] ffff880078203020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.208905] ffff880078203030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.212046] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.213274] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.213762] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.215225] XFS (sdc): Unmount and run xfs_repair
[  439.216079] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.217305] ffff88007745e000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.218621] ffff88007745e010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.219731] ffff88007745e020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.221247] ffff88007745e030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.224595] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.226257] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.228327] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.229929] XFS (sdc): Unmount and run xfs_repair
[  439.230902] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.231953] ffff880078203000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.233053] ffff880078203010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.234111] ffff880078203020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.235239] ffff880078203030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.236613] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.237839] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.242595] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.244883] XFS (sdc): Unmount and run xfs_repair
[  439.246067] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.247138] ffff88007745e000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.248343] ffff88007745e010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.249761] ffff88007745e020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.251198] ffff88007745e030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.252549] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.255894] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.257072] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.258384] XFS (sdc): Unmount and run xfs_repair
[  439.259175] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.260022] ffff880079219000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.261046] ffff880079219010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.262065] ffff880079219020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.263068] ffff880079219030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.265164] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.266569] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.273311] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.274621] XFS (sdc): Unmount and run xfs_repair
[  439.275967] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.277258] ffff88007745e000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.278429] ffff88007745e010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.280534] ffff88007745e020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.282345] ffff88007745e030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.283674] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.290855] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.295518] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.296881] XFS (sdc): Unmount and run xfs_repair
[  439.297706] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.300662] ffff88007770c000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.303985] ffff88007770c010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.305397] ffff88007770c020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.306516] ffff88007770c030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.308002] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.316157] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.317926] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.319675] XFS (sdc): Unmount and run xfs_repair
[  439.320900] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.322271] ffff8800782e3000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.323402] ffff8800782e3010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.325120] ffff8800782e3020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.326620] ffff8800782e3030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.328675] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.331699] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.333790] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.335263] XFS (sdc): Unmount and run xfs_repair
[  439.336116] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.336998] ffff88007770c000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.338191] ffff88007770c010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.339290] ffff88007770c020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.340279] ffff88007770c030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.341368] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.343618] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.348152] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.349945] XFS (sdc): Unmount and run xfs_repair
[  439.352278] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.353664] ffff8800782e3000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.355121] ffff8800782e3010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.357026] ffff8800782e3020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.360614] ffff8800782e3030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.362604] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.365205] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.365921] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.367380] XFS (sdc): Unmount and run xfs_repair
[  439.368271] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.369155] ffff880077760000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.370240] ffff880077760010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.373470] ffff880077760020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.375334] ffff880077760030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.378038] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.379411] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.380122] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.381428] XFS (sdc): Unmount and run xfs_repair
[  439.382220] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.383267] ffff8800782e3000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.384434] ffff8800782e3010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.385622] ffff8800782e3020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.386663] ffff8800782e3030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.387737] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.388904] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.391755] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.393606] XFS (sdc): Unmount and run xfs_repair
[  439.395232] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.396855] ffff880077760000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.399157] ffff880077760010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.406361] ffff880077760020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.408197] ffff880077760030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.409480] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.410970] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.412361] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.413775] XFS (sdc): Unmount and run xfs_repair
[  439.414517] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.415304] ffff8800782e3000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.416274] ffff8800782e3010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.417304] ffff8800782e3020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.418309] ffff8800782e3030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.420571] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.424395] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.425839] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.428852] XFS (sdc): Unmount and run xfs_repair
[  439.430126] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.431209] ffff88007750b000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.432395] ffff88007750b010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.433556] ffff88007750b020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.434671] ffff88007750b030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.435969] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.437377] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.438204] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.439674] XFS (sdc): Unmount and run xfs_repair
[  439.440535] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.441568] ffff88007a66d000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.442708] ffff88007a66d010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.443711] ffff88007a66d020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.444746] ffff88007a66d030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.445769] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.447518] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.449781] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.451234] XFS (sdc): Unmount and run xfs_repair
[  439.452057] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.452898] ffff88007750b000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.453951] ffff88007750b010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.455049] ffff88007750b020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.456091] ffff88007750b030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.457393] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.458940] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.459877] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.461381] XFS (sdc): Unmount and run xfs_repair
[  439.462348] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.463536] ffff8800782e3000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.465041] ffff8800782e3010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.466251] ffff8800782e3020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.467413] ffff8800782e3030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.469380] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.470656] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.472484] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.474011] XFS (sdc): Unmount and run xfs_repair
[  439.474875] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.476355] ffff88007929d000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.477919] ffff88007929d010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.479109] ffff88007929d020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.480174] ffff88007929d030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.481936] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.483876] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.485529] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.486983] XFS (sdc): Unmount and run xfs_repair
[  439.487790] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.488637] ffff8800761e0000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.489755] ffff8800761e0010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.490824] ffff8800761e0020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.491937] ffff8800761e0030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.493440] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.495313] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.500715] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.502134] XFS (sdc): Unmount and run xfs_repair
[  439.502932] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.504419] ffff88007929d000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.506130] ffff88007929d010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.508312] ffff88007929d020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.511892] ffff88007929d030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.514231] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.515838] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.517606] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.519185] XFS (sdc): Unmount and run xfs_repair
[  439.520156] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.521036] ffff8800761e0000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.522128] ffff8800761e0010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.523197] ffff8800761e0020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.524334] ffff8800761e0030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.526536] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.528764] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.532617] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.533971] XFS (sdc): Unmount and run xfs_repair
[  439.534882] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.535823] ffff88007929d000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.537141] ffff88007929d010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.538568] ffff88007929d020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.539652] ffff88007929d030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.543461] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.545267] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.546575] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.548238] XFS (sdc): Unmount and run xfs_repair
[  439.549066] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.549975] ffff88007813d000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.551099] ffff88007813d010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.552167] ffff88007813d020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.553171] ffff88007813d030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.554376] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.556064] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.557142] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.558659] XFS (sdc): Unmount and run xfs_repair
[  439.559529] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.560389] ffff880077692000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.561392] ffff880077692010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.562506] ffff880077692020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.563787] ffff880077692030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.565244] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.566665] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.567106] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.568453] XFS (sdc): Unmount and run xfs_repair
[  439.569188] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.570051] ffff880077fda000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.571091] ffff880077fda010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.572097] ffff880077fda020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.573073] ffff880077fda030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.574857] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.576729] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.577407] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.578995] XFS (sdc): Unmount and run xfs_repair
[  439.579766] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.580610] ffff880077692000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.584185] ffff880077692010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.587593] ffff880077692020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.590379] ffff880077692030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.593328] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.595040] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.595820] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.597493] XFS (sdc): Unmount and run xfs_repair
[  439.598579] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.599472] ffff880077fda000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.600562] ffff880077fda010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.602543] ffff880077fda020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.604067] ffff880077fda030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.605555] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.607163] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.608113] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.609465] XFS (sdc): Unmount and run xfs_repair
[  439.610287] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.611681] ffff88007770c000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.618831] ffff88007770c010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.620927] ffff88007770c020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.622249] ffff88007770c030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.623621] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.627129] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.633266] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.635067] XFS (sdc): Unmount and run xfs_repair
[  439.635920] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.636749] ffff880077f2b000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.637746] ffff880077f2b010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.638773] ffff880077f2b020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.639873] ffff880077f2b030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.640919] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.642955] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.643881] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.645666] XFS (sdc): Unmount and run xfs_repair
[  439.650811] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.652202] ffff88007915d000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.653617] ffff88007915d010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.655233] ffff88007915d020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.656507] ffff88007915d030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.658849] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.660809] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.661826] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.663477] XFS (sdc): Unmount and run xfs_repair
[  439.664376] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.665344] ffff880077f2b000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.666500] ffff880077f2b010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.667701] ffff880077f2b020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.668897] ffff880077f2b030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.670134] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.671962] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.673452] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.675034] XFS (sdc): Unmount and run xfs_repair
[  439.675825] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.676666] ffff88007a741000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.677716] ffff88007a741010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.678752] ffff88007a741020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.680657] ffff88007a741030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.682571] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.685530] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.686724] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.688202] XFS (sdc): Unmount and run xfs_repair
[  439.689373] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.690397] ffff880077e9a000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.691843] ffff880077e9a010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.693188] ffff880077e9a020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.694241] ffff880077e9a030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.696835] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.700315] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.701271] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.702747] XFS (sdc): Unmount and run xfs_repair
[  439.703510] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.704509] ffff880079352000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.706554] ffff880079352010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.709166] ffff880079352020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.711980] ffff880079352030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.713556] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.716394] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.717154] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.718540] XFS (sdc): Unmount and run xfs_repair
[  439.723295] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.725245] ffff880077616000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.727130] ffff880077616010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.728260] ffff880077616020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.729356] ffff880077616030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.730889] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.732723] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.734961] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.739033] XFS (sdc): Unmount and run xfs_repair
[  439.740122] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.741006] ffff880079352000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.744923] ffff880079352010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.746205] ffff880079352020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.747465] ffff880079352030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.748936] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.750139] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.751141] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.752799] XFS (sdc): Unmount and run xfs_repair
[  439.753946] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.759800] ffff880077616000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.761264] ffff880077616010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.762510] ffff880077616020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.765025] ffff880077616030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.767110] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.770142] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.772324] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.773848] XFS (sdc): Unmount and run xfs_repair
[  439.774549] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.775329] ffff88007915d000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.776509] ffff88007915d010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.777693] ffff88007915d020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.779018] ffff88007915d030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.780261] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.781461] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.782470] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.789493] XFS (sdc): Unmount and run xfs_repair
[  439.791131] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.792284] ffff880078255000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.793820] ffff880078255010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.795862] ffff880078255020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.798524] ffff880078255030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.801201] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.802595] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.804477] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.806154] XFS (sdc): Unmount and run xfs_repair
[  439.807066] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.808787] ffff88007915d000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.810026] ffff88007915d010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.811270] ffff88007915d020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.812617] ffff88007915d030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.813672] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.816140] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.816554] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.817972] XFS (sdc): Unmount and run xfs_repair
[  439.818821] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.819792] ffff880078255000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.821137] ffff880078255010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.822244] ffff880078255020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.823270] ffff880078255030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.827146] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.829776] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.834249] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.835651] XFS (sdc): Unmount and run xfs_repair
[  439.836543] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.837461] ffff88007915d000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.839652] ffff88007915d010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.841423] ffff88007915d020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.843060] ffff88007915d030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.844418] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.846069] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.848308] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.850687] XFS (sdc): Unmount and run xfs_repair
[  439.851732] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.853598] ffff88007a73b000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.854860] ffff88007a73b010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.856169] ffff88007a73b020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.857377] ffff88007a73b030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.860475] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.861561] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.865018] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.866416] XFS (sdc): Unmount and run xfs_repair
[  439.867333] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.868323] ffff8800777cf000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.869811] ffff8800777cf010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.870981] ffff8800777cf020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.872054] ffff8800777cf030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.873251] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.874467] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.879541] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.881067] XFS (sdc): Unmount and run xfs_repair
[  439.881947] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.882874] ffff88007a73b000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.884398] ffff88007a73b010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.886882] ffff88007a73b020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.889078] ffff88007a73b030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.890625] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.892403] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.896581] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.898136] XFS (sdc): Unmount and run xfs_repair
[  439.899089] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.900224] ffff88007811a000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.901325] ffff88007811a010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.902412] ffff88007811a020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.904584] ffff88007811a030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.907957] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.909335] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.909896] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.911192] XFS (sdc): Unmount and run xfs_repair
[  439.911939] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.912858] ffff8800777cf000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.914414] ffff8800777cf010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.916627] ffff8800777cf020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.918957] ffff8800777cf030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.921198] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.923167] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.924605] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.926055] XFS (sdc): Unmount and run xfs_repair
[  439.926955] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.927762] ffff88007811a000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.929416] ffff88007811a010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.931527] ffff88007811a020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.934279] ffff88007811a030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.936224] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.937810] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.939837] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.941868] XFS (sdc): Unmount and run xfs_repair
[  439.943252] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.944270] ffff8800777cf000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.946496] ffff8800777cf010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.947791] ffff8800777cf020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.949512] ffff8800777cf030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.951158] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.954833] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.956440] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.958406] XFS (sdc): Unmount and run xfs_repair
[  439.960927] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.962137] ffff88007811a000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.963356] ffff88007811a010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.964518] ffff88007811a020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.966989] ffff88007811a030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.969146] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.970372] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.971685] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.973080] XFS (sdc): Unmount and run xfs_repair
[  439.973888] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.974767] ffff8800777cf000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.975797] ffff8800777cf010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.977304] ffff8800777cf020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.978578] ffff8800777cf030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.980299] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.982068] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.984175] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.985667] XFS (sdc): Unmount and run xfs_repair
[  439.986999] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.988151] ffff88007811a000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.989303] ffff88007811a010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.990371] ffff88007811a020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.991395] ffff88007811a030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.992427] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.993678] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.994368] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.995648] XFS (sdc): Unmount and run xfs_repair
[  439.996402] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.997246] ffff8800777cf000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.999340] ffff8800777cf010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  440.001476] ffff8800777cf020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  440.003100] ffff8800777cf030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  440.005009] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.006766] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.007616] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  440.009037] XFS (sdc): Unmount and run xfs_repair
[  440.009876] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.010759] ffff88007811a000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  440.012183] ffff88007811a010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  440.014410] ffff88007811a020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  440.016000] ffff88007811a030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  440.017359] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.018751] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.019287] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  440.022008] XFS (sdc): Unmount and run xfs_repair
[  440.023340] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.025187] ffff8800777cf000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  440.026929] ffff8800777cf010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  440.028206] ffff8800777cf020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  440.029443] ffff8800777cf030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  440.030749] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.032115] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.067158] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.068562] XFS (sdc): Unmount and run xfs_repair
[  440.069360] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.070231] ffff8800790e8000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.071298] ffff8800790e8010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.072409] ffff8800790e8020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.073424] ffff8800790e8030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.074805] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.076690] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.077415] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.079001] XFS (sdc): Unmount and run xfs_repair
[  440.079685] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.080501] ffff8800790e9000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.081491] ffff8800790e9010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.082574] ffff8800790e9020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.083619] ffff8800790e9030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.086103] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.087632] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.089584] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.091031] XFS (sdc): Unmount and run xfs_repair
[  440.091912] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.092821] ffff880076d94000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.093960] ffff880076d94010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.095020] ffff880076d94020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.096006] ffff880076d94030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.097900] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.099200] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.100846] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.102336] XFS (sdc): Unmount and run xfs_repair
[  440.103162] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.104126] ffff880077ea1000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.105281] ffff880077ea1010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.106440] ffff880077ea1020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.107506] ffff880077ea1030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.109189] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.111094] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.112307] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.113578] XFS (sdc): Unmount and run xfs_repair
[  440.114265] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.115010] ffff88007774b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.115985] ffff88007774b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.116973] ffff88007774b020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.118020] ffff88007774b030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.119438] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.122227] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.123911] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.125999] XFS (sdc): Unmount and run xfs_repair
[  440.127156] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.127996] ffff880077788000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.129009] ffff880077788010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.130196] ffff880077788020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.131831] ffff880077788030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.133071] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.134187] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.134803] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.136052] XFS (sdc): Unmount and run xfs_repair
[  440.136906] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.137862] ffff88007774b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.138972] ffff88007774b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.141490] ffff88007774b020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.149873] ffff88007774b030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.151868] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.153590] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.157070] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.162387] XFS (sdc): Unmount and run xfs_repair
[  440.163576] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.164837] ffff88007774b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.165984] ffff88007774b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.167011] ffff88007774b020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.168101] ffff88007774b030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.169276] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.170663] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.171470] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.172812] XFS (sdc): Unmount and run xfs_repair
[  440.173694] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.174562] ffff880079262000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.176209] ffff880079262010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.177787] ffff880079262020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.179200] ffff880079262030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.180710] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.182111] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.183096] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.184435] XFS (sdc): Unmount and run xfs_repair
[  440.185184] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.186004] ffff880079078000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.187277] ffff880079078010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.190554] ffff880079078020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.192054] ffff880079078030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.193970] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.197641] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.198138] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.199582] XFS (sdc): Unmount and run xfs_repair
[  440.200378] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.201195] ffff880077f8b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.202287] ffff880077f8b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.203329] ffff880077f8b020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.204352] ffff880077f8b030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.206710] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.208126] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.210171] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.211524] XFS (sdc): Unmount and run xfs_repair
[  440.212441] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.214234] ffff880079078000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.216619] ffff880079078010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.217916] ffff880079078020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.220155] ffff880079078030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.221468] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.222820] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.227279] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.228649] XFS (sdc): Unmount and run xfs_repair
[  440.230925] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.231854] ffff880077f8b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.233909] ffff880077f8b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.235900] ffff880077f8b020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.237050] ffff880077f8b030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.242092] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.244808] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.245488] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.246923] XFS (sdc): Unmount and run xfs_repair
[  440.247867] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.248965] ffff88007902b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.250340] ffff88007902b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.253678] ffff88007902b020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.254997] ffff88007902b030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.257013] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.259046] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.259492] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.260953] XFS (sdc): Unmount and run xfs_repair
[  440.261691] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.262491] ffff880077f8b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.263427] ffff880077f8b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.264468] ffff880077f8b020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.265844] ffff880077f8b030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.267094] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.268380] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.269832] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.271095] XFS (sdc): Unmount and run xfs_repair
[  440.271798] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.274895] ffff88007a689000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.278987] ffff88007a689010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.281078] ffff88007a689020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.282617] ffff88007a689030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.283673] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.284937] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.287433] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.290060] XFS (sdc): Unmount and run xfs_repair
[  440.292053] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.293522] ffff8800780e4000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.294893] ffff8800780e4010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.296086] ffff8800780e4020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.297687] ffff8800780e4030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.299210] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.300374] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.301040] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.305237] XFS (sdc): Unmount and run xfs_repair
[  440.307349] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.309866] ffff88007a689000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.311662] ffff88007a689010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.313079] ffff88007a689020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.314108] ffff88007a689030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.317028] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.326450] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.327692] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.330791] XFS (sdc): Unmount and run xfs_repair
[  440.331696] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.332610] ffff88007a689000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.333781] ffff88007a689010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.334722] ffff88007a689020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.336507] ffff88007a689030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.338654] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.339937] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.341988] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.343335] XFS (sdc): Unmount and run xfs_repair
[  440.344861] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.348975] ffff88007a73b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.350164] ffff88007a73b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.351843] ffff88007a73b020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.353203] ffff88007a73b030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.354253] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.355528] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.356114] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.357410] XFS (sdc): Unmount and run xfs_repair
[  440.358116] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.358945] ffff88007a73b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.359933] ffff88007a73b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.360847] ffff88007a73b020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.361830] ffff88007a73b030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.363971] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.365190] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.368471] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.370125] XFS (sdc): Unmount and run xfs_repair
[  440.371051] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.373946] ffff8800776b6000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.376385] ffff8800776b6010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.377552] ffff8800776b6020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.378702] ffff8800776b6030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.379651] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.382717] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.383559] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.384898] XFS (sdc): Unmount and run xfs_repair
[  440.386725] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.387638] ffff880077777000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.388643] ffff880077777010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.390541] ffff880077777020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.392601] ffff880077777030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.394220] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.395502] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.398534] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.400966] XFS (sdc): Unmount and run xfs_repair
[  440.401742] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.403244] ffff880077d7f000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.404539] ffff880077d7f010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.406440] ffff880077d7f020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.408878] ffff880077d7f030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.411937] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.413510] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.415296] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.419876] XFS (sdc): Unmount and run xfs_repair
[  440.420844] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.421654] ffff880077777000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.422849] ffff880077777010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.424951] ffff880077777020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.426380] ffff880077777030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.428838] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.430537] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.431484] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.433094] XFS (sdc): Unmount and run xfs_repair
[  440.434432] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.435453] ffff880077d7f000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.437880] ffff880077d7f010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.439021] ffff880077d7f020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.440102] ffff880077d7f030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.441982] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.443106] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.444433] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.445844] XFS (sdc): Unmount and run xfs_repair
[  440.446674] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.449101] ffff880077777000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.450303] ffff880077777010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.451386] ffff880077777020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.452442] ffff880077777030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.453859] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.455248] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.457583] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.458879] XFS (sdc): Unmount and run xfs_repair
[  440.459675] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.460546] ffff88007a71b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.461551] ffff88007a71b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.462541] ffff88007a71b020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.463561] ffff88007a71b030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.464834] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.469339] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.478046] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.479404] XFS (sdc): Unmount and run xfs_repair
[  440.480202] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.481742] ffff88007a71b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.483415] ffff88007a71b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.484573] ffff88007a71b020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.485663] ffff88007a71b030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.487486] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.488632] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.491245] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.493185] XFS (sdc): Unmount and run xfs_repair
[  440.494339] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.495914] ffff880077777000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.497263] ffff880077777010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.498475] ffff880077777020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.499843] ffff880077777030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.501956] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.503570] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.505497] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.507055] XFS (sdc): Unmount and run xfs_repair
[  440.507785] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.508609] ffff88007a689000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.509637] ffff88007a689010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.510656] ffff88007a689020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.511635] ffff88007a689030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.513113] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.514217] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.516367] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.517599] XFS (sdc): Unmount and run xfs_repair
[  440.519982] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.520982] ffff880077777000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.523584] ffff880077777010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.526329] ffff880077777020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.527882] ffff880077777030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.529164] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.530450] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.531010] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.532255] XFS (sdc): Unmount and run xfs_repair
[  440.532957] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.534019] ffff88007a689000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.535133] ffff88007a689010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.536139] ffff88007a689020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.537167] ffff88007a689030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.539318] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.540814] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.543934] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.545290] XFS (sdc): Unmount and run xfs_repair
[  440.546242] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.547583] ffff880077777000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.550977] ffff880077777010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.552088] ffff880077777020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.553228] ffff880077777030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.554377] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.555490] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.558755] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.560036] XFS (sdc): Unmount and run xfs_repair
[  440.560755] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.561603] ffff88007a689000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.563050] ffff88007a689010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.565926] ffff88007a689020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.566981] ffff88007a689030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.568011] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.569680] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.570910] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.572577] XFS (sdc): Unmount and run xfs_repair
[  440.573723] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.574634] ffff880077748000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.575652] ffff880077748010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.576934] ffff880077748020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.578183] ffff880077748030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.582683] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.584430] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.585466] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.586768] XFS (sdc): Unmount and run xfs_repair
[  440.587611] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.588490] ffff880078016000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.589489] ffff880078016010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.590475] ffff880078016020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.591665] ffff880078016030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.593697] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.594963] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.599225] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.601283] XFS (sdc): Unmount and run xfs_repair
[  440.602170] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.602943] ffff880077ca4000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.603902] ffff880077ca4010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.604980] ffff880077ca4020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.606030] ffff880077ca4030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.608522] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.612007] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.612645] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.614059] XFS (sdc): Unmount and run xfs_repair
[  440.614774] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.615620] ffff880078016000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.616662] ffff880078016010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.617681] ffff880078016020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.618734] ffff880078016030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.621086] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.622471] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.625122] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.626396] XFS (sdc): Unmount and run xfs_repair
[  440.627209] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.628124] ffff880077ca4000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.630146] ffff880077ca4010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.631382] ffff880077ca4020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.633319] ffff880077ca4030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.635835] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.638242] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.638801] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.641813] XFS (sdc): Unmount and run xfs_repair
[  440.642591] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.643457] ffff880078016000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.644950] ffff880078016010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.646631] ffff880078016020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.647988] ffff880078016030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.650120] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.651384] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.652715] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.654009] XFS (sdc): Unmount and run xfs_repair
[  440.654634] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.655371] ffff8800793ed000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.656357] ffff8800793ed010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.657339] ffff8800793ed020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.658326] ffff8800793ed030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.660246] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.661649] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.662992] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.664189] XFS (sdc): Unmount and run xfs_repair
[  440.664888] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.665704] ffff880077e0c000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.666666] ffff880077e0c010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.667877] ffff880077e0c020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.668932] ffff880077e0c030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.670840] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.672275] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.672797] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.674389] XFS (sdc): Unmount and run xfs_repair
[  440.675096] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.675880] ffff8800793ed000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.676909] ffff8800793ed010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.678002] ffff8800793ed020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.679097] ffff8800793ed030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.682094] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.683914] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.687721] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.689284] XFS (sdc): Unmount and run xfs_repair
[  440.690232] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.691692] ffff880077540000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.693278] ffff880077540010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.694639] ffff880077540020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.696239] ffff880077540030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.697604] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.698911] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.703176] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.704568] XFS (sdc): Unmount and run xfs_repair
[  440.705420] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.706251] ffff880077fa8000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.707323] ffff880077fa8010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.708349] ffff880077fa8020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.709358] ffff880077fa8030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.711913] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.713091] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.717089] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.718498] XFS (sdc): Unmount and run xfs_repair
[  440.720218] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.721677] ffff8800790eb000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.722827] ffff8800790eb010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.723913] ffff8800790eb020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.725066] ffff8800790eb030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.727246] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.728516] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.730122] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.731710] XFS (sdc): Unmount and run xfs_repair
[  440.732470] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.733377] ffff880079377000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.735015] ffff880079377010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.736202] ffff880079377020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.737276] ffff880079377030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.739158] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.740434] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.771161] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.772689] XFS (sdc): Unmount and run xfs_repair
[  440.773591] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.774618] ffff880077cc1000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.775859] ffff880077cc1010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.777104] ffff880077cc1020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.778453] ffff880077cc1030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.780910] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.782343] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.783768] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.785263] XFS (sdc): Unmount and run xfs_repair
[  440.785915] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.786631] ffff880077617000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.787650] ffff880077617010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.788828] ffff880077617020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.789994] ffff880077617030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.791204] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.792605] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.796746] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.798261] XFS (sdc): Unmount and run xfs_repair
[  440.799156] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.800113] ffff88007769a000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.801636] ffff88007769a010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.803249] ffff88007769a020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.804552] ffff88007769a030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.805930] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.808455] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.810819] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.812150] XFS (sdc): Unmount and run xfs_repair
[  440.812879] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.813653] ffff88007a426000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.814638] ffff88007a426010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.815635] ffff88007a426020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.816616] ffff88007a426030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.817997] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.819268] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.820356] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.821664] XFS (sdc): Unmount and run xfs_repair
[  440.822429] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.823263] ffff88007a427000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.825054] ffff88007a427010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.826662] ffff88007a427020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.828439] ffff88007a427030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.830523] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.832158] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.833994] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.835496] XFS (sdc): Unmount and run xfs_repair
[  440.836323] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.837151] ffff88007a426000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.838127] ffff88007a426010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.839205] ffff88007a426020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.840223] ffff88007a426030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.842309] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.843616] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.844244] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.847759] XFS (sdc): Unmount and run xfs_repair
[  440.849032] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.850208] ffff88007a427000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.851330] ffff88007a427010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.852406] ffff88007a427020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.853386] ffff88007a427030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.855815] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.857076] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.860710] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.862287] XFS (sdc): Unmount and run xfs_repair
[  440.863249] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.864417] ffff8800793ce000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.865578] ffff8800793ce010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.866922] ffff8800793ce020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.867999] ffff8800793ce030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.870628] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.871911] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.873964] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.882328] XFS (sdc): Unmount and run xfs_repair
[  440.883152] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.886926] ffff8800793cf000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.888265] ffff8800793cf010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.889247] ffff8800793cf020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.890212] ffff8800793cf030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.891194] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.892312] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.895125] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.896396] XFS (sdc): Unmount and run xfs_repair
[  440.897932] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.898833] ffff88007a71a000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.901149] ffff88007a71a010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.905091] ffff88007a71a020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.907677] ffff88007a71a030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.910888] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.912802] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.913856] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.915245] XFS (sdc): Unmount and run xfs_repair
[  440.916013] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.916901] ffff8800793ce000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.917877] ffff8800793ce010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.919017] ffff8800793ce020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.920262] ffff8800793ce030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.921393] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.922932] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.924367] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.925770] XFS (sdc): Unmount and run xfs_repair
[  440.926831] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.927941] ffff88007a71a000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.929325] ffff88007a71a010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.930391] ffff88007a71a020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.931552] ffff88007a71a030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.933694] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.936952] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.940340] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.941753] XFS (sdc): Unmount and run xfs_repair
[  440.942637] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.943537] ffff88007a719000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.944645] ffff88007a719010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.945612] ffff88007a719020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.946565] ffff88007a719030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.948975] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.950310] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.952302] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.953518] XFS (sdc): Unmount and run xfs_repair
[  440.954200] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.955310] ffff880077d35000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.956515] ffff880077d35010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.957739] ffff880077d35020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.958992] ffff880077d35030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.960215] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.961614] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.962451] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.963669] XFS (sdc): Unmount and run xfs_repair
[  440.964326] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.965133] ffff88007a719000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.966204] ffff88007a719010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.967185] ffff88007a719020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.968266] ffff88007a719030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.970139] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.971403] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.981997] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.983338] XFS (sdc): Unmount and run xfs_repair
[  440.984103] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.984934] ffff8800793ed000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.986002] ffff8800793ed010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.986983] ffff8800793ed020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.988066] ffff8800793ed030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.990718] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.992280] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.997138] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.998645] XFS (sdc): Unmount and run xfs_repair
[  440.999972] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.001058] ffff880077eb7000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.002164] ffff880077eb7010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.003303] ffff880077eb7020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.004300] ffff880077eb7030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.005824] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.008076] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.012822] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.014223] XFS (sdc): Unmount and run xfs_repair
[  441.015013] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.015973] ffff8800793ed000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.017433] ffff8800793ed010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.018618] ffff8800793ed020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.019683] ffff8800793ed030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.021397] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.022487] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.025427] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.026642] XFS (sdc): Unmount and run xfs_repair
[  441.027324] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.028095] ffff880077d20000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.029051] ffff880077d20010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.029960] ffff880077d20020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.030881] ffff880077d20030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.032248] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.033551] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.033995] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.035209] XFS (sdc): Unmount and run xfs_repair
[  441.036336] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.037321] ffff880078203000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.038396] ffff880078203010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.039471] ffff880078203020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.040539] ffff880078203030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.042331] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.044412] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.046128] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.047573] XFS (sdc): Unmount and run xfs_repair
[  441.048404] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.049214] ffff880077d20000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.050164] ffff880077d20010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.051077] ffff880077d20020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.052004] ffff880077d20030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.053418] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.054591] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.065338] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.068558] XFS (sdc): Unmount and run xfs_repair
[  441.069462] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.070343] ffff880077541000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.071391] ffff880077541010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.072451] ffff880077541020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.074132] ffff880077541030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.075900] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.077149] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.078198] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.081979] XFS (sdc): Unmount and run xfs_repair
[  441.082805] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.083596] ffff880077e60000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.084705] ffff880077e60010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.085719] ffff880077e60020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.086726] ffff880077e60030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.087811] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.089019] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.090455] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.091898] XFS (sdc): Unmount and run xfs_repair
[  441.092665] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.093470] ffff880078203000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.094473] ffff880078203010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.095405] ffff880078203020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.096481] ffff880078203030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.097533] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.098792] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.099624] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.100949] XFS (sdc): Unmount and run xfs_repair
[  441.101838] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.105800] ffff88007a657000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.107151] ffff88007a657010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.108521] ffff88007a657020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.109821] ffff88007a657030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.112455] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.113664] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.117142] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.118755] XFS (sdc): Unmount and run xfs_repair
[  441.119631] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.120680] ffff880077fca000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.121909] ffff880077fca010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.123012] ffff880077fca020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.124193] ffff880077fca030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.125910] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.128276] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.130187] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.132054] XFS (sdc): Unmount and run xfs_repair
[  441.132929] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.133857] ffff88007599c000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.134941] ffff88007599c010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.136004] ffff88007599c020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.137107] ffff88007599c030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.138861] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.142779] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.144361] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.145755] XFS (sdc): Unmount and run xfs_repair
[  441.146444] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.147400] ffff880078203000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.148410] ffff880078203010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.149352] ffff880078203020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.150372] ffff880078203030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.152078] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.153211] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.153731] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.161028] XFS (sdc): Unmount and run xfs_repair
[  441.163805] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.164823] ffff880077d22000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.165843] ffff880077d22010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.166822] ffff880077d22020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.167762] ffff880077d22030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.168814] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.169863] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.171754] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.173034] XFS (sdc): Unmount and run xfs_repair
[  441.173775] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.175231] ffff880078203000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.177127] ffff880078203010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.180829] ffff880078203020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.182082] ffff880078203030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.183465] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.185113] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.188621] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.189995] XFS (sdc): Unmount and run xfs_repair
[  441.191488] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.193246] ffff880077d22000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.194619] ffff880077d22010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.195758] ffff880077d22020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.196853] ffff880077d22030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.198236] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.200198] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.203452] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.205076] XFS (sdc): Unmount and run xfs_repair
[  441.205803] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.206605] ffff88007a697000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.207564] ffff88007a697010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.208474] ffff88007a697020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.209370] ffff88007a697030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.211083] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.212224] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.214240] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.215614] XFS (sdc): Unmount and run xfs_repair
[  441.216357] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.217377] ffff880077746000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.218371] ffff880077746010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.219359] ffff880077746020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.220389] ffff880077746030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.221702] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.226403] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.229548] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.231698] XFS (sdc): Unmount and run xfs_repair
[  441.232544] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.234192] ffff880077d7d000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.236861] ffff880077d7d010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.238626] ffff880077d7d020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.239763] ffff880077d7d030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.241832] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.243196] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.244430] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.245826] XFS (sdc): Unmount and run xfs_repair
[  441.246661] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.247652] ffff88007745e000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.248752] ffff88007745e010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.249747] ffff88007745e020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.250807] ffff88007745e030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.251915] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.253967] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.255616] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.257094] XFS (sdc): Unmount and run xfs_repair
[  441.258316] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.259717] ffff880077786000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.261355] ffff880077786010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.262696] ffff880077786020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.265817] ffff880077786030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.267629] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.271034] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.275378] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.279362] XFS (sdc): Unmount and run xfs_repair
[  441.280072] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.280975] ffff880076d97000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.282213] ffff880076d97010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.284831] ffff880076d97020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.286030] ffff880076d97030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.287090] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.288243] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.291837] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.293432] XFS (sdc): Unmount and run xfs_repair
[  441.294273] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.297733] ffff880077cc1000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.300370] ffff880077cc1010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.301541] ffff880077cc1020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.302793] ffff880077cc1030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.304296] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.306019] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.307535] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.310013] XFS (sdc): Unmount and run xfs_repair
[  441.311066] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.311981] ffff880076d97000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.313174] ffff880076d97010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.314320] ffff880076d97020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.315441] ffff880076d97030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.316623] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.318356] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.322172] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.323588] XFS (sdc): Unmount and run xfs_repair
[  441.326704] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.327931] ffff88007937e000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.329016] ffff88007937e010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.329970] ffff88007937e020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.330972] ffff88007937e030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.331968] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.333231] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.333672] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.334928] XFS (sdc): Unmount and run xfs_repair
[  441.335711] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.336566] ffff880079122000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.338237] ffff880079122010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.339284] ffff880079122020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.340319] ffff880079122030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.344369] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.346111] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.349057] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.350390] XFS (sdc): Unmount and run xfs_repair
[  441.351112] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.351888] ffff880077faf000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.352977] ffff880077faf010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.353974] ffff880077faf020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.354997] ffff880077faf030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.357031] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.358374] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.360535] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.363036] XFS (sdc): Unmount and run xfs_repair
[  441.364877] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.366246] ffff88007937e000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.367657] ffff88007937e010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.368788] ffff88007937e020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.369884] ffff88007937e030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.370928] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.372963] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.377184] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.378938] XFS (sdc): Unmount and run xfs_repair
[  441.380469] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.382190] ffff880077faf000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.383794] ffff880077faf010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.385315] ffff880077faf020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.387937] ffff880077faf030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.389158] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.390341] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.390748] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.392071] XFS (sdc): Unmount and run xfs_repair
[  441.393072] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.394270] ffff88007937e000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.395415] ffff88007937e010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.396539] ffff88007937e020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.397731] ffff88007937e030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.400346] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.401541] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.401976] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.403286] XFS (sdc): Unmount and run xfs_repair
[  441.406327] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.407315] ffff880077faf000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.408679] ffff880077faf010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.409859] ffff880077faf020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.410896] ffff880077faf030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.412045] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.413662] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.414545] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.416210] XFS (sdc): Unmount and run xfs_repair
[  441.416955] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.417733] ffff88007937e000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.418853] ffff88007937e010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.420862] ffff88007937e020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.423954] ffff88007937e030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.426111] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.428570] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.430109] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.432292] XFS (sdc): Unmount and run xfs_repair
[  441.433915] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.435729] ffff880077faf000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.437110] ffff880077faf010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.438520] ffff880077faf020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.440040] ffff880077faf030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.441980] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.443609] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.444683] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.446056] XFS (sdc): Unmount and run xfs_repair
[  441.447673] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.451280] ffff880078207000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.453490] ffff880078207010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.455953] ffff880078207020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.457360] ffff880078207030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.460759] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.462814] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.464093] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.465521] XFS (sdc): Unmount and run xfs_repair
[  441.466417] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.467357] ffff880077670000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.468487] ffff880077670010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.469642] ffff880077670020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.471603] ffff880077670030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.473180] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.475257] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.476480] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.477802] XFS (sdc): Unmount and run xfs_repair
[  441.478644] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.479569] ffff880078207000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.480630] ffff880078207010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.481704] ffff880078207020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.482851] ffff880078207030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.484048] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.485291] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.492303] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.494081] XFS (sdc): Unmount and run xfs_repair
[  441.494921] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.495848] ffff880077670000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.497148] ffff880077670010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.498303] ffff880077670020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.499467] ffff880077670030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.500738] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.502407] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.503547] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.505119] XFS (sdc): Unmount and run xfs_repair
[  441.506411] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.507344] ffff880077671000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.508504] ffff880077671010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.509602] ffff880077671020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.510663] ffff880077671030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.512245] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.513687] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.515118] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.517243] XFS (sdc): Unmount and run xfs_repair
[  441.518111] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.519248] ffff880078205000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.522926] ffff880078205010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.524219] ffff880078205020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.525762] ffff880078205030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.528758] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.530985] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.532995] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.534285] XFS (sdc): Unmount and run xfs_repair
[  441.535092] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.535880] ffff88007a6a6000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.536903] ffff88007a6a6010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.537925] ffff88007a6a6020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.539187] ffff88007a6a6030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.541160] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.542492] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.545012] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.546312] XFS (sdc): Unmount and run xfs_repair
[  441.547063] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.547854] ffff880077505000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.548760] ffff880077505010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.549771] ffff880077505020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.550838] ffff880077505030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.552984] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.554603] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.556981] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.558404] XFS (sdc): Unmount and run xfs_repair
[  441.559236] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.560133] ffff880077c96000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.561164] ffff880077c96010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.562255] ffff880077c96020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.563934] ffff880077c96030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.565646] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.567658] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.570561] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.572226] XFS (sdc): Unmount and run xfs_repair
[  441.573068] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.573915] ffff88007747f000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.574910] ffff88007747f010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.576225] ffff88007747f020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.577785] ffff88007747f030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.579133] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.581412] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.582356] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.584001] XFS (sdc): Unmount and run xfs_repair
[  441.584754] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.585546] ffff88007a68a000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.587879] ffff88007a68a010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.590152] ffff88007a68a020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.592425] ffff88007a68a030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.594946] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.596587] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.597286] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.598704] XFS (sdc): Unmount and run xfs_repair
[  441.599508] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.600363] ffff880077d20000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.601419] ffff880077d20010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.602358] ffff880077d20020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.604911] ffff880077d20030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.608051] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.610293] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.613253] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.614895] XFS (sdc): Unmount and run xfs_repair
[  441.615645] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.616508] ffff88007a68a000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.617556] ffff88007a68a010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.618712] ffff88007a68a020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.619757] ffff88007a68a030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.621106] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.623083] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.624361] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.625792] XFS (sdc): Unmount and run xfs_repair
[  441.626630] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.627574] ffff880077d20000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.628607] ffff880077d20010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.630033] ffff880077d20020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.631555] ffff880077d20030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.634249] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.637314] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.640120] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.642120] XFS (sdc): Unmount and run xfs_repair
[  441.643658] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.647122] ffff88007824d000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.648394] ffff88007824d010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.649651] ffff88007824d020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.650729] ffff88007824d030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.651942] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.653885] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.654482] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.655948] XFS (sdc): Unmount and run xfs_repair
[  441.656756] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.658174] ffff880077d20000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.659575] ffff880077d20010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.660997] ffff880077d20020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.662122] ffff880077d20030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.663201] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.664567] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.665219] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.666491] XFS (sdc): Unmount and run xfs_repair
[  441.667216] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.667979] ffff88007824d000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.668937] ffff88007824d010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.669849] ffff88007824d020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.670796] ffff88007824d030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.672177] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.674262] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.674703] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.676846] XFS (sdc): Unmount and run xfs_repair
[  441.677615] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.678430] ffff880077d20000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.679465] ffff880077d20010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.680534] ffff880077d20020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.681819] ffff880077d20030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.683740] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.686034] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.687377] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.688658] XFS (sdc): Unmount and run xfs_repair
[  441.689383] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.690145] ffff8800774b8000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.691123] ffff8800774b8010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.694021] ffff8800774b8020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.695369] ffff8800774b8030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.696960] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.698110] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.699332] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.704991] XFS (sdc): Unmount and run xfs_repair
[  441.706111] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.707137] ffff8800792f5000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.709063] ffff8800792f5010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.711229] ffff8800792f5020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.713089] ffff8800792f5030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.714883] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.716331] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.717552] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.718961] XFS (sdc): Unmount and run xfs_repair
[  441.719685] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.720488] ffff8800774b8000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.721538] ffff8800774b8010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.722620] ffff8800774b8020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.723636] ffff8800774b8030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.725075] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.726412] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.727985] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.729283] XFS (sdc): Unmount and run xfs_repair
[  441.730017] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.730803] ffff8800792f5000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.733350] ffff8800792f5010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.735352] ffff8800792f5020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.738699] ffff8800792f5030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.741912] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.743103] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.744942] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.746362] XFS (sdc): Unmount and run xfs_repair
[  441.747140] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.747946] ffff8800774b8000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.749043] ffff8800774b8010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.749945] ffff8800774b8020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.750880] ffff8800774b8030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.753814] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.755010] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.756699] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.758026] XFS (sdc): Unmount and run xfs_repair
[  441.758832] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.759967] ffff880077fa9000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.761997] ffff880077fa9010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.764023] ffff880077fa9020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.765303] ffff880077fa9030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.766482] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.768371] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.769266] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.771001] XFS (sdc): Unmount and run xfs_repair
[  441.771987] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.773274] ffff880077505000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.774537] ffff880077505010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.775656] ffff880077505020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.776747] ffff880077505030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.777915] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.779028] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.781340] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.783183] XFS (sdc): Unmount and run xfs_repair
[  441.784928] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.785951] ffff880077fa9000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.787262] ffff880077fa9010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.788554] ffff880077fa9020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.790690] ffff880077fa9030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.793056] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.797757] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.799679] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.801074] XFS (sdc): Unmount and run xfs_repair
[  441.801847] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.802710] ffff880077505000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.803952] ffff880077505010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.805521] ffff880077505020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.809025] ffff880077505030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.810501] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.812090] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.813377] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.814728] XFS (sdc): Unmount and run xfs_repair
[  441.815522] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.816633] ffff880077fa9000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.818601] ffff880077fa9010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.819638] ffff880077fa9020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.820626] ffff880077fa9030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.822031] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.830676] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.832154] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.833430] XFS (sdc): Unmount and run xfs_repair
[  441.834158] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.834992] ffff880077505000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.835989] ffff880077505010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.836988] ffff880077505020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.837940] ffff880077505030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.839070] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.840628] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.846349] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.848024] XFS (sdc): Unmount and run xfs_repair
[  441.849726] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.852512] ffff880077fa9000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.854717] ffff880077fa9010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.858143] ffff880077fa9020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.859836] ffff880077fa9030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.861469] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.864421] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.872553] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.874021] XFS (sdc): Unmount and run xfs_repair
[  441.875305] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.876256] ffff880077531000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.877249] ffff880077531010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.878281] ffff880077531020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.879343] ffff880077531030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.880606] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.882317] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.887394] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.888963] XFS (sdc): Unmount and run xfs_repair
[  441.889775] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.891380] ffff880077504000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.893214] ffff880077504010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.894654] ffff880077504020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.896325] ffff880077504030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.897674] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.899138] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.900588] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.906865] XFS (sdc): Unmount and run xfs_repair
[  441.907676] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.908520] ffff880077d20000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.909525] ffff880077d20010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.910584] ffff880077d20020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.911815] ffff880077d20030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.912981] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.914169] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.949207] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  441.950692] XFS (sdc): Unmount and run xfs_repair
[  441.951484] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.953175] ffff880078302000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  441.954804] ffff880078302010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.956248] ffff880078302020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  441.957703] ffff880078302030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  441.959409] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.961489] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.962733] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  441.964028] XFS (sdc): Unmount and run xfs_repair
[  441.964707] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.965483] ffff880077d34000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  441.966433] ffff880077d34010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.967388] ffff880077d34020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  441.968401] ffff880077d34030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  441.971566] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.973652] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.977183] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  441.978537] XFS (sdc): Unmount and run xfs_repair
[  441.979476] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.980593] ffff880078302000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  441.981787] ffff880078302010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.982825] ffff880078302020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  441.984150] ffff880078302030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  441.985562] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.988421] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.989325] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  441.991076] XFS (sdc): Unmount and run xfs_repair
[  441.992048] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.995120] ffff880077d34000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  441.996768] ffff880077d34010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.997985] ffff880077d34020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  441.999210] ffff880077d34030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.000379] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.002708] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.003633] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.004900] XFS (sdc): Unmount and run xfs_repair
[  442.005569] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.006336] ffff880077ceb000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.007352] ffff880077ceb010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.008782] ffff880077ceb020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.010144] ffff880077ceb030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.011264] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.013307] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.013750] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.015378] XFS (sdc): Unmount and run xfs_repair
[  442.017941] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.018982] ffff880077e96000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.020163] ffff880077e96010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.021409] ffff880077e96020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.022613] ffff880077e96030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.023769] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.024926] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.025945] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.027321] XFS (sdc): Unmount and run xfs_repair
[  442.028103] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.029053] ffff88007908b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.030614] ffff88007908b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.032605] ffff88007908b020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.034196] ffff88007908b030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.035434] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.036724] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.041552] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.042988] XFS (sdc): Unmount and run xfs_repair
[  442.043843] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.044774] ffff880077746000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.045857] ffff880077746010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.046850] ffff880077746020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.047852] ffff880077746030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.049850] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.050969] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.052547] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.053835] XFS (sdc): Unmount and run xfs_repair
[  442.054535] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.055338] ffff8800782eb000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.056361] ffff8800782eb010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.057334] ffff8800782eb020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.058359] ffff8800782eb030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.060261] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.061415] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.063158] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.065017] XFS (sdc): Unmount and run xfs_repair
[  442.066917] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.068144] ffff8800793c6000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.069462] ffff8800793c6010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.070596] ffff8800793c6020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.071685] ffff8800793c6030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.072779] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.074014] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.078638] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.079984] XFS (sdc): Unmount and run xfs_repair
[  442.080910] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.083060] ffff8800782eb000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.084287] ffff8800782eb010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.085404] ffff8800782eb020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.086477] ffff8800782eb030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.087697] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.089188] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.091621] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.092980] XFS (sdc): Unmount and run xfs_repair
[  442.093720] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.094493] ffff880077fbf000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.095476] ffff880077fbf010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.096487] ffff880077fbf020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.097514] ffff880077fbf030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.098670] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.100275] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.102440] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.103822] XFS (sdc): Unmount and run xfs_repair
[  442.104533] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.105284] ffff8800793c6000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.107211] ffff8800793c6010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.109537] ffff8800793c6020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.111419] ffff8800793c6030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.113962] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.115308] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.116950] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.118335] XFS (sdc): Unmount and run xfs_repair
[  442.119152] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.120130] ffff880077e90000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.121413] ffff880077e90010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.122692] ffff880077e90020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.123856] ffff880077e90030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.124934] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.126522] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.127366] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.128634] XFS (sdc): Unmount and run xfs_repair
[  442.132183] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.134383] ffff88007773b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.135550] ffff88007773b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.136678] ffff88007773b020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.137696] ffff88007773b030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.139975] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.141649] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.145075] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.146749] XFS (sdc): Unmount and run xfs_repair
[  442.147512] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.148317] ffff880077e90000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.151071] ffff880077e90010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.152300] ffff880077e90020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.155020] ffff880077e90030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.157303] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.158742] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.160261] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.161625] XFS (sdc): Unmount and run xfs_repair
[  442.162374] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.163273] ffff880077458000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.164217] ffff880077458010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.165171] ffff880077458020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.166194] ffff880077458030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.167880] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.168943] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.170351] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.172068] XFS (sdc): Unmount and run xfs_repair
[  442.172975] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.173874] ffff88007764d000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.174865] ffff88007764d010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.175949] ffff88007764d020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.176999] ffff88007764d030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.178080] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.179703] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.180689] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.182356] XFS (sdc): Unmount and run xfs_repair
[  442.183246] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.184514] ffff880077458000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.185623] ffff880077458010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.186687] ffff880077458020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.187791] ffff880077458030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.189243] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.190784] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.192515] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.194085] XFS (sdc): Unmount and run xfs_repair
[  442.194919] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.195868] ffff880077698000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.197345] ffff880077698010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.198443] ffff880077698020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.199458] ffff880077698030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.201155] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.202642] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.203297] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.205663] XFS (sdc): Unmount and run xfs_repair
[  442.206457] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.207569] ffff88007764d000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.210683] ffff88007764d010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.212500] ffff88007764d020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.213614] ffff88007764d030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.215383] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.219614] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.221981] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.223489] XFS (sdc): Unmount and run xfs_repair
[  442.224276] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.225515] ffff880077698000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.226572] ffff880077698010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.229961] ffff880077698020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.231251] ffff880077698030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.233519] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.234949] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.237376] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.238803] XFS (sdc): Unmount and run xfs_repair
[  442.239598] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.240660] ffff88007764d000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.242329] ffff88007764d010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.243487] ffff88007764d020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.244546] ffff88007764d030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.245893] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.248734] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.250211] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.251724] XFS (sdc): Unmount and run xfs_repair
[  442.252500] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.253513] ffff880077698000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.254671] ffff880077698010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.255702] ffff880077698020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.256719] ffff880077698030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.258171] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.259647] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.261013] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.262573] XFS (sdc): Unmount and run xfs_repair
[  442.267002] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.268432] ffff880077459000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.270478] ffff880077459010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.271919] ffff880077459020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.273590] ffff880077459030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.275972] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.279856] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.280385] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.281666] XFS (sdc): Unmount and run xfs_repair
[  442.282499] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.283473] ffff880077698000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.285525] ffff880077698010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.287896] ffff880077698020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.288931] ffff880077698030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.290150] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.291928] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.292352] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.295597] XFS (sdc): Unmount and run xfs_repair
[  442.296457] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.297370] ffff880077459000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.298435] ffff880077459010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.299527] ffff880077459020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.300540] ffff880077459030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.304043] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.306501] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.311461] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.312945] XFS (sdc): Unmount and run xfs_repair
[  442.314132] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.315159] ffff8800782ee000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.316651] ffff8800782ee010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.317843] ffff8800782ee020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.318854] ffff8800782ee030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.319963] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.321216] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.322614] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.323939] XFS (sdc): Unmount and run xfs_repair
[  442.324704] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.326461] ffff880077e92000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.327949] ffff880077e92010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.329400] ffff880077e92020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.330567] ffff880077e92030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.331739] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.333370] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.334489] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.335959] XFS (sdc): Unmount and run xfs_repair
[  442.337416] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.338373] ffff880077ffb000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.339517] ffff880077ffb010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.340558] ffff880077ffb020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.341523] ffff880077ffb030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.342722] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.344205] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.345730] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.347078] XFS (sdc): Unmount and run xfs_repair
[  442.347891] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.348768] ffff880078305000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.349781] ffff880078305010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.350751] ffff880078305020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.351728] ffff880078305030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.353035] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.354734] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.356312] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.357661] XFS (sdc): Unmount and run xfs_repair
[  442.358454] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.359322] ffff88007a73b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.360345] ffff88007a73b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.361284] ffff88007a73b020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.362203] ffff88007a73b030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.364214] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.365409] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.366235] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.367717] XFS (sdc): Unmount and run xfs_repair
[  442.370598] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.371801] ffff880078305000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.374126] ffff880078305010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.377929] ffff880078305020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.379227] ffff880078305030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.382315] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.383591] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.385032] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.386337] XFS (sdc): Unmount and run xfs_repair
[  442.387178] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.388288] ffff88007a73b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.389568] ffff88007a73b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.390774] ffff88007a73b020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.392804] ffff88007a73b030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.394676] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.396345] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.397601] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.399082] XFS (sdc): Unmount and run xfs_repair
[  442.399832] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.401460] ffff880077f37000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.403535] ffff880077f37010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.404782] ffff880077f37020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.406287] ffff880077f37030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.408129] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.409884] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.411114] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.413055] XFS (sdc): Unmount and run xfs_repair
[  442.414572] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.415641] ffff880077458000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.416740] ffff880077458010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.417886] ffff880077458020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.419004] ffff880077458030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.421488] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.422791] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.424419] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.426033] XFS (sdc): Unmount and run xfs_repair
[  442.427079] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.427966] ffff880077f37000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.428990] ffff880077f37010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.429977] ffff880077f37020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.430967] ffff880077f37030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.432769] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.434391] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.435171] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.436496] XFS (sdc): Unmount and run xfs_repair
[  442.437189] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.437945] ffff880077458000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.438939] ffff880077458010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.439903] ffff880077458020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.440853] ffff880077458030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.443340] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.444714] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.446329] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.449409] XFS (sdc): Unmount and run xfs_repair
[  442.450286] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.452000] ffff880077f37000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.453190] ffff880077f37010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.454977] ffff880077f37020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.456235] ffff880077f37030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.458886] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.460363] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.460992] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.462477] XFS (sdc): Unmount and run xfs_repair
[  442.463456] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.464344] ffff880077458000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.465429] ffff880077458010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.466460] ffff880077458020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.467472] ffff880077458030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.468561] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.470131] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.471110] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.472374] XFS (sdc): Unmount and run xfs_repair
[  442.473161] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.474279] ffff88007804a000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.475415] ffff88007804a010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.476462] ffff88007804a020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.478410] ffff88007804a030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.481155] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.482741] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.483990] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.485295] XFS (sdc): Unmount and run xfs_repair
[  442.487606] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.488653] ffff880077e93000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.489819] ffff880077e93010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.490967] ffff880077e93020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.492085] ffff880077e93030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.493343] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.496482] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.497500] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.498811] XFS (sdc): Unmount and run xfs_repair
[  442.499857] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.501406] ffff880077fcd000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.502694] ffff880077fcd010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.503784] ffff880077fcd020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.504955] ffff880077fcd030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.506758] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.508764] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.510821] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.512509] XFS (sdc): Unmount and run xfs_repair
[  442.514337] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.515600] ffff8800782ed000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.516803] ffff8800782ed010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.517915] ffff8800782ed020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.518834] ffff8800782ed030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.520899] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.522487] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.523738] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.525253] XFS (sdc): Unmount and run xfs_repair
[  442.526023] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.526904] ffff880077fcd000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.528127] ffff880077fcd010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.529266] ffff880077fcd020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.530404] ffff880077fcd030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.531691] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.532852] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.535274] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.538289] XFS (sdc): Unmount and run xfs_repair
[  442.540936] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.542107] ffff880077fcd000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.543210] ffff880077fcd010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.544295] ffff880077fcd020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.547696] ffff880077fcd030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.549990] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.551557] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.552904] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.558719] XFS (sdc): Unmount and run xfs_repair
[  442.559473] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.560715] ffff88007817e000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.561784] ffff88007817e010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.562725] ffff88007817e020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.563954] ffff88007817e030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.565418] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.567063] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.570044] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.571590] XFS (sdc): Unmount and run xfs_repair
[  442.572420] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.573299] ffff88007776f000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.574357] ffff88007776f010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.575511] ffff88007776f020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.576987] ffff88007776f030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.579244] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.580550] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.581969] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.583237] XFS (sdc): Unmount and run xfs_repair
[  442.583968] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.584982] ffff88007817e000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.587926] ffff88007817e010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.589150] ffff88007817e020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.590580] ffff88007817e030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.592070] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.593576] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.595678] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.596969] XFS (sdc): Unmount and run xfs_repair
[  442.597618] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.598817] ffff8800777ee000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.600231] ffff8800777ee010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.601336] ffff8800777ee020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.602321] ffff8800777ee030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.603472] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.604929] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.605600] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.606961] XFS (sdc): Unmount and run xfs_repair
[  442.607660] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.608542] ffff8800777ef000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.609569] ffff8800777ef010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.610755] ffff8800777ef020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.611950] ffff8800777ef030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.613891] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.615409] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  443.524136] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  443.526083] XFS (sdc): Unmount and run xfs_repair
[  443.527109] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  443.528340] ffff8800775c7000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  443.529883] ffff8800775c7010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  443.531419] ffff8800775c7020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  443.532569] ffff8800775c7030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  443.533588] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  443.534990] XFS (sdc): xfs_do_force_shutdown(0x1) called from line 315 of file fs/xfs/xfs_trans_buf.c.  Return address = 0xffffffffa025e1b9
[  443.585494] XFS (sdc): I/O Error Detected. Shutting down filesystem
[  443.586398] XFS (sdc): Please umount the filesystem and rectify the problem(s)
[  443.587285] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  443.651592] XFS (sdc): xfs_log_force: error -5 returned.
[  443.673050] XFS (sdc): xfs_log_force: error -5 returned.
[  443.676852] XFS (sdc): Unmounting Filesystem
[  443.676859] XFS (sdc): xfs_log_force: error -5 returned.
[  443.681074] XFS (sdc): xfs_log_force: error -5 returned.
[  444.031175] XFS (sdc): Mounting V4 Filesystem
[  444.979543] XFS (sdc): Starting recovery (logdev: internal)
[  445.578254] XFS (sdc): Ending recovery (logdev: internal)
[  445.591130] XFS (sdc): Unmounting Filesystem
[  446.674420] XFS (sdc): Mounting V4 Filesystem
[  446.684134] XFS (sdc): Ending clean mount
[  450.764788] XFS (sdc): Unmounting Filesystem

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] xfs/083: disable dmesg check
  2016-07-13  5:11   ` Darrick J. Wong
  2016-07-13  8:02     ` Xiao Yang
  2016-07-14  0:57     ` Xiao Yang
@ 2016-07-14  7:16     ` Guangwen Feng
  2 siblings, 0 replies; 10+ messages in thread
From: Guangwen Feng @ 2016-07-14  7:16 UTC (permalink / raw)
  To: Darrick J. Wong; +Cc: fstests, Xiao Yang

[-- Attachment #1: Type: text/plain, Size: 1890 bytes --]

Hi Darrick,

On 07/13/2016 01:11 PM, Darrick J. Wong wrote:
> On Wed, Jul 13, 2016 at 12:25:55PM +0800, Eryu Guan wrote:
>> On Tue, Jul 12, 2016 at 01:41:44PM +0800, Xiao Yang wrote:
>>> xfs/083 will corrupt the fs intentionally, there will be WARNINGs
>>> in dmesg as expected, so here disable dmesg check.
>>>
>>> Signed-off-by: Xiao Yang <yangx.jy@cn.fujitsu.com>
>>> ---
>>>  tests/xfs/083 | 4 ++++
>>>  1 file changed, 4 insertions(+)
>>>
>>> diff --git a/tests/xfs/083 b/tests/xfs/083
>>> index d897754..040f3b6 100755
>>> --- a/tests/xfs/083
>>> +++ b/tests/xfs/083
>>> @@ -102,6 +102,10 @@ scratch_repair() {
>>>  }
>>>  
>>>  rm -f $seqres.full
>>> +# This test will corrupt fs intentionally, so there will be WARNINGs
>>> +# in dmesg as expected
>>> +_disable_dmesg_check
>>> +
>>
>> This looks fine to me, but I'd like Darrick to review it as well :)
> 
> I really want to know which WARN_ON they're hitting -- if the FS is
> corrupt, XFS should be returning -EFSCORRUPTED, which doesn't trigger
> warnings.
> 

We run xfs/083 in kernel v4.7-rc7-92d21ac and get the dmesg,
please have a look at the attachment, thanks!

Best Regards,
Guangwen Feng

> (I suspect it's the warning that gets printed when corrupt inodes are
> found...)
> 
> --D
> 
>>
>> Thanks,
>> Eryu
>>
>>>  echo "See interesting results in $seqres.full" | sed -e "s,$RESULT_DIR,RESULT_DIR,g"
>>>  SRCDIR=`pwd`
>>>  test -z "${FUZZ_ARGS}" && FUZZ_ARGS="-3 -n 32"
>>> -- 
>>> 1.8.3.1
>>>
>>>
>>>
>>> --
>>> To unsubscribe from this list: send the line "unsubscribe fstests" in
>>> the body of a message to majordomo@vger.kernel.org
>>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> --
> To unsubscribe from this list: send the line "unsubscribe fstests" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 
> 
> 



[-- Attachment #2: 083.dmesg --]
[-- Type: text/plain, Size: 295434 bytes --]

[  360.431939] run fstests xfs/083 at 2016-07-13 15:38:08
[  360.641997] XFS (sdc): Unmounting Filesystem
[  360.909068] XFS (sdc): Mounting V4 Filesystem
[  360.918640] XFS (sdc): Ending clean mount
[  436.259805] XFS (sdc): Unmounting Filesystem
[  436.428374] XFS (sdc): Mounting V4 Filesystem
[  436.438448] XFS (sdc): Ending clean mount
[  436.475976] XFS (sdc): Unmounting Filesystem
[  437.460361] XFS (sdc): Mounting V4 Filesystem
[  437.469513] XFS (sdc): Ending clean mount
[  437.523580] XFS (sdc): Internal error XFS_WANT_CORRUPTED_RETURN at line 169 of file fs/xfs/libxfs/xfs_dir2_data.c.  Caller xfs_dir3_data_verify+0x8f/0xa0 [xfs]
[  437.525385] CPU: 0 PID: 53 Comm: kworker/0:1 Not tainted 4.7.0-rc7 #10
[  437.525387] Hardware name: Bochs Bochs, BIOS Bochs 01/01/2011
[  437.525414] Workqueue: xfs-buf/sdc xfs_buf_ioend_work [xfs]
[  437.525416]  0000000000000286 000000008fe89895 ffff88007c047cb0 ffffffff8134128f
[  437.525418]  ffffffffa026ada0 ffff88007937a000 ffff88007c047cc8 ffffffffa02325eb
[  437.525419]  ffffffffa021532f ffff88007c047d50 ffffffffa02150b2 ffff88007937a010
[  437.525421] Call Trace:
[  437.525425]  [<ffffffff8134128f>] dump_stack+0x63/0x84
[  437.525437]  [<ffffffffa02325eb>] xfs_error_report+0x3b/0x40 [xfs]
[  437.525447]  [<ffffffffa021532f>] ? xfs_dir3_data_verify+0x8f/0xa0 [xfs]
[  437.525459]  [<ffffffffa02150b2>] __xfs_dir3_data_check+0x372/0x560 [xfs]
[  437.525468]  [<ffffffffa021532f>] xfs_dir3_data_verify+0x8f/0xa0 [xfs]
[  437.525476]  [<ffffffffa0215484>] xfs_dir3_data_read_verify+0x44/0x100 [xfs]
[  437.525480]  [<ffffffff8102c6d9>] ? __switch_to+0x219/0x5c0
[  437.525497]  [<ffffffffa02155b6>] xfs_dir3_data_reada_verify+0x76/0x80 [xfs]
[  437.525508]  [<ffffffffa022fb19>] xfs_buf_ioend+0x79/0x1d0 [xfs]
[  437.525518]  [<ffffffffa022fc85>] xfs_buf_ioend_work+0x15/0x20 [xfs]
[  437.525520]  [<ffffffff810a1e32>] process_one_work+0x152/0x400
[  437.525522]  [<ffffffff810a2725>] worker_thread+0x125/0x4b0
[  437.525523]  [<ffffffff810a2600>] ? rescuer_thread+0x380/0x380
[  437.525524]  [<ffffffff810a82a8>] kthread+0xd8/0xf0
[  437.525527]  [<ffffffff816b72ff>] ret_from_fork+0x1f/0x40
[  437.525528]  [<ffffffff810a81d0>] ? kthread_park+0x60/0x60
[  437.525572] XFS (sdc): Metadata corruption detected at xfs_dir3_data_read_verify+0x5e/0x100 [xfs], xfs_dir3_data block 0x1e00af0
[  437.526937] XFS (sdc): Unmount and run xfs_repair
[  437.527528] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.528303] ffff88007937a000: 58 44 32 44 00 28 00 18 00 58 00 18 00 88 00 18  XD2D.(...X......
[  437.529215] ffff88007937a010: 00 00 00 00 06 00 15 a0 08 30 30 30 31 31 38 39  .........0001189
[  437.530154] ffff88007937a020: 38 00 00 00 00 00 00 10 ff ff 00 18 00 00 2c c5  8.............,.
[  437.531127] ffff88007937a030: 08 30 30 30 31 31 38 39 39 00 00 00 00 00 00 28  .00011899......(
[  437.533075] XFS (sdc): Internal error XFS_WANT_CORRUPTED_RETURN at line 169 of file fs/xfs/libxfs/xfs_dir2_data.c.  Caller xfs_dir3_data_verify+0x8f/0xa0 [xfs]
[  437.534746] CPU: 0 PID: 53 Comm: kworker/0:1 Not tainted 4.7.0-rc7 #10
[  437.534748] Hardware name: Bochs Bochs, BIOS Bochs 01/01/2011
[  437.534778] Workqueue: xfs-buf/sdc xfs_buf_ioend_work [xfs]
[  437.534781]  0000000000000286 000000008fe89895 ffff88007c047cc8 ffffffff8134128f
[  437.534782]  ffffffffa026ada0 ffff88007937a000 ffff88007c047ce0 ffffffffa02325eb
[  437.534784]  ffffffffa021532f ffff88007c047d68 ffffffffa02150b2 ffff88007937a010
[  437.534786] Call Trace:
[  437.534790]  [<ffffffff8134128f>] dump_stack+0x63/0x84
[  437.534803]  [<ffffffffa02325eb>] xfs_error_report+0x3b/0x40 [xfs]
[  437.534812]  [<ffffffffa021532f>] ? xfs_dir3_data_verify+0x8f/0xa0 [xfs]
[  437.534822]  [<ffffffffa02150b2>] __xfs_dir3_data_check+0x372/0x560 [xfs]
[  437.534825]  [<ffffffff810bde73>] ? set_next_entity+0x73/0x790
[  437.534826]  [<ffffffff810bf9f5>] ? put_prev_entity+0x35/0x6f0
[  437.534835]  [<ffffffffa021532f>] xfs_dir3_data_verify+0x8f/0xa0 [xfs]
[  437.534844]  [<ffffffffa0215484>] xfs_dir3_data_read_verify+0x44/0x100 [xfs]
[  437.534855]  [<ffffffffa022fb19>] xfs_buf_ioend+0x79/0x1d0 [xfs]
[  437.534864]  [<ffffffffa022fc85>] xfs_buf_ioend_work+0x15/0x20 [xfs]
[  437.534867]  [<ffffffff810a1e32>] process_one_work+0x152/0x400
[  437.534873]  [<ffffffff810a2725>] worker_thread+0x125/0x4b0
[  437.534875]  [<ffffffff810a2600>] ? rescuer_thread+0x380/0x380
[  437.534876]  [<ffffffff810a82a8>] kthread+0xd8/0xf0
[  437.534879]  [<ffffffff816b72ff>] ret_from_fork+0x1f/0x40
[  437.534880]  [<ffffffff810a81d0>] ? kthread_park+0x60/0x60
[  437.534898] XFS (sdc): Metadata corruption detected at xfs_dir3_data_read_verify+0x5e/0x100 [xfs], xfs_dir3_data block 0x1e00af0
[  437.536301] XFS (sdc): Unmount and run xfs_repair
[  437.536909] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.537615] ffff88007937a000: 58 44 32 44 00 28 00 18 00 58 00 18 00 88 00 18  XD2D.(...X......
[  437.538535] ffff88007937a010: 00 00 00 00 06 00 15 a0 08 30 30 30 31 31 38 39  .........0001189
[  437.539582] ffff88007937a020: 38 00 00 00 00 00 00 10 ff ff 00 18 00 00 2c c5  8.............,.
[  437.540509] ffff88007937a030: 08 30 30 30 31 31 38 39 39 00 00 00 00 00 00 28  .00011899......(
[  437.545106] XFS (sdc): metadata I/O error: block 0x1e00af0 ("xfs_trans_read_buf_map") error 117 numblks 8
[  437.548463] XFS (sdc): Internal error XFS_WANT_CORRUPTED_RETURN at line 169 of file fs/xfs/libxfs/xfs_dir2_data.c.  Caller xfs_dir3_data_verify+0x8f/0xa0 [xfs]
[  437.550361] CPU: 1 PID: 277 Comm: kworker/1:2 Not tainted 4.7.0-rc7 #10
[  437.550362] Hardware name: Bochs Bochs, BIOS Bochs 01/01/2011
[  437.550392] Workqueue: xfs-buf/sdc xfs_buf_ioend_work [xfs]
[  437.550395]  0000000000000286 00000000abdde129 ffff880034b67cc8 ffffffff8134128f
[  437.550396]  ffffffffa026ada0 ffff88007937a000 ffff880034b67ce0 ffffffffa02325eb
[  437.550398]  ffffffffa021532f ffff880034b67d68 ffffffffa02150b2 ffff88007937a010
[  437.550399] Call Trace:
[  437.550405]  [<ffffffff8134128f>] dump_stack+0x63/0x84
[  437.550417]  [<ffffffffa02325eb>] xfs_error_report+0x3b/0x40 [xfs]
[  437.550428]  [<ffffffffa021532f>] ? xfs_dir3_data_verify+0x8f/0xa0 [xfs]
[  437.550438]  [<ffffffffa02150b2>] __xfs_dir3_data_check+0x372/0x560 [xfs]
[  437.550440]  [<ffffffff810bde73>] ? set_next_entity+0x73/0x790
[  437.550441]  [<ffffffff810bf9f5>] ? put_prev_entity+0x35/0x6f0
[  437.550450]  [<ffffffffa021532f>] xfs_dir3_data_verify+0x8f/0xa0 [xfs]
[  437.550459]  [<ffffffffa0215484>] xfs_dir3_data_read_verify+0x44/0x100 [xfs]
[  437.550470]  [<ffffffffa022fb19>] xfs_buf_ioend+0x79/0x1d0 [xfs]
[  437.550480]  [<ffffffffa022fc85>] xfs_buf_ioend_work+0x15/0x20 [xfs]
[  437.550482]  [<ffffffff810a1e32>] process_one_work+0x152/0x400
[  437.550483]  [<ffffffff810a2725>] worker_thread+0x125/0x4b0
[  437.550486]  [<ffffffff816b6c45>] ? _raw_spin_unlock_irqrestore+0x15/0x20
[  437.550488]  [<ffffffff810a2600>] ? rescuer_thread+0x380/0x380
[  437.550489]  [<ffffffff810a82a8>] kthread+0xd8/0xf0
[  437.550491]  [<ffffffff816b72ff>] ret_from_fork+0x1f/0x40
[  437.550492]  [<ffffffff810a81d0>] ? kthread_park+0x60/0x60
[  437.550503] XFS (sdc): Metadata corruption detected at xfs_dir3_data_read_verify+0x5e/0x100 [xfs], xfs_dir3_data block 0x1e00af0
[  437.552398] XFS (sdc): Unmount and run xfs_repair
[  437.553284] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.554260] ffff88007937a000: 58 44 32 44 00 28 00 18 00 58 00 18 00 88 00 18  XD2D.(...X......
[  437.555363] ffff88007937a010: 00 00 00 00 06 00 15 a0 08 30 30 30 31 31 38 39  .........0001189
[  437.556494] ffff88007937a020: 38 00 00 00 00 00 00 10 ff ff 00 18 00 00 2c c5  8.............,.
[  437.557602] ffff88007937a030: 08 30 30 30 31 31 38 39 39 00 00 00 00 00 00 28  .00011899......(
[  437.559610] XFS (sdc): metadata I/O error: block 0x1e00af0 ("xfs_trans_read_buf_map") error 117 numblks 8
[  437.576737] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.578276] XFS (sdc): Unmount and run xfs_repair
[  437.579205] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.580177] ffff88007925e000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.582150] ffff88007925e010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.583435] ffff88007925e020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.584955] ffff88007925e030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.588411] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.590038] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.591110] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.592549] XFS (sdc): Unmount and run xfs_repair
[  437.593425] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.594356] ffff880077fdf000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.595389] ffff880077fdf010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.596465] ffff880077fdf020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.597526] ffff880077fdf030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.600702] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.602312] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.602833] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.604324] XFS (sdc): Unmount and run xfs_repair
[  437.605075] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.605891] ffff88007925e000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.606921] ffff88007925e010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.607981] ffff88007925e020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.609033] ffff88007925e030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.611120] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.619232] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.619820] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.621318] XFS (sdc): Unmount and run xfs_repair
[  437.622644] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.623720] ffff880077fdf000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.624779] ffff880077fdf010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.625746] ffff880077fdf020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.626736] ffff880077fdf030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.628830] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.630421] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.631937] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.633508] XFS (sdc): Unmount and run xfs_repair
[  437.634433] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.635433] ffff88007925e000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.640721] ffff88007925e010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.641866] ffff88007925e020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.644061] ffff88007925e030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.648219] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.650210] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.652216] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.654010] XFS (sdc): Unmount and run xfs_repair
[  437.655167] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.656070] ffff880077fdf000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.657405] ffff880077fdf010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.660653] ffff880077fdf020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.665640] ffff880077fdf030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.667589] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.680518] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.681279] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.683378] XFS (sdc): Unmount and run xfs_repair
[  437.684701] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.685629] ffff88007925e000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.686634] ffff88007925e010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.687849] ffff88007925e020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.689041] ffff88007925e030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.691120] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.692376] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.695004] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.696358] XFS (sdc): Unmount and run xfs_repair
[  437.697628] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.698726] ffff880077fdf000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.700538] ffff880077fdf010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.703716] ffff880077fdf020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.706288] ffff880077fdf030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.711812] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.713148] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.713583] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.714819] XFS (sdc): Unmount and run xfs_repair
[  437.715516] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.716339] ffff88007925e000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.717339] ffff88007925e010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.718371] ffff88007925e020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.719799] ffff88007925e030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.722072] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.723909] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.727317] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.728761] XFS (sdc): Unmount and run xfs_repair
[  437.729589] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.730399] ffff880077e0e000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.731311] ffff880077e0e010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.732231] ffff880077e0e020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.733335] ffff880077e0e030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.735300] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.738175] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.738542] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.739955] XFS (sdc): Unmount and run xfs_repair
[  437.740722] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.741613] ffff8800782e3000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.742739] ffff8800782e3010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.743728] ffff8800782e3020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.744839] ffff8800782e3030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.746278] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.747379] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.752150] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.754353] XFS (sdc): Unmount and run xfs_repair
[  437.755239] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.756640] ffff880077e0e000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.757860] ffff880077e0e010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.760112] ffff880077e0e020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.762355] ffff880077e0e030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.763533] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.764854] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.768492] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.769917] XFS (sdc): Unmount and run xfs_repair
[  437.770744] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.771665] ffff8800782e3000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.772756] ffff8800782e3010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.773848] ffff8800782e3020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.774950] ffff8800782e3030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.776704] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.780306] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.780765] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.782823] XFS (sdc): Unmount and run xfs_repair
[  437.783690] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.784568] ffff880077e0e000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.785585] ffff880077e0e010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.788946] ffff880077e0e020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.790196] ffff880077e0e030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.791456] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.793107] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.793689] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.795920] XFS (sdc): Unmount and run xfs_repair
[  437.796932] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.797993] ffff8800782e3000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.799235] ffff8800782e3010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.800590] ffff8800782e3020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.801951] ffff8800782e3030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.803136] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.806702] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.807287] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.808610] XFS (sdc): Unmount and run xfs_repair
[  437.811340] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.813594] ffff880077e0e000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.814923] ffff880077e0e010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.816009] ffff880077e0e020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.817234] ffff880077e0e030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.819164] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.823647] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.826678] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.840962] XFS (sdc): Unmount and run xfs_repair
[  437.843744] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.846220] ffff8800782e3000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.848532] ffff8800782e3010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.850988] ffff8800782e3020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.852199] ffff8800782e3030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.853570] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.854866] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.857787] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.859337] XFS (sdc): Unmount and run xfs_repair
[  437.860326] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.862481] ffff880077e0e000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.863643] ffff880077e0e010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.865099] ffff880077e0e020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.866219] ffff880077e0e030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.867990] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.869398] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.870034] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.872221] XFS (sdc): Unmount and run xfs_repair
[  437.873904] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.875390] ffff8800782e3000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.876793] ffff8800782e3010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.877994] ffff8800782e3020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.879006] ffff8800782e3030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.885767] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.887021] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.887683] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.889221] XFS (sdc): Unmount and run xfs_repair
[  437.890057] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.890913] ffff880076a47000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.891968] ffff880076a47010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.893049] ffff880076a47020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.894316] ffff880076a47030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.896673] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.897924] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.899731] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.901071] XFS (sdc): Unmount and run xfs_repair
[  437.902144] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.903144] ffff88007a641000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.904432] ffff88007a641010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.905702] ffff88007a641020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.906844] ffff88007a641030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.909081] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.910303] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.911627] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.913034] XFS (sdc): Unmount and run xfs_repair
[  437.913851] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.914753] ffff880076a47000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.921521] ffff880076a47010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.922804] ffff880076a47020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.923861] ffff880076a47030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.924861] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.925872] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.928032] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.929423] XFS (sdc): Unmount and run xfs_repair
[  437.930248] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.934011] ffff88007a641000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.935445] ffff88007a641010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.936768] ffff88007a641020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.937801] ffff88007a641030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.938966] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.940619] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.941198] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.942534] XFS (sdc): Unmount and run xfs_repair
[  437.943416] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.944401] ffff880076a47000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.945627] ffff880076a47010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.946702] ffff880076a47020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.947782] ffff880076a47030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.950623] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.953755] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.956002] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.957313] XFS (sdc): Unmount and run xfs_repair
[  437.958106] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.958933] ffff88007a641000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.960043] ffff88007a641010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.961054] ffff88007a641020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.965754] ffff88007a641030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.969852] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.972197] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.972568] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.973845] XFS (sdc): Unmount and run xfs_repair
[  437.974619] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.975509] ffff880076a47000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.976566] ffff880076a47010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.978818] ffff880076a47020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.980275] ffff880076a47030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.983028] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.984269] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  437.984642] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  437.987626] XFS (sdc): Unmount and run xfs_repair
[  437.988601] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  437.989384] ffff88007a641000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  437.990424] ffff88007a641010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  437.991739] ffff88007a641020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  437.993674] ffff88007a641030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  437.996062] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  437.997599] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.001402] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.002837] XFS (sdc): Unmount and run xfs_repair
[  438.003712] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.004639] ffff880076a47000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.005770] ffff880076a47010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.007458] ffff880076a47020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.008601] ffff880076a47030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.009833] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.011034] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.012064] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.013269] XFS (sdc): Unmount and run xfs_repair
[  438.013932] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.014656] ffff88007a641000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.015623] ffff88007a641010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.016635] ffff88007a641020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.017588] ffff88007a641030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.019330] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.022286] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.025676] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.027061] XFS (sdc): Unmount and run xfs_repair
[  438.027834] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.030016] ffff880076a47000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.036039] ffff880076a47010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.037632] ffff880076a47020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.039452] ffff880076a47030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.041366] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.042991] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.043589] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.045254] XFS (sdc): Unmount and run xfs_repair
[  438.045985] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.047038] ffff88007a641000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.048069] ffff88007a641010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.049075] ffff88007a641020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.050104] ffff88007a641030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.051636] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.057271] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.057902] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.059410] XFS (sdc): Unmount and run xfs_repair
[  438.060277] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.061122] ffff88007905c000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.062834] ffff88007905c010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.065853] ffff88007905c020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.067503] ffff88007905c030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.069290] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.070837] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.071189] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.072510] XFS (sdc): Unmount and run xfs_repair
[  438.073163] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.073932] ffff88007905d000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.074910] ffff88007905d010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.076114] ffff88007905d020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.077161] ffff88007905d030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.078480] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.079716] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.082734] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.085506] XFS (sdc): Unmount and run xfs_repair
[  438.088313] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.089738] ffff880077c14000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.091798] ffff880077c14010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.093121] ffff880077c14020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.094637] ffff880077c14030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.096212] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.097469] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.098222] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.099819] XFS (sdc): Unmount and run xfs_repair
[  438.100638] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.101679] ffff880077c15000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.103612] ffff880077c15010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.109546] ffff880077c15020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.110819] ffff880077c15030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.111860] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.119568] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.121244] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.123003] XFS (sdc): Unmount and run xfs_repair
[  438.123953] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.124831] ffff880077c14000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.126172] ffff880077c14010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.127881] ffff880077c14020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.129427] ffff880077c14030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.131259] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.132964] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.133807] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.135289] XFS (sdc): Unmount and run xfs_repair
[  438.136081] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.137004] ffff880077c15000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.138091] ffff880077c15010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.139370] ffff880077c15020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.140398] ffff880077c15030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.141660] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.143226] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.144027] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.151515] XFS (sdc): Unmount and run xfs_repair
[  438.152359] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.153213] ffff880077c14000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.154591] ffff880077c14010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.156209] ffff880077c14020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.157445] ffff880077c14030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.159879] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.161762] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.162628] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.164082] XFS (sdc): Unmount and run xfs_repair
[  438.165028] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.166004] ffff880077c15000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.167087] ffff880077c15010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.168109] ffff880077c15020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.169199] ffff880077c15030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.170858] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.173646] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.174180] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.177180] XFS (sdc): Unmount and run xfs_repair
[  438.178689] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.179726] ffff880077c14000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.180863] ffff880077c14010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.181901] ffff880077c14020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.185317] ffff880077c14030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.186644] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.190811] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.191186] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.192589] XFS (sdc): Unmount and run xfs_repair
[  438.193437] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.194276] ffff880077c15000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.195268] ffff880077c15010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.196226] ffff880077c15020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.197181] ffff880077c15030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.198253] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.199314] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.199646] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.200819] XFS (sdc): Unmount and run xfs_repair
[  438.201491] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.203276] ffff880077c14000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.205107] ffff880077c14010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.206782] ffff880077c14020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.208157] ffff880077c14030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.209819] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.211270] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.213491] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.214788] XFS (sdc): Unmount and run xfs_repair
[  438.215527] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.216311] ffff880077c15000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.217288] ffff880077c15010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.218231] ffff880077c15020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.219275] ffff880077c15030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.220415] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.221850] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.222899] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.224446] XFS (sdc): Unmount and run xfs_repair
[  438.225868] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.227453] ffff880077c14000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.228912] ffff880077c14010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.230508] ffff880077c14020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.231731] ffff880077c14030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.234109] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.236493] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.239321] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.241326] XFS (sdc): Unmount and run xfs_repair
[  438.242186] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.243086] ffff880077c15000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.244193] ffff880077c15010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.245269] ffff880077c15020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.246365] ffff880077c15030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.248568] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.249894] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.251234] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.252659] XFS (sdc): Unmount and run xfs_repair
[  438.253426] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.254279] ffff880077c14000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.255307] ffff880077c14010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.256327] ffff880077c14020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.259945] ffff880077c14030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.261405] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.264566] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.265015] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.266498] XFS (sdc): Unmount and run xfs_repair
[  438.267252] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.268066] ffff880077c15000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.269359] ffff880077c15010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.271483] ffff880077c15020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.272705] ffff880077c15030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.274867] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.276254] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.277745] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.279524] XFS (sdc): Unmount and run xfs_repair
[  438.280423] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.281347] ffff880077c14000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.282390] ffff880077c14010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.283698] ffff880077c14020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.285080] ffff880077c14030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.286601] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.288939] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.291899] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.293494] XFS (sdc): Unmount and run xfs_repair
[  438.294509] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.296559] ffff880077627000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.297818] ffff880077627010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.298914] ffff880077627020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.299904] ffff880077627030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.303469] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.305731] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.306483] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.308178] XFS (sdc): Unmount and run xfs_repair
[  438.309263] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.311461] ffff88007a70b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.315037] ffff88007a70b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.316275] ffff88007a70b020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.317232] ffff88007a70b030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.318687] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.321450] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.322564] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e001f0
[  438.324375] XFS (sdc): Unmount and run xfs_repair
[  438.325246] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.326949] ffff880077627000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.328507] ffff880077627010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.338196] ffff880077627020: 57 85 ef e9 1f b5 ad 00 57 85 ef e9 1f b5 ad 00  W.......W.......
[  438.342177] ffff880077627030: 57 85 ef e9 1f b5 ad 00 00 00 00 00 00 00 00 06  W...............
[  438.346298] XFS (sdc): metadata I/O error: block 0x1e001f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.347421] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.357527] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.359780] XFS (sdc): Unmount and run xfs_repair
[  438.360895] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.361720] ffff88007755f000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.362802] ffff88007755f010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.363821] ffff88007755f020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.364805] ffff88007755f030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.366655] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.367807] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.369089] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.370436] XFS (sdc): Unmount and run xfs_repair
[  438.371306] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.372265] ffff880077ddd000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.373262] ffff880077ddd010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.374823] ffff880077ddd020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.376783] ffff880077ddd030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.380102] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.381809] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.382462] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.383698] XFS (sdc): Unmount and run xfs_repair
[  438.384410] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.385178] ffff88007755f000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.386119] ffff88007755f010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.387267] ffff88007755f020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.388385] ffff88007755f030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.389528] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.390840] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.391256] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.392848] XFS (sdc): Unmount and run xfs_repair
[  438.396560] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.399492] ffff880077ddd000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.401211] ffff880077ddd010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.402983] ffff880077ddd020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.404679] ffff880077ddd030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.406355] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.407655] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.411313] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.417307] XFS (sdc): Unmount and run xfs_repair
[  438.419967] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.422033] ffff880077ddd000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.423730] ffff880077ddd010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.426937] ffff880077ddd020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.428193] ffff880077ddd030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.429308] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.430748] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.431936] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.433322] XFS (sdc): Unmount and run xfs_repair
[  438.434081] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.434932] ffff88007a6cd000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.436031] ffff88007a6cd010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.437200] ffff88007a6cd020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.438348] ffff88007a6cd030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.441178] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.442761] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.444986] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.447079] XFS (sdc): Unmount and run xfs_repair
[  438.447968] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.448756] ffff880077ddd000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.450833] ffff880077ddd010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.454141] ffff880077ddd020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.456393] ffff880077ddd030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.458604] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.459883] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.461416] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.462856] XFS (sdc): Unmount and run xfs_repair
[  438.463670] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.464619] ffff880078061000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.466343] ffff880078061010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.467707] ffff880078061020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.468803] ffff880078061030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.470267] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.471514] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.472122] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.473355] XFS (sdc): Unmount and run xfs_repair
[  438.474033] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.474819] ffff8800792cd000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.475786] ffff8800792cd010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.476760] ffff8800792cd020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.477745] ffff8800792cd030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.480093] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.481366] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.484230] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.485633] XFS (sdc): Unmount and run xfs_repair
[  438.486433] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.487318] ffff880078061000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.488312] ffff880078061010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.489292] ffff880078061020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.490326] ffff880078061030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.491385] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.496385] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.497132] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.498626] XFS (sdc): Unmount and run xfs_repair
[  438.499652] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.501213] ffff8800792cd000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.502361] ffff8800792cd010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.503365] ffff8800792cd020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.507312] ffff8800792cd030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.509405] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.510759] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.519161] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.520903] XFS (sdc): Unmount and run xfs_repair
[  438.521751] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.522753] ffff880078061000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.523848] ffff880078061010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.525192] ffff880078061020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.527958] ffff880078061030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.530771] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.532013] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.533360] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.535985] XFS (sdc): Unmount and run xfs_repair
[  438.537922] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.539754] ffff88007925a000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.541428] ffff88007925a010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.542865] ffff88007925a020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.543996] ffff88007925a030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.545898] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.547410] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.548123] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.549509] XFS (sdc): Unmount and run xfs_repair
[  438.550436] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.551451] ffff88007925b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.552552] ffff88007925b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.553653] ffff88007925b020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.554814] ffff88007925b030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.557319] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.560162] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.561216] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.562427] XFS (sdc): Unmount and run xfs_repair
[  438.563100] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.563916] ffff88007779f000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.564894] ffff88007779f010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.565836] ffff88007779f020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.566880] ffff88007779f030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.569083] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.570248] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.575237] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.579833] XFS (sdc): Unmount and run xfs_repair
[  438.580908] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.581864] ffff8800797a3000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.583137] ffff8800797a3010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.584252] ffff8800797a3020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.585614] ffff8800797a3030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.587399] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.591204] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.591723] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.593613] XFS (sdc): Unmount and run xfs_repair
[  438.595957] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.597163] ffff8800777ad000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.601433] ffff8800777ad010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.603424] ffff8800777ad020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.604834] ffff8800777ad030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.606877] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.608502] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.609703] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.611093] XFS (sdc): Unmount and run xfs_repair
[  438.612059] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.613003] ffff8800797a3000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.614117] ffff8800797a3010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.615175] ffff8800797a3020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.616204] ffff8800797a3030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.617968] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.620130] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.620592] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.621948] XFS (sdc): Unmount and run xfs_repair
[  438.622662] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.623489] ffff8800777ad000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.624483] ffff8800777ad010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.625479] ffff8800777ad020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.626459] ffff8800777ad030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.627400] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.628761] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.629824] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.638337] XFS (sdc): Unmount and run xfs_repair
[  438.640098] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.640929] ffff8800797a3000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.641950] ffff8800797a3010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.642943] ffff8800797a3020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.644326] ffff8800797a3030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.645447] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.646808] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.647813] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.649427] XFS (sdc): Unmount and run xfs_repair
[  438.650307] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.651223] ffff8800769b0000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.652410] ffff8800769b0010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.653633] ffff8800769b0020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.654782] ffff8800769b0030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.658423] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.660230] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.666118] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.667555] XFS (sdc): Unmount and run xfs_repair
[  438.668455] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.669378] ffff88007a3c5000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.670467] ffff88007a3c5010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.671519] ffff88007a3c5020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.672520] ffff88007a3c5030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.674757] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.676685] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.680621] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.682661] XFS (sdc): Unmount and run xfs_repair
[  438.683529] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.684596] ffff88007a740000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.686219] ffff88007a740010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.687629] ffff88007a740020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.689524] ffff88007a740030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.691411] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.693114] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.693734] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.695073] XFS (sdc): Unmount and run xfs_repair
[  438.695868] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.698474] ffff88007a3c5000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.699984] ffff88007a3c5010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.701152] ffff88007a3c5020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.702481] ffff88007a3c5030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.705646] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.706861] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.708359] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.709716] XFS (sdc): Unmount and run xfs_repair
[  438.710497] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.711278] ffff880078183000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.712205] ffff880078183010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.713913] ffff880078183020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.715104] ffff880078183030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.717075] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.718280] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.720983] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.722911] XFS (sdc): Unmount and run xfs_repair
[  438.724066] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.725071] ffff880078005000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.726119] ffff880078005010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.727190] ffff880078005020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.728226] ffff880078005030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.729969] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.731361] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.732747] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.734117] XFS (sdc): Unmount and run xfs_repair
[  438.734902] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.735752] ffff880078183000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.736832] ffff880078183010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.737962] ffff880078183020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.739045] ffff880078183030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.740977] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.743126] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.744501] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.745725] XFS (sdc): Unmount and run xfs_repair
[  438.746442] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.747267] ffff880077fe5000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.748273] ffff880077fe5010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.749320] ffff880077fe5020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.750234] ffff880077fe5030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.752178] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.756882] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.759212] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.760569] XFS (sdc): Unmount and run xfs_repair
[  438.761555] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.762896] ffff8800793d0000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.763974] ffff8800793d0010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.765079] ffff8800793d0020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.766224] ffff8800793d0030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.767303] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.768759] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.772009] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.774195] XFS (sdc): Unmount and run xfs_repair
[  438.775363] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.777658] ffff88007a7c1000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.779076] ffff88007a7c1010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.780252] ffff88007a7c1020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.781722] ffff88007a7c1030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.783360] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.784792] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.789488] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.790954] XFS (sdc): Unmount and run xfs_repair
[  438.794111] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.795980] ffff88007a7c0000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.797165] ffff88007a7c0010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.798473] ffff88007a7c0020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.800261] ffff88007a7c0030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.801453] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.803507] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.804388] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.805609] XFS (sdc): Unmount and run xfs_repair
[  438.806350] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.807097] ffff880077eac000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.808016] ffff880077eac010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.808926] ffff880077eac020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.809843] ffff880077eac030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.811506] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.812625] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.819493] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.820967] XFS (sdc): Unmount and run xfs_repair
[  438.821836] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.822738] ffff88007915c000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.823807] ffff88007915c010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.824862] ffff88007915c020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.827468] ffff88007915c030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.829913] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.835179] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.836340] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.841101] XFS (sdc): Unmount and run xfs_repair
[  438.841860] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.842737] ffff880077eac000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.843950] ffff880077eac010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.844945] ffff880077eac020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.845999] ffff880077eac030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.848330] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.849598] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.854066] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.855342] XFS (sdc): Unmount and run xfs_repair
[  438.856058] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.856908] ffff88007915c000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.857986] ffff88007915c010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.859132] ffff88007915c020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.860254] ffff88007915c030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.862968] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.864620] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.865736] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.867346] XFS (sdc): Unmount and run xfs_repair
[  438.868293] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.869630] ffff880077eac000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.870804] ffff880077eac010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.871859] ffff880077eac020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.872954] ffff880077eac030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.879763] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.883000] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.884597] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.886239] XFS (sdc): Unmount and run xfs_repair
[  438.887116] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.887999] ffff880077e68000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.889017] ffff880077e68010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.890090] ffff880077e68020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.891484] ffff880077e68030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.893523] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.894630] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.898003] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.899265] XFS (sdc): Unmount and run xfs_repair
[  438.899928] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.900634] ffff88007755f000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.901581] ffff88007755f010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.902637] ffff88007755f020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.903668] ffff88007755f030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.906230] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.907559] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.908632] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.909941] XFS (sdc): Unmount and run xfs_repair
[  438.910665] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.911728] ffff880077e68000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.916153] ffff880077e68010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.917679] ffff880077e68020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.919431] ffff880077e68030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.920606] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.922511] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.924386] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.925726] XFS (sdc): Unmount and run xfs_repair
[  438.926588] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.927576] ffff88007755f000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.928765] ffff88007755f010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.929848] ffff88007755f020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.931004] ffff88007755f030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.932901] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.934798] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.937045] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.939484] XFS (sdc): Unmount and run xfs_repair
[  438.940976] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.942460] ffff880077e68000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.943659] ffff880077e68010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.944812] ffff880077e68020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.945822] ffff880077e68030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.946839] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.948175] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.950074] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.951661] XFS (sdc): Unmount and run xfs_repair
[  438.952465] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.953868] ffff880079222000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.957957] ffff880079222010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.959473] ffff880079222020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.960681] ffff880079222030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.961826] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.962952] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.964405] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.965733] XFS (sdc): Unmount and run xfs_repair
[  438.966472] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.967259] ffff88007a697000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.968291] ffff88007a697010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.970131] ffff88007a697020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.972625] ffff88007a697030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.973901] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  438.975198] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  438.976963] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  438.978280] XFS (sdc): Unmount and run xfs_repair
[  438.979086] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  438.980019] ffff880079276000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  438.983999] ffff880079276010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  438.987699] ffff880079276020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  438.991137] ffff880079276030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  438.995977] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.002487] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.006924] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  439.009009] XFS (sdc): Unmount and run xfs_repair
[  439.009914] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.011171] ffff88007a697000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  439.012436] ffff88007a697010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  439.013706] ffff88007a697020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  439.014916] ffff88007a697030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  439.016860] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.018425] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.019466] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  439.024321] XFS (sdc): Unmount and run xfs_repair
[  439.025518] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.026507] ffff880079276000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  439.028112] ffff880079276010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  439.029458] ffff880079276020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  439.031656] ffff880079276030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  439.033612] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.035362] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.035912] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  439.037534] XFS (sdc): Unmount and run xfs_repair
[  439.038328] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.039641] ffff88007a697000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  439.041373] ffff88007a697010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  439.043147] ffff88007a697020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  439.044399] ffff88007a697030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  439.046170] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.047882] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.048797] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  439.052714] XFS (sdc): Unmount and run xfs_repair
[  439.053985] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.056057] ffff88007a703000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  439.058883] ffff88007a703010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  439.060771] ffff88007a703020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  439.062023] ffff88007a703030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  439.063342] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.064991] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.065765] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  439.067102] XFS (sdc): Unmount and run xfs_repair
[  439.067834] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.068670] ffff88007922f000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  439.069775] ffff88007922f010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  439.071063] ffff88007922f020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  439.072171] ffff88007922f030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  439.075830] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.078017] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.080077] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  439.081388] XFS (sdc): Unmount and run xfs_repair
[  439.082103] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.083061] ffff88007a703000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  439.084999] ffff88007a703010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  439.086860] ffff88007a703020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  439.088918] ffff88007a703030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  439.090203] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.091938] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.095667] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  439.098349] XFS (sdc): Unmount and run xfs_repair
[  439.099267] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.100209] ffff880078097000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  439.101553] ffff880078097010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  439.102882] ffff880078097020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  439.104008] ffff880078097030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  439.106211] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.107831] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.156277] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.157587] XFS (sdc): Unmount and run xfs_repair
[  439.158302] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.159085] ffff880078203000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.160050] ffff880078203010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.161056] ffff880078203020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.162037] ffff880078203030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.163544] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.164646] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.165952] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.167168] XFS (sdc): Unmount and run xfs_repair
[  439.167841] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.168687] ffff88007745e000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.169703] ffff88007745e010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.170750] ffff88007745e020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.171803] ffff88007745e030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.172914] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.174251] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.175176] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.176421] XFS (sdc): Unmount and run xfs_repair
[  439.177177] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.178041] ffff880078203000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.179087] ffff880078203010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.180070] ffff880078203020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.181012] ffff880078203030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.183004] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.186973] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.188902] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.190311] XFS (sdc): Unmount and run xfs_repair
[  439.191144] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.191949] ffff88007745e000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.192974] ffff88007745e010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.194165] ffff88007745e020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.195340] ffff88007745e030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.196877] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.198743] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.202561] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.203959] XFS (sdc): Unmount and run xfs_repair
[  439.204679] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.205552] ffff880078203000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.206683] ffff880078203010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.207762] ffff880078203020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.208905] ffff880078203030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.212046] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.213274] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.213762] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.215225] XFS (sdc): Unmount and run xfs_repair
[  439.216079] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.217305] ffff88007745e000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.218621] ffff88007745e010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.219731] ffff88007745e020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.221247] ffff88007745e030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.224595] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.226257] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.228327] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.229929] XFS (sdc): Unmount and run xfs_repair
[  439.230902] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.231953] ffff880078203000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.233053] ffff880078203010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.234111] ffff880078203020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.235239] ffff880078203030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.236613] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.237839] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.242595] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.244883] XFS (sdc): Unmount and run xfs_repair
[  439.246067] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.247138] ffff88007745e000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.248343] ffff88007745e010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.249761] ffff88007745e020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.251198] ffff88007745e030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.252549] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.255894] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.257072] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.258384] XFS (sdc): Unmount and run xfs_repair
[  439.259175] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.260022] ffff880079219000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.261046] ffff880079219010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.262065] ffff880079219020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.263068] ffff880079219030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.265164] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.266569] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.273311] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.274621] XFS (sdc): Unmount and run xfs_repair
[  439.275967] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.277258] ffff88007745e000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.278429] ffff88007745e010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.280534] ffff88007745e020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.282345] ffff88007745e030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.283674] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.290855] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.295518] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.296881] XFS (sdc): Unmount and run xfs_repair
[  439.297706] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.300662] ffff88007770c000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.303985] ffff88007770c010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.305397] ffff88007770c020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.306516] ffff88007770c030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.308002] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.316157] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.317926] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.319675] XFS (sdc): Unmount and run xfs_repair
[  439.320900] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.322271] ffff8800782e3000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.323402] ffff8800782e3010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.325120] ffff8800782e3020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.326620] ffff8800782e3030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.328675] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.331699] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.333790] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.335263] XFS (sdc): Unmount and run xfs_repair
[  439.336116] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.336998] ffff88007770c000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.338191] ffff88007770c010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.339290] ffff88007770c020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.340279] ffff88007770c030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.341368] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.343618] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.348152] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.349945] XFS (sdc): Unmount and run xfs_repair
[  439.352278] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.353664] ffff8800782e3000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.355121] ffff8800782e3010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.357026] ffff8800782e3020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.360614] ffff8800782e3030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.362604] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.365205] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.365921] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.367380] XFS (sdc): Unmount and run xfs_repair
[  439.368271] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.369155] ffff880077760000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.370240] ffff880077760010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.373470] ffff880077760020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.375334] ffff880077760030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.378038] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.379411] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.380122] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.381428] XFS (sdc): Unmount and run xfs_repair
[  439.382220] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.383267] ffff8800782e3000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.384434] ffff8800782e3010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.385622] ffff8800782e3020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.386663] ffff8800782e3030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.387737] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.388904] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.391755] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.393606] XFS (sdc): Unmount and run xfs_repair
[  439.395232] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.396855] ffff880077760000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.399157] ffff880077760010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.406361] ffff880077760020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.408197] ffff880077760030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.409480] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.410970] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.412361] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.413775] XFS (sdc): Unmount and run xfs_repair
[  439.414517] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.415304] ffff8800782e3000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.416274] ffff8800782e3010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.417304] ffff8800782e3020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.418309] ffff8800782e3030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.420571] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.424395] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.425839] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.428852] XFS (sdc): Unmount and run xfs_repair
[  439.430126] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.431209] ffff88007750b000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.432395] ffff88007750b010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.433556] ffff88007750b020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.434671] ffff88007750b030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.435969] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.437377] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.438204] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.439674] XFS (sdc): Unmount and run xfs_repair
[  439.440535] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.441568] ffff88007a66d000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.442708] ffff88007a66d010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.443711] ffff88007a66d020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.444746] ffff88007a66d030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.445769] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.447518] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.449781] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.451234] XFS (sdc): Unmount and run xfs_repair
[  439.452057] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.452898] ffff88007750b000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.453951] ffff88007750b010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.455049] ffff88007750b020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.456091] ffff88007750b030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.457393] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.458940] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.459877] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.461381] XFS (sdc): Unmount and run xfs_repair
[  439.462348] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.463536] ffff8800782e3000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.465041] ffff8800782e3010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.466251] ffff8800782e3020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.467413] ffff8800782e3030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.469380] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.470656] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.472484] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.474011] XFS (sdc): Unmount and run xfs_repair
[  439.474875] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.476355] ffff88007929d000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.477919] ffff88007929d010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.479109] ffff88007929d020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.480174] ffff88007929d030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.481936] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.483876] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.485529] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.486983] XFS (sdc): Unmount and run xfs_repair
[  439.487790] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.488637] ffff8800761e0000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.489755] ffff8800761e0010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.490824] ffff8800761e0020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.491937] ffff8800761e0030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.493440] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.495313] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.500715] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.502134] XFS (sdc): Unmount and run xfs_repair
[  439.502932] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.504419] ffff88007929d000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.506130] ffff88007929d010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.508312] ffff88007929d020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.511892] ffff88007929d030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.514231] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.515838] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.517606] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.519185] XFS (sdc): Unmount and run xfs_repair
[  439.520156] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.521036] ffff8800761e0000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.522128] ffff8800761e0010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.523197] ffff8800761e0020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.524334] ffff8800761e0030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.526536] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.528764] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.532617] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.533971] XFS (sdc): Unmount and run xfs_repair
[  439.534882] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.535823] ffff88007929d000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.537141] ffff88007929d010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.538568] ffff88007929d020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.539652] ffff88007929d030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.543461] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.545267] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.546575] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.548238] XFS (sdc): Unmount and run xfs_repair
[  439.549066] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.549975] ffff88007813d000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.551099] ffff88007813d010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.552167] ffff88007813d020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.553171] ffff88007813d030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.554376] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.556064] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.557142] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.558659] XFS (sdc): Unmount and run xfs_repair
[  439.559529] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.560389] ffff880077692000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.561392] ffff880077692010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.562506] ffff880077692020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.563787] ffff880077692030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.565244] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.566665] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.567106] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.568453] XFS (sdc): Unmount and run xfs_repair
[  439.569188] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.570051] ffff880077fda000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.571091] ffff880077fda010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.572097] ffff880077fda020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.573073] ffff880077fda030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.574857] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.576729] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.577407] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.578995] XFS (sdc): Unmount and run xfs_repair
[  439.579766] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.580610] ffff880077692000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.584185] ffff880077692010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.587593] ffff880077692020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.590379] ffff880077692030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.593328] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.595040] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.595820] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.597493] XFS (sdc): Unmount and run xfs_repair
[  439.598579] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.599472] ffff880077fda000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.600562] ffff880077fda010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.602543] ffff880077fda020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.604067] ffff880077fda030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.605555] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.607163] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.608113] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.609465] XFS (sdc): Unmount and run xfs_repair
[  439.610287] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.611681] ffff88007770c000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.618831] ffff88007770c010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.620927] ffff88007770c020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.622249] ffff88007770c030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.623621] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.627129] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.633266] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.635067] XFS (sdc): Unmount and run xfs_repair
[  439.635920] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.636749] ffff880077f2b000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.637746] ffff880077f2b010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.638773] ffff880077f2b020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.639873] ffff880077f2b030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.640919] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.642955] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.643881] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.645666] XFS (sdc): Unmount and run xfs_repair
[  439.650811] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.652202] ffff88007915d000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.653617] ffff88007915d010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.655233] ffff88007915d020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.656507] ffff88007915d030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.658849] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.660809] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.661826] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.663477] XFS (sdc): Unmount and run xfs_repair
[  439.664376] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.665344] ffff880077f2b000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.666500] ffff880077f2b010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.667701] ffff880077f2b020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.668897] ffff880077f2b030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.670134] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.671962] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.673452] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.675034] XFS (sdc): Unmount and run xfs_repair
[  439.675825] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.676666] ffff88007a741000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.677716] ffff88007a741010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.678752] ffff88007a741020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.680657] ffff88007a741030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.682571] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.685530] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.686724] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.688202] XFS (sdc): Unmount and run xfs_repair
[  439.689373] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.690397] ffff880077e9a000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.691843] ffff880077e9a010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.693188] ffff880077e9a020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.694241] ffff880077e9a030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.696835] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.700315] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.701271] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.702747] XFS (sdc): Unmount and run xfs_repair
[  439.703510] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.704509] ffff880079352000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.706554] ffff880079352010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.709166] ffff880079352020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.711980] ffff880079352030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.713556] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.716394] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.717154] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.718540] XFS (sdc): Unmount and run xfs_repair
[  439.723295] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.725245] ffff880077616000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.727130] ffff880077616010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.728260] ffff880077616020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.729356] ffff880077616030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.730889] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.732723] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.734961] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.739033] XFS (sdc): Unmount and run xfs_repair
[  439.740122] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.741006] ffff880079352000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.744923] ffff880079352010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.746205] ffff880079352020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.747465] ffff880079352030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.748936] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.750139] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.751141] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.752799] XFS (sdc): Unmount and run xfs_repair
[  439.753946] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.759800] ffff880077616000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.761264] ffff880077616010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.762510] ffff880077616020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.765025] ffff880077616030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.767110] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.770142] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.772324] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.773848] XFS (sdc): Unmount and run xfs_repair
[  439.774549] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.775329] ffff88007915d000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.776509] ffff88007915d010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.777693] ffff88007915d020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.779018] ffff88007915d030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.780261] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.781461] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.782470] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.789493] XFS (sdc): Unmount and run xfs_repair
[  439.791131] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.792284] ffff880078255000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.793820] ffff880078255010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.795862] ffff880078255020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.798524] ffff880078255030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.801201] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.802595] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.804477] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.806154] XFS (sdc): Unmount and run xfs_repair
[  439.807066] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.808787] ffff88007915d000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.810026] ffff88007915d010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.811270] ffff88007915d020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.812617] ffff88007915d030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.813672] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.816140] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.816554] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.817972] XFS (sdc): Unmount and run xfs_repair
[  439.818821] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.819792] ffff880078255000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.821137] ffff880078255010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.822244] ffff880078255020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.823270] ffff880078255030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.827146] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.829776] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.834249] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.835651] XFS (sdc): Unmount and run xfs_repair
[  439.836543] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.837461] ffff88007915d000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.839652] ffff88007915d010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.841423] ffff88007915d020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.843060] ffff88007915d030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.844418] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.846069] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.848308] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.850687] XFS (sdc): Unmount and run xfs_repair
[  439.851732] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.853598] ffff88007a73b000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.854860] ffff88007a73b010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.856169] ffff88007a73b020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.857377] ffff88007a73b030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.860475] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.861561] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.865018] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.866416] XFS (sdc): Unmount and run xfs_repair
[  439.867333] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.868323] ffff8800777cf000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.869811] ffff8800777cf010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.870981] ffff8800777cf020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.872054] ffff8800777cf030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.873251] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.874467] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.879541] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.881067] XFS (sdc): Unmount and run xfs_repair
[  439.881947] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.882874] ffff88007a73b000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.884398] ffff88007a73b010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.886882] ffff88007a73b020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.889078] ffff88007a73b030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.890625] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.892403] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.896581] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.898136] XFS (sdc): Unmount and run xfs_repair
[  439.899089] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.900224] ffff88007811a000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.901325] ffff88007811a010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.902412] ffff88007811a020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.904584] ffff88007811a030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.907957] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.909335] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.909896] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.911192] XFS (sdc): Unmount and run xfs_repair
[  439.911939] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.912858] ffff8800777cf000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.914414] ffff8800777cf010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.916627] ffff8800777cf020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.918957] ffff8800777cf030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.921198] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.923167] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.924605] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.926055] XFS (sdc): Unmount and run xfs_repair
[  439.926955] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.927762] ffff88007811a000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.929416] ffff88007811a010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.931527] ffff88007811a020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.934279] ffff88007811a030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.936224] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.937810] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.939837] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.941868] XFS (sdc): Unmount and run xfs_repair
[  439.943252] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.944270] ffff8800777cf000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.946496] ffff8800777cf010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.947791] ffff8800777cf020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.949512] ffff8800777cf030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.951158] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.954833] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.956440] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.958406] XFS (sdc): Unmount and run xfs_repair
[  439.960927] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.962137] ffff88007811a000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.963356] ffff88007811a010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.964518] ffff88007811a020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.966989] ffff88007811a030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.969146] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.970372] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.971685] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.973080] XFS (sdc): Unmount and run xfs_repair
[  439.973888] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.974767] ffff8800777cf000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.975797] ffff8800777cf010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.977304] ffff8800777cf020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.978578] ffff8800777cf030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.980299] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.982068] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.984175] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.985667] XFS (sdc): Unmount and run xfs_repair
[  439.986999] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.988151] ffff88007811a000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.989303] ffff88007811a010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  439.990371] ffff88007811a020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  439.991395] ffff88007811a030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  439.992427] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  439.993678] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  439.994368] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  439.995648] XFS (sdc): Unmount and run xfs_repair
[  439.996402] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  439.997246] ffff8800777cf000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  439.999340] ffff8800777cf010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  440.001476] ffff8800777cf020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  440.003100] ffff8800777cf030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  440.005009] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.006766] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.007616] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  440.009037] XFS (sdc): Unmount and run xfs_repair
[  440.009876] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.010759] ffff88007811a000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  440.012183] ffff88007811a010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  440.014410] ffff88007811a020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  440.016000] ffff88007811a030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  440.017359] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.018751] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.019287] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e004a0
[  440.022008] XFS (sdc): Unmount and run xfs_repair
[  440.023340] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.025187] ffff8800777cf000: 49 0e 6e 57 5b c8 a2 ba e8 29 18 bc 50 d2 23 9d  I.nW[....)..P.#.
[  440.026929] ffff8800777cf010: b2 55 30 17 51 91 7c 36 e1 f7 18 83 14 de 13 09  .U0.Q.|6........
[  440.028206] ffff8800777cf020: 2c 3a b6 72 bd b4 d6 87 7c 51 3a 2a a3 b5 58 af  ,:.r....|Q:*..X.
[  440.029443] ffff8800777cf030: 59 f1 7b 59 7a 2b 8e 0c 55 97 ff c9 8c 3e aa 3b  Y.{Yz+..U....>.;
[  440.030749] XFS (sdc): metadata I/O error: block 0x1e004a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.032115] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.067158] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.068562] XFS (sdc): Unmount and run xfs_repair
[  440.069360] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.070231] ffff8800790e8000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.071298] ffff8800790e8010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.072409] ffff8800790e8020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.073424] ffff8800790e8030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.074805] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.076690] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.077415] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.079001] XFS (sdc): Unmount and run xfs_repair
[  440.079685] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.080501] ffff8800790e9000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.081491] ffff8800790e9010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.082574] ffff8800790e9020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.083619] ffff8800790e9030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.086103] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.087632] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.089584] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.091031] XFS (sdc): Unmount and run xfs_repair
[  440.091912] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.092821] ffff880076d94000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.093960] ffff880076d94010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.095020] ffff880076d94020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.096006] ffff880076d94030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.097900] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.099200] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.100846] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.102336] XFS (sdc): Unmount and run xfs_repair
[  440.103162] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.104126] ffff880077ea1000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.105281] ffff880077ea1010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.106440] ffff880077ea1020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.107506] ffff880077ea1030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.109189] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.111094] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.112307] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.113578] XFS (sdc): Unmount and run xfs_repair
[  440.114265] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.115010] ffff88007774b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.115985] ffff88007774b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.116973] ffff88007774b020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.118020] ffff88007774b030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.119438] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.122227] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.123911] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.125999] XFS (sdc): Unmount and run xfs_repair
[  440.127156] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.127996] ffff880077788000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.129009] ffff880077788010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.130196] ffff880077788020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.131831] ffff880077788030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.133071] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.134187] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.134803] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.136052] XFS (sdc): Unmount and run xfs_repair
[  440.136906] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.137862] ffff88007774b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.138972] ffff88007774b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.141490] ffff88007774b020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.149873] ffff88007774b030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.151868] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.153590] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.157070] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.162387] XFS (sdc): Unmount and run xfs_repair
[  440.163576] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.164837] ffff88007774b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.165984] ffff88007774b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.167011] ffff88007774b020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.168101] ffff88007774b030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.169276] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.170663] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.171470] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.172812] XFS (sdc): Unmount and run xfs_repair
[  440.173694] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.174562] ffff880079262000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.176209] ffff880079262010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.177787] ffff880079262020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.179200] ffff880079262030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.180710] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.182111] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.183096] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.184435] XFS (sdc): Unmount and run xfs_repair
[  440.185184] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.186004] ffff880079078000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.187277] ffff880079078010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.190554] ffff880079078020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.192054] ffff880079078030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.193970] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.197641] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.198138] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.199582] XFS (sdc): Unmount and run xfs_repair
[  440.200378] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.201195] ffff880077f8b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.202287] ffff880077f8b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.203329] ffff880077f8b020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.204352] ffff880077f8b030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.206710] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.208126] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.210171] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.211524] XFS (sdc): Unmount and run xfs_repair
[  440.212441] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.214234] ffff880079078000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.216619] ffff880079078010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.217916] ffff880079078020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.220155] ffff880079078030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.221468] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.222820] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.227279] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.228649] XFS (sdc): Unmount and run xfs_repair
[  440.230925] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.231854] ffff880077f8b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.233909] ffff880077f8b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.235900] ffff880077f8b020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.237050] ffff880077f8b030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.242092] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.244808] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.245488] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.246923] XFS (sdc): Unmount and run xfs_repair
[  440.247867] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.248965] ffff88007902b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.250340] ffff88007902b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.253678] ffff88007902b020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.254997] ffff88007902b030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.257013] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.259046] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.259492] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.260953] XFS (sdc): Unmount and run xfs_repair
[  440.261691] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.262491] ffff880077f8b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.263427] ffff880077f8b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.264468] ffff880077f8b020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.265844] ffff880077f8b030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.267094] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.268380] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.269832] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.271095] XFS (sdc): Unmount and run xfs_repair
[  440.271798] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.274895] ffff88007a689000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.278987] ffff88007a689010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.281078] ffff88007a689020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.282617] ffff88007a689030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.283673] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.284937] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.287433] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.290060] XFS (sdc): Unmount and run xfs_repair
[  440.292053] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.293522] ffff8800780e4000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.294893] ffff8800780e4010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.296086] ffff8800780e4020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.297687] ffff8800780e4030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.299210] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.300374] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.301040] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.305237] XFS (sdc): Unmount and run xfs_repair
[  440.307349] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.309866] ffff88007a689000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.311662] ffff88007a689010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.313079] ffff88007a689020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.314108] ffff88007a689030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.317028] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.326450] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.327692] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.330791] XFS (sdc): Unmount and run xfs_repair
[  440.331696] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.332610] ffff88007a689000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.333781] ffff88007a689010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.334722] ffff88007a689020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.336507] ffff88007a689030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.338654] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.339937] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.341988] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.343335] XFS (sdc): Unmount and run xfs_repair
[  440.344861] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.348975] ffff88007a73b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.350164] ffff88007a73b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.351843] ffff88007a73b020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.353203] ffff88007a73b030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.354253] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.355528] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.356114] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.357410] XFS (sdc): Unmount and run xfs_repair
[  440.358116] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.358945] ffff88007a73b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.359933] ffff88007a73b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.360847] ffff88007a73b020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.361830] ffff88007a73b030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.363971] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.365190] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.368471] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.370125] XFS (sdc): Unmount and run xfs_repair
[  440.371051] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.373946] ffff8800776b6000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.376385] ffff8800776b6010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.377552] ffff8800776b6020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.378702] ffff8800776b6030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.379651] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.382717] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.383559] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.384898] XFS (sdc): Unmount and run xfs_repair
[  440.386725] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.387638] ffff880077777000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.388643] ffff880077777010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.390541] ffff880077777020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.392601] ffff880077777030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.394220] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.395502] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.398534] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.400966] XFS (sdc): Unmount and run xfs_repair
[  440.401742] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.403244] ffff880077d7f000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.404539] ffff880077d7f010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.406440] ffff880077d7f020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.408878] ffff880077d7f030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.411937] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.413510] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.415296] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.419876] XFS (sdc): Unmount and run xfs_repair
[  440.420844] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.421654] ffff880077777000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.422849] ffff880077777010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.424951] ffff880077777020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.426380] ffff880077777030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.428838] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.430537] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.431484] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.433094] XFS (sdc): Unmount and run xfs_repair
[  440.434432] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.435453] ffff880077d7f000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.437880] ffff880077d7f010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.439021] ffff880077d7f020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.440102] ffff880077d7f030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.441982] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.443106] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.444433] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.445844] XFS (sdc): Unmount and run xfs_repair
[  440.446674] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.449101] ffff880077777000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.450303] ffff880077777010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.451386] ffff880077777020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.452442] ffff880077777030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.453859] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.455248] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.457583] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.458879] XFS (sdc): Unmount and run xfs_repair
[  440.459675] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.460546] ffff88007a71b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.461551] ffff88007a71b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.462541] ffff88007a71b020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.463561] ffff88007a71b030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.464834] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.469339] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.478046] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.479404] XFS (sdc): Unmount and run xfs_repair
[  440.480202] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.481742] ffff88007a71b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.483415] ffff88007a71b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.484573] ffff88007a71b020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.485663] ffff88007a71b030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.487486] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.488632] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.491245] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.493185] XFS (sdc): Unmount and run xfs_repair
[  440.494339] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.495914] ffff880077777000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.497263] ffff880077777010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.498475] ffff880077777020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.499843] ffff880077777030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.501956] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.503570] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.505497] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.507055] XFS (sdc): Unmount and run xfs_repair
[  440.507785] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.508609] ffff88007a689000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.509637] ffff88007a689010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.510656] ffff88007a689020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.511635] ffff88007a689030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.513113] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.514217] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.516367] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.517599] XFS (sdc): Unmount and run xfs_repair
[  440.519982] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.520982] ffff880077777000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.523584] ffff880077777010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.526329] ffff880077777020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.527882] ffff880077777030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.529164] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.530450] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.531010] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.532255] XFS (sdc): Unmount and run xfs_repair
[  440.532957] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.534019] ffff88007a689000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.535133] ffff88007a689010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.536139] ffff88007a689020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.537167] ffff88007a689030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.539318] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.540814] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.543934] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.545290] XFS (sdc): Unmount and run xfs_repair
[  440.546242] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.547583] ffff880077777000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.550977] ffff880077777010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.552088] ffff880077777020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.553228] ffff880077777030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.554377] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.555490] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.558755] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.560036] XFS (sdc): Unmount and run xfs_repair
[  440.560755] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.561603] ffff88007a689000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.563050] ffff88007a689010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.565926] ffff88007a689020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.566981] ffff88007a689030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.568011] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.569680] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.570910] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.572577] XFS (sdc): Unmount and run xfs_repair
[  440.573723] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.574634] ffff880077748000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.575652] ffff880077748010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.576934] ffff880077748020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.578183] ffff880077748030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.582683] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.584430] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.585466] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.586768] XFS (sdc): Unmount and run xfs_repair
[  440.587611] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.588490] ffff880078016000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.589489] ffff880078016010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.590475] ffff880078016020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.591665] ffff880078016030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.593697] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.594963] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.599225] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.601283] XFS (sdc): Unmount and run xfs_repair
[  440.602170] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.602943] ffff880077ca4000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.603902] ffff880077ca4010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.604980] ffff880077ca4020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.606030] ffff880077ca4030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.608522] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.612007] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.612645] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.614059] XFS (sdc): Unmount and run xfs_repair
[  440.614774] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.615620] ffff880078016000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.616662] ffff880078016010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.617681] ffff880078016020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.618734] ffff880078016030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.621086] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.622471] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.625122] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.626396] XFS (sdc): Unmount and run xfs_repair
[  440.627209] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.628124] ffff880077ca4000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.630146] ffff880077ca4010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.631382] ffff880077ca4020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.633319] ffff880077ca4030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.635835] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.638242] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.638801] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.641813] XFS (sdc): Unmount and run xfs_repair
[  440.642591] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.643457] ffff880078016000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.644950] ffff880078016010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.646631] ffff880078016020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.647988] ffff880078016030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.650120] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.651384] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.652715] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.654009] XFS (sdc): Unmount and run xfs_repair
[  440.654634] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.655371] ffff8800793ed000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.656357] ffff8800793ed010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.657339] ffff8800793ed020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.658326] ffff8800793ed030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.660246] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.661649] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.662992] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.664189] XFS (sdc): Unmount and run xfs_repair
[  440.664888] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.665704] ffff880077e0c000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.666666] ffff880077e0c010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.667877] ffff880077e0c020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.668932] ffff880077e0c030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.670840] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.672275] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.672797] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.674389] XFS (sdc): Unmount and run xfs_repair
[  440.675096] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.675880] ffff8800793ed000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.676909] ffff8800793ed010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.678002] ffff8800793ed020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.679097] ffff8800793ed030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.682094] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.683914] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.687721] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.689284] XFS (sdc): Unmount and run xfs_repair
[  440.690232] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.691692] ffff880077540000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.693278] ffff880077540010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.694639] ffff880077540020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.696239] ffff880077540030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.697604] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.698911] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.703176] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.704568] XFS (sdc): Unmount and run xfs_repair
[  440.705420] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.706251] ffff880077fa8000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.707323] ffff880077fa8010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.708349] ffff880077fa8020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.709358] ffff880077fa8030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.711913] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.713091] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.717089] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.718498] XFS (sdc): Unmount and run xfs_repair
[  440.720218] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.721677] ffff8800790eb000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.722827] ffff8800790eb010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.723913] ffff8800790eb020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.725066] ffff8800790eb030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.727246] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.728516] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.730122] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa004c0
[  440.731710] XFS (sdc): Unmount and run xfs_repair
[  440.732470] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.733377] ffff880079377000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  440.735015] ffff880079377010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  440.736202] ffff880079377020: 57 85 ef f3 28 0d e8 00 57 85 ef f3 28 0d e8 00  W...(...W...(...
[  440.737276] ffff880079377030: 57 85 ef f3 28 0d e8 00 00 00 00 00 00 00 00 06  W...(...........
[  440.739158] XFS (sdc): metadata I/O error: block 0xa004c0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.740434] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.771161] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.772689] XFS (sdc): Unmount and run xfs_repair
[  440.773591] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.774618] ffff880077cc1000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.775859] ffff880077cc1010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.777104] ffff880077cc1020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.778453] ffff880077cc1030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.780910] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.782343] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.783768] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.785263] XFS (sdc): Unmount and run xfs_repair
[  440.785915] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.786631] ffff880077617000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.787650] ffff880077617010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.788828] ffff880077617020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.789994] ffff880077617030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.791204] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.792605] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.796746] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.798261] XFS (sdc): Unmount and run xfs_repair
[  440.799156] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.800113] ffff88007769a000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.801636] ffff88007769a010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.803249] ffff88007769a020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.804552] ffff88007769a030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.805930] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.808455] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.810819] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.812150] XFS (sdc): Unmount and run xfs_repair
[  440.812879] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.813653] ffff88007a426000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.814638] ffff88007a426010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.815635] ffff88007a426020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.816616] ffff88007a426030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.817997] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.819268] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.820356] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.821664] XFS (sdc): Unmount and run xfs_repair
[  440.822429] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.823263] ffff88007a427000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.825054] ffff88007a427010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.826662] ffff88007a427020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.828439] ffff88007a427030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.830523] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.832158] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.833994] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.835496] XFS (sdc): Unmount and run xfs_repair
[  440.836323] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.837151] ffff88007a426000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.838127] ffff88007a426010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.839205] ffff88007a426020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.840223] ffff88007a426030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.842309] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.843616] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.844244] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.847759] XFS (sdc): Unmount and run xfs_repair
[  440.849032] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.850208] ffff88007a427000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.851330] ffff88007a427010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.852406] ffff88007a427020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.853386] ffff88007a427030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.855815] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.857076] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.860710] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.862287] XFS (sdc): Unmount and run xfs_repair
[  440.863249] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.864417] ffff8800793ce000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.865578] ffff8800793ce010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.866922] ffff8800793ce020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.867999] ffff8800793ce030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.870628] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.871911] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.873964] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.882328] XFS (sdc): Unmount and run xfs_repair
[  440.883152] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.886926] ffff8800793cf000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.888265] ffff8800793cf010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.889247] ffff8800793cf020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.890212] ffff8800793cf030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.891194] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.892312] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.895125] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.896396] XFS (sdc): Unmount and run xfs_repair
[  440.897932] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.898833] ffff88007a71a000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.901149] ffff88007a71a010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.905091] ffff88007a71a020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.907677] ffff88007a71a030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.910888] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.912802] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.913856] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.915245] XFS (sdc): Unmount and run xfs_repair
[  440.916013] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.916901] ffff8800793ce000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.917877] ffff8800793ce010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.919017] ffff8800793ce020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.920262] ffff8800793ce030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.921393] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.922932] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.924367] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.925770] XFS (sdc): Unmount and run xfs_repair
[  440.926831] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.927941] ffff88007a71a000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.929325] ffff88007a71a010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.930391] ffff88007a71a020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.931552] ffff88007a71a030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.933694] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.936952] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.940340] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.941753] XFS (sdc): Unmount and run xfs_repair
[  440.942637] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.943537] ffff88007a719000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.944645] ffff88007a719010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.945612] ffff88007a719020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.946565] ffff88007a719030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.948975] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.950310] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.952302] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.953518] XFS (sdc): Unmount and run xfs_repair
[  440.954200] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.955310] ffff880077d35000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.956515] ffff880077d35010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.957739] ffff880077d35020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.958992] ffff880077d35030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.960215] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.961614] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.962451] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.963669] XFS (sdc): Unmount and run xfs_repair
[  440.964326] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.965133] ffff88007a719000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.966204] ffff88007a719010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.967185] ffff88007a719020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.968266] ffff88007a719030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.970139] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.971403] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.981997] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.983338] XFS (sdc): Unmount and run xfs_repair
[  440.984103] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  440.984934] ffff8800793ed000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  440.986002] ffff8800793ed010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  440.986983] ffff8800793ed020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  440.988066] ffff8800793ed030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  440.990718] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  440.992280] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  440.997138] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  440.998645] XFS (sdc): Unmount and run xfs_repair
[  440.999972] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.001058] ffff880077eb7000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.002164] ffff880077eb7010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.003303] ffff880077eb7020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.004300] ffff880077eb7030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.005824] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.008076] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.012822] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.014223] XFS (sdc): Unmount and run xfs_repair
[  441.015013] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.015973] ffff8800793ed000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.017433] ffff8800793ed010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.018618] ffff8800793ed020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.019683] ffff8800793ed030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.021397] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.022487] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.025427] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.026642] XFS (sdc): Unmount and run xfs_repair
[  441.027324] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.028095] ffff880077d20000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.029051] ffff880077d20010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.029960] ffff880077d20020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.030881] ffff880077d20030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.032248] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.033551] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.033995] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.035209] XFS (sdc): Unmount and run xfs_repair
[  441.036336] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.037321] ffff880078203000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.038396] ffff880078203010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.039471] ffff880078203020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.040539] ffff880078203030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.042331] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.044412] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.046128] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.047573] XFS (sdc): Unmount and run xfs_repair
[  441.048404] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.049214] ffff880077d20000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.050164] ffff880077d20010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.051077] ffff880077d20020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.052004] ffff880077d20030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.053418] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.054591] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.065338] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.068558] XFS (sdc): Unmount and run xfs_repair
[  441.069462] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.070343] ffff880077541000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.071391] ffff880077541010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.072451] ffff880077541020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.074132] ffff880077541030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.075900] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.077149] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.078198] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.081979] XFS (sdc): Unmount and run xfs_repair
[  441.082805] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.083596] ffff880077e60000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.084705] ffff880077e60010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.085719] ffff880077e60020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.086726] ffff880077e60030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.087811] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.089019] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.090455] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.091898] XFS (sdc): Unmount and run xfs_repair
[  441.092665] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.093470] ffff880078203000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.094473] ffff880078203010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.095405] ffff880078203020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.096481] ffff880078203030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.097533] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.098792] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.099624] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.100949] XFS (sdc): Unmount and run xfs_repair
[  441.101838] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.105800] ffff88007a657000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.107151] ffff88007a657010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.108521] ffff88007a657020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.109821] ffff88007a657030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.112455] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.113664] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.117142] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.118755] XFS (sdc): Unmount and run xfs_repair
[  441.119631] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.120680] ffff880077fca000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.121909] ffff880077fca010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.123012] ffff880077fca020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.124193] ffff880077fca030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.125910] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.128276] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.130187] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.132054] XFS (sdc): Unmount and run xfs_repair
[  441.132929] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.133857] ffff88007599c000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.134941] ffff88007599c010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.136004] ffff88007599c020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.137107] ffff88007599c030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.138861] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.142779] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.144361] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.145755] XFS (sdc): Unmount and run xfs_repair
[  441.146444] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.147400] ffff880078203000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.148410] ffff880078203010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.149352] ffff880078203020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.150372] ffff880078203030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.152078] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.153211] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.153731] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.161028] XFS (sdc): Unmount and run xfs_repair
[  441.163805] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.164823] ffff880077d22000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.165843] ffff880077d22010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.166822] ffff880077d22020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.167762] ffff880077d22030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.168814] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.169863] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.171754] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.173034] XFS (sdc): Unmount and run xfs_repair
[  441.173775] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.175231] ffff880078203000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.177127] ffff880078203010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.180829] ffff880078203020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.182082] ffff880078203030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.183465] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.185113] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.188621] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.189995] XFS (sdc): Unmount and run xfs_repair
[  441.191488] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.193246] ffff880077d22000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.194619] ffff880077d22010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.195758] ffff880077d22020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.196853] ffff880077d22030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.198236] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.200198] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.203452] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.205076] XFS (sdc): Unmount and run xfs_repair
[  441.205803] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.206605] ffff88007a697000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.207564] ffff88007a697010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.208474] ffff88007a697020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.209370] ffff88007a697030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.211083] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.212224] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.214240] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.215614] XFS (sdc): Unmount and run xfs_repair
[  441.216357] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.217377] ffff880077746000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.218371] ffff880077746010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.219359] ffff880077746020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.220389] ffff880077746030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.221702] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.226403] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.229548] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.231698] XFS (sdc): Unmount and run xfs_repair
[  441.232544] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.234192] ffff880077d7d000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.236861] ffff880077d7d010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.238626] ffff880077d7d020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.239763] ffff880077d7d030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.241832] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.243196] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.244430] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.245826] XFS (sdc): Unmount and run xfs_repair
[  441.246661] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.247652] ffff88007745e000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.248752] ffff88007745e010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.249747] ffff88007745e020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.250807] ffff88007745e030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.251915] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.253967] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.255616] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.257094] XFS (sdc): Unmount and run xfs_repair
[  441.258316] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.259717] ffff880077786000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.261355] ffff880077786010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.262696] ffff880077786020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.265817] ffff880077786030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.267629] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.271034] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.275378] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.279362] XFS (sdc): Unmount and run xfs_repair
[  441.280072] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.280975] ffff880076d97000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.282213] ffff880076d97010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.284831] ffff880076d97020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.286030] ffff880076d97030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.287090] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.288243] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.291837] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.293432] XFS (sdc): Unmount and run xfs_repair
[  441.294273] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.297733] ffff880077cc1000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.300370] ffff880077cc1010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.301541] ffff880077cc1020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.302793] ffff880077cc1030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.304296] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.306019] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.307535] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14054f0
[  441.310013] XFS (sdc): Unmount and run xfs_repair
[  441.311066] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.311981] ffff880076d97000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.313174] ffff880076d97010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02  ................
[  441.314320] ffff880076d97020: 57 85 f0 09 3a b5 e8 40 57 85 ef f8 0c 56 91 c0  W...:..@W....V..
[  441.315441] ffff880076d97030: 57 85 f0 09 3a b5 e8 40 00 00 00 00 00 00 00 00  W...:..@........
[  441.316623] XFS (sdc): metadata I/O error: block 0x14054f0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.318356] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.322172] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.323588] XFS (sdc): Unmount and run xfs_repair
[  441.326704] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.327931] ffff88007937e000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.329016] ffff88007937e010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.329970] ffff88007937e020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.330972] ffff88007937e030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.331968] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.333231] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.333672] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.334928] XFS (sdc): Unmount and run xfs_repair
[  441.335711] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.336566] ffff880079122000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.338237] ffff880079122010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.339284] ffff880079122020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.340319] ffff880079122030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.344369] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.346111] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.349057] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.350390] XFS (sdc): Unmount and run xfs_repair
[  441.351112] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.351888] ffff880077faf000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.352977] ffff880077faf010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.353974] ffff880077faf020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.354997] ffff880077faf030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.357031] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.358374] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.360535] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.363036] XFS (sdc): Unmount and run xfs_repair
[  441.364877] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.366246] ffff88007937e000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.367657] ffff88007937e010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.368788] ffff88007937e020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.369884] ffff88007937e030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.370928] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.372963] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.377184] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.378938] XFS (sdc): Unmount and run xfs_repair
[  441.380469] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.382190] ffff880077faf000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.383794] ffff880077faf010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.385315] ffff880077faf020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.387937] ffff880077faf030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.389158] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.390341] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.390748] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.392071] XFS (sdc): Unmount and run xfs_repair
[  441.393072] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.394270] ffff88007937e000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.395415] ffff88007937e010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.396539] ffff88007937e020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.397731] ffff88007937e030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.400346] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.401541] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.401976] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.403286] XFS (sdc): Unmount and run xfs_repair
[  441.406327] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.407315] ffff880077faf000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.408679] ffff880077faf010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.409859] ffff880077faf020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.410896] ffff880077faf030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.412045] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.413662] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.414545] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.416210] XFS (sdc): Unmount and run xfs_repair
[  441.416955] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.417733] ffff88007937e000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.418853] ffff88007937e010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.420862] ffff88007937e020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.423954] ffff88007937e030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.426111] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.428570] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.430109] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.432292] XFS (sdc): Unmount and run xfs_repair
[  441.433915] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.435729] ffff880077faf000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.437110] ffff880077faf010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.438520] ffff880077faf020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.440040] ffff880077faf030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.441980] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.443609] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.444683] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.446056] XFS (sdc): Unmount and run xfs_repair
[  441.447673] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.451280] ffff880078207000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.453490] ffff880078207010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.455953] ffff880078207020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.457360] ffff880078207030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.460759] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.462814] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.464093] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.465521] XFS (sdc): Unmount and run xfs_repair
[  441.466417] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.467357] ffff880077670000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.468487] ffff880077670010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.469642] ffff880077670020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.471603] ffff880077670030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.473180] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.475257] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.476480] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.477802] XFS (sdc): Unmount and run xfs_repair
[  441.478644] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.479569] ffff880078207000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.480630] ffff880078207010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.481704] ffff880078207020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.482851] ffff880078207030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.484048] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.485291] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.492303] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.494081] XFS (sdc): Unmount and run xfs_repair
[  441.494921] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.495848] ffff880077670000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.497148] ffff880077670010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.498303] ffff880077670020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.499467] ffff880077670030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.500738] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.502407] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.503547] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.505119] XFS (sdc): Unmount and run xfs_repair
[  441.506411] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.507344] ffff880077671000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.508504] ffff880077671010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.509602] ffff880077671020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.510663] ffff880077671030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.512245] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.513687] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.515118] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.517243] XFS (sdc): Unmount and run xfs_repair
[  441.518111] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.519248] ffff880078205000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.522926] ffff880078205010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.524219] ffff880078205020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.525762] ffff880078205030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.528758] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.530985] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.532995] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.534285] XFS (sdc): Unmount and run xfs_repair
[  441.535092] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.535880] ffff88007a6a6000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.536903] ffff88007a6a6010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.537925] ffff88007a6a6020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.539187] ffff88007a6a6030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.541160] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.542492] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.545012] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.546312] XFS (sdc): Unmount and run xfs_repair
[  441.547063] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.547854] ffff880077505000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.548760] ffff880077505010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.549771] ffff880077505020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.550838] ffff880077505030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.552984] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.554603] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.556981] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.558404] XFS (sdc): Unmount and run xfs_repair
[  441.559236] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.560133] ffff880077c96000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.561164] ffff880077c96010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.562255] ffff880077c96020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.563934] ffff880077c96030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.565646] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.567658] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.570561] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.572226] XFS (sdc): Unmount and run xfs_repair
[  441.573068] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.573915] ffff88007747f000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.574910] ffff88007747f010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.576225] ffff88007747f020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.577785] ffff88007747f030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.579133] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.581412] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.582356] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.584001] XFS (sdc): Unmount and run xfs_repair
[  441.584754] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.585546] ffff88007a68a000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.587879] ffff88007a68a010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.590152] ffff88007a68a020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.592425] ffff88007a68a030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.594946] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.596587] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.597286] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.598704] XFS (sdc): Unmount and run xfs_repair
[  441.599508] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.600363] ffff880077d20000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.601419] ffff880077d20010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.602358] ffff880077d20020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.604911] ffff880077d20030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.608051] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.610293] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.613253] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.614895] XFS (sdc): Unmount and run xfs_repair
[  441.615645] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.616508] ffff88007a68a000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.617556] ffff88007a68a010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.618712] ffff88007a68a020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.619757] ffff88007a68a030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.621106] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.623083] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.624361] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.625792] XFS (sdc): Unmount and run xfs_repair
[  441.626630] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.627574] ffff880077d20000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.628607] ffff880077d20010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.630033] ffff880077d20020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.631555] ffff880077d20030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.634249] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.637314] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.640120] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.642120] XFS (sdc): Unmount and run xfs_repair
[  441.643658] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.647122] ffff88007824d000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.648394] ffff88007824d010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.649651] ffff88007824d020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.650729] ffff88007824d030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.651942] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.653885] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.654482] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.655948] XFS (sdc): Unmount and run xfs_repair
[  441.656756] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.658174] ffff880077d20000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.659575] ffff880077d20010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.660997] ffff880077d20020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.662122] ffff880077d20030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.663201] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.664567] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.665219] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.666491] XFS (sdc): Unmount and run xfs_repair
[  441.667216] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.667979] ffff88007824d000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.668937] ffff88007824d010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.669849] ffff88007824d020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.670796] ffff88007824d030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.672177] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.674262] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.674703] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.676846] XFS (sdc): Unmount and run xfs_repair
[  441.677615] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.678430] ffff880077d20000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.679465] ffff880077d20010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.680534] ffff880077d20020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.681819] ffff880077d20030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.683740] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.686034] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.687377] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.688658] XFS (sdc): Unmount and run xfs_repair
[  441.689383] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.690145] ffff8800774b8000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.691123] ffff8800774b8010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.694021] ffff8800774b8020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.695369] ffff8800774b8030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.696960] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.698110] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.699332] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.704991] XFS (sdc): Unmount and run xfs_repair
[  441.706111] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.707137] ffff8800792f5000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.709063] ffff8800792f5010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.711229] ffff8800792f5020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.713089] ffff8800792f5030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.714883] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.716331] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.717552] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.718961] XFS (sdc): Unmount and run xfs_repair
[  441.719685] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.720488] ffff8800774b8000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.721538] ffff8800774b8010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.722620] ffff8800774b8020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.723636] ffff8800774b8030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.725075] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.726412] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.727985] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.729283] XFS (sdc): Unmount and run xfs_repair
[  441.730017] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.730803] ffff8800792f5000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.733350] ffff8800792f5010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.735352] ffff8800792f5020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.738699] ffff8800792f5030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.741912] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.743103] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.744942] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.746362] XFS (sdc): Unmount and run xfs_repair
[  441.747140] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.747946] ffff8800774b8000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.749043] ffff8800774b8010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.749945] ffff8800774b8020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.750880] ffff8800774b8030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.753814] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.755010] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.756699] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.758026] XFS (sdc): Unmount and run xfs_repair
[  441.758832] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.759967] ffff880077fa9000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.761997] ffff880077fa9010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.764023] ffff880077fa9020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.765303] ffff880077fa9030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.766482] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.768371] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.769266] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.771001] XFS (sdc): Unmount and run xfs_repair
[  441.771987] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.773274] ffff880077505000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.774537] ffff880077505010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.775656] ffff880077505020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.776747] ffff880077505030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.777915] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.779028] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.781340] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.783183] XFS (sdc): Unmount and run xfs_repair
[  441.784928] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.785951] ffff880077fa9000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.787262] ffff880077fa9010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.788554] ffff880077fa9020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.790690] ffff880077fa9030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.793056] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.797757] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.799679] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.801074] XFS (sdc): Unmount and run xfs_repair
[  441.801847] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.802710] ffff880077505000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.803952] ffff880077505010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.805521] ffff880077505020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.809025] ffff880077505030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.810501] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.812090] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.813377] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.814728] XFS (sdc): Unmount and run xfs_repair
[  441.815522] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.816633] ffff880077fa9000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.818601] ffff880077fa9010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.819638] ffff880077fa9020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.820626] ffff880077fa9030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.822031] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.830676] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.832154] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.833430] XFS (sdc): Unmount and run xfs_repair
[  441.834158] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.834992] ffff880077505000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.835989] ffff880077505010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.836988] ffff880077505020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.837940] ffff880077505030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.839070] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.840628] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.846349] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.848024] XFS (sdc): Unmount and run xfs_repair
[  441.849726] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.852512] ffff880077fa9000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.854717] ffff880077fa9010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.858143] ffff880077fa9020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.859836] ffff880077fa9030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.861469] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.864421] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.872553] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.874021] XFS (sdc): Unmount and run xfs_repair
[  441.875305] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.876256] ffff880077531000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.877249] ffff880077531010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.878281] ffff880077531020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.879343] ffff880077531030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.880606] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.882317] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.887394] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.888963] XFS (sdc): Unmount and run xfs_repair
[  441.889775] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.891380] ffff880077504000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.893214] ffff880077504010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.894654] ffff880077504020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.896325] ffff880077504030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.897674] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.899138] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.900588] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0xa005d0
[  441.906865] XFS (sdc): Unmount and run xfs_repair
[  441.907676] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.908520] ffff880077d20000: 49 4e 00 00 02 02 00 00 00 00 00 00 00 00 00 00  IN..............
[  441.909525] ffff880077d20010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.910584] ffff880077d20020: 57 85 f0 0a 17 9a 7b 00 57 85 ef f8 1d ae e0 80  W.....{.W.......
[  441.911815] ffff880077d20030: 57 85 f0 0a 17 9a 7b 00 00 00 00 00 00 00 00 00  W.....{.........
[  441.912981] XFS (sdc): metadata I/O error: block 0xa005d0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.914169] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.949207] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  441.950692] XFS (sdc): Unmount and run xfs_repair
[  441.951484] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.953175] ffff880078302000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  441.954804] ffff880078302010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.956248] ffff880078302020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  441.957703] ffff880078302030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  441.959409] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.961489] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.962733] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  441.964028] XFS (sdc): Unmount and run xfs_repair
[  441.964707] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.965483] ffff880077d34000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  441.966433] ffff880077d34010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.967388] ffff880077d34020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  441.968401] ffff880077d34030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  441.971566] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.973652] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.977183] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  441.978537] XFS (sdc): Unmount and run xfs_repair
[  441.979476] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.980593] ffff880078302000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  441.981787] ffff880078302010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.982825] ffff880078302020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  441.984150] ffff880078302030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  441.985562] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  441.988421] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  441.989325] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  441.991076] XFS (sdc): Unmount and run xfs_repair
[  441.992048] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  441.995120] ffff880077d34000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  441.996768] ffff880077d34010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  441.997985] ffff880077d34020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  441.999210] ffff880077d34030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.000379] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.002708] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.003633] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.004900] XFS (sdc): Unmount and run xfs_repair
[  442.005569] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.006336] ffff880077ceb000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.007352] ffff880077ceb010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.008782] ffff880077ceb020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.010144] ffff880077ceb030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.011264] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.013307] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.013750] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.015378] XFS (sdc): Unmount and run xfs_repair
[  442.017941] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.018982] ffff880077e96000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.020163] ffff880077e96010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.021409] ffff880077e96020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.022613] ffff880077e96030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.023769] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.024926] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.025945] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.027321] XFS (sdc): Unmount and run xfs_repair
[  442.028103] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.029053] ffff88007908b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.030614] ffff88007908b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.032605] ffff88007908b020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.034196] ffff88007908b030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.035434] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.036724] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.041552] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.042988] XFS (sdc): Unmount and run xfs_repair
[  442.043843] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.044774] ffff880077746000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.045857] ffff880077746010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.046850] ffff880077746020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.047852] ffff880077746030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.049850] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.050969] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.052547] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.053835] XFS (sdc): Unmount and run xfs_repair
[  442.054535] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.055338] ffff8800782eb000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.056361] ffff8800782eb010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.057334] ffff8800782eb020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.058359] ffff8800782eb030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.060261] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.061415] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.063158] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.065017] XFS (sdc): Unmount and run xfs_repair
[  442.066917] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.068144] ffff8800793c6000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.069462] ffff8800793c6010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.070596] ffff8800793c6020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.071685] ffff8800793c6030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.072779] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.074014] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.078638] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.079984] XFS (sdc): Unmount and run xfs_repair
[  442.080910] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.083060] ffff8800782eb000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.084287] ffff8800782eb010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.085404] ffff8800782eb020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.086477] ffff8800782eb030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.087697] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.089188] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.091621] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.092980] XFS (sdc): Unmount and run xfs_repair
[  442.093720] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.094493] ffff880077fbf000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.095476] ffff880077fbf010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.096487] ffff880077fbf020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.097514] ffff880077fbf030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.098670] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.100275] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.102440] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.103822] XFS (sdc): Unmount and run xfs_repair
[  442.104533] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.105284] ffff8800793c6000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.107211] ffff8800793c6010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.109537] ffff8800793c6020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.111419] ffff8800793c6030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.113962] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.115308] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.116950] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.118335] XFS (sdc): Unmount and run xfs_repair
[  442.119152] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.120130] ffff880077e90000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.121413] ffff880077e90010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.122692] ffff880077e90020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.123856] ffff880077e90030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.124934] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.126522] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.127366] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.128634] XFS (sdc): Unmount and run xfs_repair
[  442.132183] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.134383] ffff88007773b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.135550] ffff88007773b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.136678] ffff88007773b020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.137696] ffff88007773b030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.139975] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.141649] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.145075] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.146749] XFS (sdc): Unmount and run xfs_repair
[  442.147512] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.148317] ffff880077e90000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.151071] ffff880077e90010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.152300] ffff880077e90020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.155020] ffff880077e90030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.157303] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.158742] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.160261] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.161625] XFS (sdc): Unmount and run xfs_repair
[  442.162374] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.163273] ffff880077458000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.164217] ffff880077458010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.165171] ffff880077458020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.166194] ffff880077458030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.167880] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.168943] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.170351] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.172068] XFS (sdc): Unmount and run xfs_repair
[  442.172975] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.173874] ffff88007764d000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.174865] ffff88007764d010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.175949] ffff88007764d020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.176999] ffff88007764d030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.178080] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.179703] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.180689] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.182356] XFS (sdc): Unmount and run xfs_repair
[  442.183246] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.184514] ffff880077458000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.185623] ffff880077458010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.186687] ffff880077458020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.187791] ffff880077458030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.189243] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.190784] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.192515] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.194085] XFS (sdc): Unmount and run xfs_repair
[  442.194919] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.195868] ffff880077698000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.197345] ffff880077698010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.198443] ffff880077698020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.199458] ffff880077698030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.201155] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.202642] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.203297] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.205663] XFS (sdc): Unmount and run xfs_repair
[  442.206457] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.207569] ffff88007764d000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.210683] ffff88007764d010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.212500] ffff88007764d020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.213614] ffff88007764d030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.215383] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.219614] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.221981] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.223489] XFS (sdc): Unmount and run xfs_repair
[  442.224276] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.225515] ffff880077698000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.226572] ffff880077698010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.229961] ffff880077698020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.231251] ffff880077698030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.233519] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.234949] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.237376] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.238803] XFS (sdc): Unmount and run xfs_repair
[  442.239598] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.240660] ffff88007764d000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.242329] ffff88007764d010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.243487] ffff88007764d020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.244546] ffff88007764d030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.245893] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.248734] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.250211] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.251724] XFS (sdc): Unmount and run xfs_repair
[  442.252500] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.253513] ffff880077698000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.254671] ffff880077698010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.255702] ffff880077698020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.256719] ffff880077698030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.258171] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.259647] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.261013] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.262573] XFS (sdc): Unmount and run xfs_repair
[  442.267002] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.268432] ffff880077459000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.270478] ffff880077459010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.271919] ffff880077459020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.273590] ffff880077459030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.275972] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.279856] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.280385] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.281666] XFS (sdc): Unmount and run xfs_repair
[  442.282499] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.283473] ffff880077698000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.285525] ffff880077698010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.287896] ffff880077698020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.288931] ffff880077698030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.290150] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.291928] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.292352] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.295597] XFS (sdc): Unmount and run xfs_repair
[  442.296457] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.297370] ffff880077459000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.298435] ffff880077459010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.299527] ffff880077459020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.300540] ffff880077459030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.304043] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.306501] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.311461] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.312945] XFS (sdc): Unmount and run xfs_repair
[  442.314132] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.315159] ffff8800782ee000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.316651] ffff8800782ee010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.317843] ffff8800782ee020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.318854] ffff8800782ee030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.319963] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.321216] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.322614] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.323939] XFS (sdc): Unmount and run xfs_repair
[  442.324704] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.326461] ffff880077e92000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.327949] ffff880077e92010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.329400] ffff880077e92020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.330567] ffff880077e92030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.331739] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.333370] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.334489] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.335959] XFS (sdc): Unmount and run xfs_repair
[  442.337416] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.338373] ffff880077ffb000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.339517] ffff880077ffb010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.340558] ffff880077ffb020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.341523] ffff880077ffb030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.342722] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.344205] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.345730] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.347078] XFS (sdc): Unmount and run xfs_repair
[  442.347891] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.348768] ffff880078305000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.349781] ffff880078305010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.350751] ffff880078305020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.351728] ffff880078305030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.353035] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.354734] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.356312] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.357661] XFS (sdc): Unmount and run xfs_repair
[  442.358454] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.359322] ffff88007a73b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.360345] ffff88007a73b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.361284] ffff88007a73b020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.362203] ffff88007a73b030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.364214] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.365409] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.366235] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.367717] XFS (sdc): Unmount and run xfs_repair
[  442.370598] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.371801] ffff880078305000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.374126] ffff880078305010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.377929] ffff880078305020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.379227] ffff880078305030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.382315] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.383591] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.385032] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.386337] XFS (sdc): Unmount and run xfs_repair
[  442.387178] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.388288] ffff88007a73b000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.389568] ffff88007a73b010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.390774] ffff88007a73b020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.392804] ffff88007a73b030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.394676] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.396345] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.397601] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.399082] XFS (sdc): Unmount and run xfs_repair
[  442.399832] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.401460] ffff880077f37000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.403535] ffff880077f37010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.404782] ffff880077f37020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.406287] ffff880077f37030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.408129] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.409884] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.411114] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.413055] XFS (sdc): Unmount and run xfs_repair
[  442.414572] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.415641] ffff880077458000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.416740] ffff880077458010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.417886] ffff880077458020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.419004] ffff880077458030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.421488] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.422791] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.424419] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.426033] XFS (sdc): Unmount and run xfs_repair
[  442.427079] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.427966] ffff880077f37000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.428990] ffff880077f37010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.429977] ffff880077f37020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.430967] ffff880077f37030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.432769] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.434391] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.435171] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.436496] XFS (sdc): Unmount and run xfs_repair
[  442.437189] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.437945] ffff880077458000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.438939] ffff880077458010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.439903] ffff880077458020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.440853] ffff880077458030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.443340] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.444714] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.446329] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.449409] XFS (sdc): Unmount and run xfs_repair
[  442.450286] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.452000] ffff880077f37000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.453190] ffff880077f37010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.454977] ffff880077f37020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.456235] ffff880077f37030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.458886] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.460363] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.460992] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.462477] XFS (sdc): Unmount and run xfs_repair
[  442.463456] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.464344] ffff880077458000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.465429] ffff880077458010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.466460] ffff880077458020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.467472] ffff880077458030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.468561] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.470131] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.471110] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.472374] XFS (sdc): Unmount and run xfs_repair
[  442.473161] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.474279] ffff88007804a000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.475415] ffff88007804a010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.476462] ffff88007804a020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.478410] ffff88007804a030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.481155] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.482741] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.483990] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.485295] XFS (sdc): Unmount and run xfs_repair
[  442.487606] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.488653] ffff880077e93000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.489819] ffff880077e93010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.490967] ffff880077e93020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.492085] ffff880077e93030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.493343] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.496482] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.497500] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.498811] XFS (sdc): Unmount and run xfs_repair
[  442.499857] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.501406] ffff880077fcd000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.502694] ffff880077fcd010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.503784] ffff880077fcd020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.504955] ffff880077fcd030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.506758] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.508764] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.510821] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.512509] XFS (sdc): Unmount and run xfs_repair
[  442.514337] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.515600] ffff8800782ed000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.516803] ffff8800782ed010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.517915] ffff8800782ed020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.518834] ffff8800782ed030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.520899] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.522487] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.523738] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.525253] XFS (sdc): Unmount and run xfs_repair
[  442.526023] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.526904] ffff880077fcd000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.528127] ffff880077fcd010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.529266] ffff880077fcd020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.530404] ffff880077fcd030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.531691] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.532852] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.535274] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.538289] XFS (sdc): Unmount and run xfs_repair
[  442.540936] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.542107] ffff880077fcd000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.543210] ffff880077fcd010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.544295] ffff880077fcd020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.547696] ffff880077fcd030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.549990] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.551557] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.552904] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.558719] XFS (sdc): Unmount and run xfs_repair
[  442.559473] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.560715] ffff88007817e000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.561784] ffff88007817e010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.562725] ffff88007817e020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.563954] ffff88007817e030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.565418] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.567063] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.570044] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.571590] XFS (sdc): Unmount and run xfs_repair
[  442.572420] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.573299] ffff88007776f000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.574357] ffff88007776f010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.575511] ffff88007776f020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.576987] ffff88007776f030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.579244] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.580550] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.581969] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.583237] XFS (sdc): Unmount and run xfs_repair
[  442.583968] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.584982] ffff88007817e000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.587926] ffff88007817e010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.589150] ffff88007817e020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.590580] ffff88007817e030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.592070] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.593576] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.595678] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.596969] XFS (sdc): Unmount and run xfs_repair
[  442.597618] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.598817] ffff8800777ee000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.600231] ffff8800777ee010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.601336] ffff8800777ee020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.602321] ffff8800777ee030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.603472] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.604929] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  442.605600] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x1e00a00
[  442.606961] XFS (sdc): Unmount and run xfs_repair
[  442.607660] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  442.608542] ffff8800777ef000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  442.609569] ffff8800777ef010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  442.610755] ffff8800777ef020: 57 85 ef fc 15 0a 5a 40 57 85 ef fc 15 0a 5a 40  W.....Z@W.....Z@
[  442.611950] ffff8800777ef030: 57 85 ef fc 15 0a 5a 40 00 00 00 00 00 00 00 06  W.....Z@........
[  442.613891] XFS (sdc): metadata I/O error: block 0x1e00a00 ("xfs_trans_read_buf_map") error 117 numblks 16
[  442.615409] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  443.524136] XFS (sdc): Metadata corruption detected at xfs_inode_buf_verify+0x6f/0xd0 [xfs], xfs_inode block 0x14051a0
[  443.526083] XFS (sdc): Unmount and run xfs_repair
[  443.527109] XFS (sdc): First 64 bytes of corrupted metadata buffer:
[  443.528340] ffff8800775c7000: 49 4e 41 ed 02 01 00 00 00 00 00 00 00 00 00 00  INA.............
[  443.529883] ffff8800775c7010: 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 01  ................
[  443.531419] ffff8800775c7020: 57 85 ef ea 0f 32 fd c0 57 85 ef ea 0f 32 fd c0  W....2..W....2..
[  443.532569] ffff8800775c7030: 57 85 ef ea 0f 32 fd c0 00 00 00 00 00 00 00 06  W....2..........
[  443.533588] XFS (sdc): metadata I/O error: block 0x14051a0 ("xfs_trans_read_buf_map") error 117 numblks 16
[  443.534990] XFS (sdc): xfs_do_force_shutdown(0x1) called from line 315 of file fs/xfs/xfs_trans_buf.c.  Return address = 0xffffffffa025e1b9
[  443.585494] XFS (sdc): I/O Error Detected. Shutting down filesystem
[  443.586398] XFS (sdc): Please umount the filesystem and rectify the problem(s)
[  443.587285] XFS (sdc): xfs_imap_to_bp: xfs_trans_read_buf() returned error -117.
[  443.651592] XFS (sdc): xfs_log_force: error -5 returned.
[  443.673050] XFS (sdc): xfs_log_force: error -5 returned.
[  443.676852] XFS (sdc): Unmounting Filesystem
[  443.676859] XFS (sdc): xfs_log_force: error -5 returned.
[  443.681074] XFS (sdc): xfs_log_force: error -5 returned.
[  444.031175] XFS (sdc): Mounting V4 Filesystem
[  444.979543] XFS (sdc): Starting recovery (logdev: internal)
[  445.578254] XFS (sdc): Ending recovery (logdev: internal)
[  445.591130] XFS (sdc): Unmounting Filesystem
[  446.674420] XFS (sdc): Mounting V4 Filesystem
[  446.684134] XFS (sdc): Ending clean mount
[  450.764788] XFS (sdc): Unmounting Filesystem

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] xfs/083: disable dmesg check
  2016-07-13  4:25 ` Eryu Guan
  2016-07-13  5:11   ` Darrick J. Wong
@ 2016-07-19  2:45   ` Darrick J. Wong
  1 sibling, 0 replies; 10+ messages in thread
From: Darrick J. Wong @ 2016-07-19  2:45 UTC (permalink / raw)
  To: Eryu Guan; +Cc: Xiao Yang, fstests

On Wed, Jul 13, 2016 at 12:25:55PM +0800, Eryu Guan wrote:
> On Tue, Jul 12, 2016 at 01:41:44PM +0800, Xiao Yang wrote:
> > xfs/083 will corrupt the fs intentionally, there will be WARNINGs
> > in dmesg as expected, so here disable dmesg check.
> > 
> > Signed-off-by: Xiao Yang <yangx.jy@cn.fujitsu.com>
> > ---
> >  tests/xfs/083 | 4 ++++
> >  1 file changed, 4 insertions(+)
> > 
> > diff --git a/tests/xfs/083 b/tests/xfs/083
> > index d897754..040f3b6 100755
> > --- a/tests/xfs/083
> > +++ b/tests/xfs/083
> > @@ -102,6 +102,10 @@ scratch_repair() {
> >  }
> >  
> >  rm -f $seqres.full
> > +# This test will corrupt fs intentionally, so there will be WARNINGs
> > +# in dmesg as expected
> > +_disable_dmesg_check
> > +
> 
> This looks fine to me, but I'd like Darrick to review it as well :)

I'm convinced, so
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>

--D


> 
> Thanks,
> Eryu
> 
> >  echo "See interesting results in $seqres.full" | sed -e "s,$RESULT_DIR,RESULT_DIR,g"
> >  SRCDIR=`pwd`
> >  test -z "${FUZZ_ARGS}" && FUZZ_ARGS="-3 -n 32"
> > -- 
> > 1.8.3.1
> > 
> > 
> > 
> > --
> > To unsubscribe from this list: send the line "unsubscribe fstests" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] xfs/083: disable dmesg check
       [not found]   ` <56CED40B.2020304@cn.fujitsu.com>
@ 2016-03-22  1:49     ` Xiaoguang Wang
  0 siblings, 0 replies; 10+ messages in thread
From: Xiaoguang Wang @ 2016-03-22  1:49 UTC (permalink / raw)
  To: Dave Chinner; +Cc: Guangwen Feng, fstests

hello,

On 02/25/2016 06:14 PM, Xiaoguang Wang wrote:
> Hello,
> 
> On 01/31/2016 11:05 AM, Darrick J. Wong wrote:
>> On Fri, Jan 29, 2016 at 07:54:04PM +0800, Guangwen Feng wrote:
>>> This test fuzzes the metadata and accesses the corrupted fs later,
>>> which always produces error info in dmesg and causes test fail,
>>> so fix this.
>>>
>>> Signed-off-by: Guangwen Feng <fenggw-fnst@cn.fujitsu.com>
>>> ---
>>>  tests/xfs/083 | 5 +++++
>>>  1 file changed, 5 insertions(+)
>>>
>>> diff --git a/tests/xfs/083 b/tests/xfs/083
>>> index 8e14e88..558b964 100755
>>> --- a/tests/xfs/083
>>> +++ b/tests/xfs/083
>>> @@ -102,6 +102,11 @@ scratch_repair() {
>>>  }
>>>  
>>>  rm -f $seqres.full
>>> +
>>> +# We will access the corrupted fs later, which always produces error
>>> +# info in dmesg. We do not want the test to fail because of this.
>>> +_disable_dmesg_check
>>
>> What kind of message did you hit?  I'd thought that the checksum errors
>> didn't include any of the magic text that tripped _check_dmesg.
> We run this test case in kernel v4.5-rc5-206-g6dc390a and get this dmesg, please
> check the attachment. The "Internal error" is in this dmesg, so test case fails.
Could you please check the previous attachment and confirm if it's expected output, thanks.

Regards,
Xiaoguang Wang

> 
> Regards,
> Xiaoguang Wang
>>
>> --D
>>
>>> +
>>>  echo "See interesting results in $seqres.full" | sed -e "s,$RESULT_DIR,RESULT_DIR,g"
>>>  SRCDIR=`pwd`
>>>  test -z "${FUZZ_ARGS}" && FUZZ_ARGS="-3 -n 32"
>>> -- 
>>> 1.8.4.2
>>>
>>>
>>>
>>> --
>>> To unsubscribe from this list: send the line "unsubscribe fstests" in
>>> the body of a message to majordomo@vger.kernel.org
>>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>> --
>> To unsubscribe from this list: send the line "unsubscribe fstests" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>>
>>
>>
> 




^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] xfs/083: disable dmesg check
  2016-01-29 11:54 Guangwen Feng
@ 2016-01-31  3:05 ` Darrick J. Wong
       [not found]   ` <56CED40B.2020304@cn.fujitsu.com>
  0 siblings, 1 reply; 10+ messages in thread
From: Darrick J. Wong @ 2016-01-31  3:05 UTC (permalink / raw)
  To: Guangwen Feng; +Cc: fstests

On Fri, Jan 29, 2016 at 07:54:04PM +0800, Guangwen Feng wrote:
> This test fuzzes the metadata and accesses the corrupted fs later,
> which always produces error info in dmesg and causes test fail,
> so fix this.
> 
> Signed-off-by: Guangwen Feng <fenggw-fnst@cn.fujitsu.com>
> ---
>  tests/xfs/083 | 5 +++++
>  1 file changed, 5 insertions(+)
> 
> diff --git a/tests/xfs/083 b/tests/xfs/083
> index 8e14e88..558b964 100755
> --- a/tests/xfs/083
> +++ b/tests/xfs/083
> @@ -102,6 +102,11 @@ scratch_repair() {
>  }
>  
>  rm -f $seqres.full
> +
> +# We will access the corrupted fs later, which always produces error
> +# info in dmesg. We do not want the test to fail because of this.
> +_disable_dmesg_check

What kind of message did you hit?  I'd thought that the checksum errors
didn't include any of the magic text that tripped _check_dmesg.

--D

> +
>  echo "See interesting results in $seqres.full" | sed -e "s,$RESULT_DIR,RESULT_DIR,g"
>  SRCDIR=`pwd`
>  test -z "${FUZZ_ARGS}" && FUZZ_ARGS="-3 -n 32"
> -- 
> 1.8.4.2
> 
> 
> 
> --
> To unsubscribe from this list: send the line "unsubscribe fstests" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [PATCH] xfs/083: disable dmesg check
@ 2016-01-29 11:54 Guangwen Feng
  2016-01-31  3:05 ` Darrick J. Wong
  0 siblings, 1 reply; 10+ messages in thread
From: Guangwen Feng @ 2016-01-29 11:54 UTC (permalink / raw)
  To: fstests; +Cc: Guangwen Feng

This test fuzzes the metadata and accesses the corrupted fs later,
which always produces error info in dmesg and causes test fail,
so fix this.

Signed-off-by: Guangwen Feng <fenggw-fnst@cn.fujitsu.com>
---
 tests/xfs/083 | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/tests/xfs/083 b/tests/xfs/083
index 8e14e88..558b964 100755
--- a/tests/xfs/083
+++ b/tests/xfs/083
@@ -102,6 +102,11 @@ scratch_repair() {
 }
 
 rm -f $seqres.full
+
+# We will access the corrupted fs later, which always produces error
+# info in dmesg. We do not want the test to fail because of this.
+_disable_dmesg_check
+
 echo "See interesting results in $seqres.full" | sed -e "s,$RESULT_DIR,RESULT_DIR,g"
 SRCDIR=`pwd`
 test -z "${FUZZ_ARGS}" && FUZZ_ARGS="-3 -n 32"
-- 
1.8.4.2




^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2016-07-19  2:45 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-07-12  5:41 [PATCH] xfs/083: disable dmesg check Xiao Yang
2016-07-13  4:25 ` Eryu Guan
2016-07-13  5:11   ` Darrick J. Wong
2016-07-13  8:02     ` Xiao Yang
2016-07-14  0:57     ` Xiao Yang
2016-07-14  7:16     ` Guangwen Feng
2016-07-19  2:45   ` Darrick J. Wong
  -- strict thread matches above, loose matches on Subject: below --
2016-01-29 11:54 Guangwen Feng
2016-01-31  3:05 ` Darrick J. Wong
     [not found]   ` <56CED40B.2020304@cn.fujitsu.com>
2016-03-22  1:49     ` Xiaoguang Wang

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.