Bug 114011
Summary: | XFS crash and destroyed metadata during heavy disk operations | ||
---|---|---|---|
Product: | File System | Reporter: | René Krell (renda.krell) |
Component: | XFS | Assignee: | XFS Guru (xfs-masters) |
Status: | NEW --- | ||
Severity: | high | CC: | szg00000 |
Priority: | P1 | ||
Hardware: | All | ||
OS: | Linux | ||
Kernel Version: | 4.4.3 | Subsystem: | |
Regression: | No | Bisected commit-id: | |
Attachments: | /var/log/messages - full log |
Description
René Krell
2016-03-08 11:56:07 UTC
Hardware: - HP ZBook G2 - additional disk in the DVD slot - WDC WD7500BPKX-00HPJT0 No other I/O error noticed in /var/log/messages before this, just this one: 2016-03-04T10:08:54.401666+01:00 rkrell kernel: [ 4.147242] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300) 2016-03-04T10:08:54.401667+01:00 rkrell kernel: [ 4.152053] ata2.00: ATA-8: WDC WD7500BPKX-00HPJT0, 01.01A01, max UDMA/133 2016-03-04T10:08:54.401668+01:00 rkrell kernel: [ 4.152057] ata2.00: 1465149168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA 2016-03-04T10:08:54.401668+01:00 rkrell kernel: [ 4.157063] ata2.00: configured for UDMA/133 2016-03-04T10:08:54.401668+01:00 rkrell kernel: [ 4.157384] scsi 1:0:0:0: Direct-Access ATA WDC WD7500BPKX-0 1A01 PQ: 0 ANSI: 5 2016-03-04T10:08:54.401669+01:00 rkrell kernel: [ 4.157799] sd 1:0:0:0: [sdb] 1465149168 512-byte logical blocks: (750 GB/699 GiB) 2016-03-04T10:08:54.401669+01:00 rkrell kernel: [ 4.157803] sd 1:0:0:0: [sdb] 4096-byte physical blocks 2016-03-04T10:08:54.401670+01:00 rkrell kernel: [ 4.158070] sd 1:0:0:0: [sdb] Write Protect is off 2016-03-04T10:08:54.401672+01:00 rkrell kernel: [ 4.158073] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00 2016-03-04T10:08:54.401672+01:00 rkrell kernel: [ 4.158195] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA 2016-03-04T10:08:54.401672+01:00 rkrell kernel: [ 4.169389] sdb: sdb1 sdb2 2016-03-04T10:08:54.401673+01:00 rkrell kernel: [ 4.170208] sd 1:0:0:0: [sdb] Attached SCSI disk Created attachment 208211 [details]
/var/log/messages - full log
I'm not a kernel expert, but I tried to find a relation and I suspect this commit to be related: https://git.kernel.org/cgit/linux/kernel/git/stable/linux-stable.git/commit/?id=7530e6fdd9f207a6ebcf669490656def4f7cf73e The committer added: xfs_buf_ioerror(bp, -EIO); and in my trace there is: XFS (sdb2): xfs_log_force: error -5 returned. I assume EIO is still defined as: #define EIO 5 /* I/O error */ |