Opened 15 years ago

Closed 15 years ago

#2318 closed task (fixed)

ext3 reliability requirements are not met

Reported by: alexander@… Owned by: bdubbs@…
Priority: normal Milestone: 6.5
Component: Book Version: SVN
Severity: normal Keywords:
Cc:

Description

Pavel Machek published a patch that documents conditions under which the ext3 filesystem is reliable against power failures. These conditions aren't met by LFS systems.

Namely, the failed requirement is: "either write caching is disabled, or hw can do barriers and they are enabled". To disable write caching, one should do "hdparm -W0" on the device before remounting the filesystem read-write. To enable barriers (if the hardware supports them), use "barrier=1" mount option.

Change History (7)

comment:1 by alexander@…, 15 years ago

Forgot the URL of the discussion: http://lkml.org/lkml/2009/1/3/123

comment:2 by alexander@…, 15 years ago

OTOH, Alan Cox said about distros in http://lkml.org/lkml/2009/1/4/70:

Generally they avoid setting -W0 because it ruins performance and can be very bad for disk lifetime.

So the bug is probably only about the missing "barrier=1" option.

comment:3 by Matthew Burgess, 15 years ago

Milestone: 7.0

Alexander, I took a quick look at that thread, and the documentation states:

(Note that barriers are disabled by default, use "barrier=1" mount option after making sure hw can support them).

How does one determine if their hardware supports barriers or not? Just wondering what option we make the default, and therefore how best to document the alternative?

comment:4 by alexander@…, 15 years ago

For anything dm-based (LVM, LUKS, ...): barriers are not supported. For SATA (i.e., /dev/sda2): if "hdparm -I /dev/sda | grep NCQ" returns non-empty output, then the hardware supports barriers. For other hardware types, I don't know.

comment:5 by bdubbs@…, 15 years ago

Milestone: 7.06.5

comment:6 by bdubbs@…, 15 years ago

Owner: changed from lfs-book@… to bdubbs@…
Status: newassigned

comment:7 by bdubbs@…, 15 years ago

Resolution: fixed
Status: assignedclosed

Added an explanation for the barrier option in the fstab page. Fixed at revision 8881.

Note: See TracTickets for help on using tickets.