Re: ReiserFS / 2.4.6 / Data Corruption

From: Chris Mason (mason@suse.com)
Date: Mon Jul 30 2001 - 11:04:08 EST


On Tuesday, July 31, 2001 01:47:25 AM +1000 Andrew Morton <akpm@zip.com.au>
wrote:

> Chris Mason wrote:
>>
>> On Saturday, July 28, 2001 03:28:05 AM +1000 Andrew Morton
>> <akpm@zip.com.au> wrote:
>>
>> [ patch to trigger data writes before commit in reiserfs ]
>>
>> >
>> > There's no disruption to disk format - it just simulates
>> > the user typing `sync' at the right time. I think the
>> > concept is sound, and I'm sure Chris can find a more efficient
>> > way...
>>
>> Well, its gets points for simplicity ;-)
>
> Well, I tried system("/bin/sync"); but that didn't link.
>
>> What I think we need is for commit_write to put new buffers a per super
>> list of new buffers, and then the journal code can flush that list on
>> commit.
>
> whee. Now there's an idea - If the fs keeps track of all its inodes
> then you can traverse those and flush out the i_dirty_buffers ring
> on each one.

It won't work as well in a generic sense, but I was planning on just using
the b_inode_buffers. Instead of going onto the inode's dirty buffer list,
they go onto this special list instead (the reiserfs journal already has a
dummy inode used for this).

The advantage is that nothing extra is needed on the buffer head, but the
disadvantage is the buffer doesn't go on the inode's list. Somebody needs
to flush the new list on fsync and such. It works for reiserfs, but not in
general.

I think you're right about being able to clear BH_New once get_block tests
it. Unless someone comes up with a reason against, I'll test it out. I'm
guessing that we are wasting time rerunning unmap_underlying_metadata on
buffers marked BH_New.

-chris

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Tue Jul 31 2001 - 21:00:44 EST