lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Wed, 15 Jul 2009 18:35:45 +0300
From:	Adrian Hunter <adrian.hunter@...ia.com>
To:	Andreas Dilger <adilger@....com>
CC:	"akpm@...ux-foundation.org" <akpm@...ux-foundation.org>,
	"linux-ext4@...r.kernel.org" <linux-ext4@...r.kernel.org>,
	"Bityutskiy Artem (Nokia-D/Helsinki)" <Artem.Bityutskiy@...ia.com>
Subject: Re: [PATCH 1/2] HACK: ext3: mount fast even when recovering

Andreas Dilger wrote:
> On Jul 14, 2009  17:03 +0300, Adrian Hunter wrote:
>> Speed up ext3 recovery mount time by not sync'ing the
>> block device.  Instead place all dirty buffers into the
>> I/O queue and add a write barrier.  This ensures that
>> no subsequent write will reach the disk before all the
>> recovery writes, but that we do not have to wait for the
>> I/O.
>>
>> +	/*
>> +	 * Set an option to indicate that we want to mount fast even
>> +	 * when recovering.  That is achieved by not sync'ing the
>> +	 * block device, but instead placing all dirty buffers into
>> +	 * the I/O queue and adding a write barrier.
>> +	 */
>> +	set_opt(sbi->s_mount_opt, FAST);
> 
> Is there ever a time where one wouldn't want to do a fast mount?
> Surely if this speeds things up and is safe, it makes sense to do
> it always.  If it isn't safe to do always, then would you EVER want
> to do it if you risk corrupting your filesystem?

This is the first hack.  It is safe, it is just not very useful.

The file system mounts fast, but will wait on the very first
operation.

So there are three reasons for it to be optional:
	1. It is not generally useful
	2. The risk it is flawed can be avoided
	3. The slower first operation might upset some users

The second hack allows read operations to proceed, but
may not be safe depending on what other file systems
may be on other partitions of the same block device.


--
To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ