lkml.org 
[lkml]   [2010]   [Jun]   [4]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCHv4 17/17] writeback: lessen sync_supers wakeup count
On Mon, May 31, 2010 at 05:07:00PM +0300, Artem Bityutskiy wrote:
> you requested me to review s_dirt usage, well, I'm trying now. One thing
> I do not understand is s_dirt serialization, which seems to be just
> absent in some FSes. I checked affs and ext2. E.g., affs does:
>
> affs_alloc_block()
> {
> mark_buffer_dirty(bh);
> sb->s_dirt = 1;
> }
>
> vs
>
> affs_write_super()
> {
> affs_commit_super();
> /* YYY: what if sb is marked as dirty right here? */
> sb->s_dirt = 0;
> }
>
> vs
>
> /* This wakes up periodically */
> sync_super()
> {
> if (sb->s_root && sb->s_dirt)
> sb->s_op->write_super(sb);
> }
>
> ext2 seems to be doing something similar. It seems to me that FSes
> should serialize s_dirt changes somehow, but they don't? Why this is not
> a problem?

I suspect that most of those used to rely on lock_super() way back.
In case of ext2_sync_super() we probably want just to move ->s_dirt = 0
into the very beginning; no serialization is really needed beyond (_maybe_)
some barriers. No idea about affs, needs to be checked.


\
 
 \ /
  Last update: 2010-06-04 06:29    [W:0.070 / U:1.684 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site