linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: David Chinner <dgc@sgi.com>
To: Christoph Lameter <clameter@sgi.com>
Cc: David Chinner <dgc@sgi.com>,
	akpm@osdl.org, Paul Menage <menage@google.com>,
	Peter Zijlstra <a.p.zijlstra@chello.nl>,
	Nick Piggin <nickpiggin@yahoo.com.au>,
	linux-mm@kvack.org, Paul Jackson <pj@sgi.com>,
	Andi Kleen <ak@suse.de>
Subject: Re: [PATCH 1/5] Add a map to to track dirty pages per node
Date: Mon, 29 Jan 2007 08:38:13 +1100	[thread overview]
Message-ID: <20070128213813.GH33919298@melbourne.sgi.com> (raw)
In-Reply-To: <Pine.LNX.4.64.0701221122560.25121@schroedinger.engr.sgi.com>

On Mon, Jan 22, 2007 at 11:30:50AM -0800, Christoph Lameter wrote:
> On Mon, 22 Jan 2007, David Chinner wrote:
> > >  	if (S_ISCHR(inode->i_mode) && inode->i_cdev)
> > >  		cd_forget(inode);
> > > +	cpuset_clear_dirty_nodes(inode->i_mapping);
> > >  	inode->i_state = I_CLEAR;
> > >  }
> > 
> > This is rather late to be clearing this, right? At the start of clear_inode()
> > we:
> > 
> > 	BUG_ON(inode->i_data.nrpages);
> > 
> > Which tends to implicate that we should have already freed the dirty
> > map as there should be no pages (dirty or otherwise) attached to the
> > inode at this point. i.e. we should BUG here if we've still got
> > a dirty mask indicating dirty nodes on the inode because it should
> > be clear at this point.
> 
> The dirty map is needed even after all the dirty pages have become 
> writeback/unstable pages. The dirty_map reflects the nodes that the inode 
> has or had dirty pages on. If we would want an accurate dirty map then we 
> would have to maintain an array of per node counters of pages. Too 
> expensive.

I think you missed my point - when we call into this function, the
inode _must_ have already had all it's data written back. That is,
by definition the inode mapping is clean if inode->i_data.nrpages ==
0. Hence if we have any dirty nodes, then we have a mismatch between
the dirty node mask and the inode dirty state.  That is BUG-worthy,
IMO.

Cheers,

Dave.
> 
> > 
> > > ===================================================================
> > > --- linux-2.6.20-rc5.orig/mm/page-writeback.c	2007-01-18 13:48:29.956271059 -0600
> > > +++ linux-2.6.20-rc5/mm/page-writeback.c	2007-01-19 19:45:08.755650133 -0600
> > > @@ -33,6 +33,7 @@
> > >  #include <linux/syscalls.h>
> > >  #include <linux/buffer_head.h>
> > >  #include <linux/pagevec.h>
> > > +#include <linux/cpuset.h>
> > >  
> > >  /*
> > >   * The maximum number of pages to writeout in a single bdflush/kupdate
> > > @@ -776,6 +777,7 @@ int __set_page_dirty_nobuffers(struct pa
> > >  			radix_tree_tag_set(&mapping->page_tree,
> > >  				page_index(page), PAGECACHE_TAG_DIRTY);
> > >  		}
> > > +		cpuset_update_dirty_nodes(mapping, page);
> > 
> > Shouldn't this be done in the same context of setting the
> > PAGECACHE_TAG_DIRTY? i.e. we set the node dirty at the same time
> > we set the page dirty tag.
> 
> We could move that statement up one line without trouble.
> 
> > > +			if (radix_tree_tag_clear(&mapping->page_tree,
> > >  						page_index(page),
> > > -						PAGECACHE_TAG_DIRTY);
> > > +						PAGECACHE_TAG_DIRTY))
> > > +				cpuset_clear_dirty_nodes(mapping);
> > > +		}
> > 
> > Because you are clearing the dirty node state at the same time we clear
> > the PAGECACHE_TAG_DIRTY.
> 
> Yuck this chunk should not be here. dirty node state should only be 
> cleared when the inode is cleared and radix_tree_tag_clear does not 
> deliver a boolean in the context of this patchset.
> 
> > > +#if MAX_NUMNODES <= BITS_PER_LONG
> > > +#define cpuset_update_dirty_nodes(__mapping, __node) \
> > > +	if (!node_isset((__node, (__mapping)->dirty_nodes) \
> > > +		node_set((__node), (__mapping)->dirty_inodes)
> > > +
> > > +#define cpuset_clear_dirty_nodes(__mapping) \
> > > +		(__mapping)->dirty_nodes = NODE_MASK_NONE
> > 
> > Hmmm - the above is going to lose dirty state - you're calling
> > cpuset_clear_dirty_nodes() in the case that a page is now under
> > writeback. cpuset_clear_dirty_nodes() clears the _entire_ dirty node mask
> > but all you want to do above is remove the dirty state from the
> > node mask if that is the only page on the node that is dirty.
> > 
> > So we set the dirty node mask on a page by page basis, but we shoot
> > it down as soon as _any_ page transistions from dirty to writeback.
> > Hence if you've got dirty pages on other nodes (or other dirty pages
> > on this node) you have now lost track of them because cleaning a
> > single page clears all dirty node state on the inode. This seems
> > badly broken to me.
> > 
> > Because you are not tracking pages-per-node dirty state, the only way
> > you can really clear the dirty node state is when the inode is
> > completely clean. e.g. in __sync_single_inode where (inode->i_state
> > & I_DIRTY) == 0. Otherwise I can't see how this would work at all....
> 
> Correct. Remove the chunk above and everything is fine. I am going to post 
> an updated version. Sigh.

-- 
Dave Chinner
Principal Engineer
SGI Australian Software Group

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

  reply	other threads:[~2007-01-28 21:38 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-01-20  3:10 [PATCH 0/5] Cpuset aware writeback V1 Christoph Lameter
2007-01-20  3:10 ` [PATCH 1/5] Add a map to to track dirty pages per node Christoph Lameter
2007-01-20  5:15   ` Paul Jackson
2007-01-22 17:41     ` Christoph Lameter
2007-01-22  1:31   ` David Chinner
2007-01-22 19:30     ` Christoph Lameter
2007-01-28 21:38       ` David Chinner [this message]
2007-01-29 16:50         ` Christoph Lameter
2007-01-20  3:10 ` [PATCH 2/5] Add a nodemask to pdflush functions Christoph Lameter
2007-01-20  3:10 ` [PATCH 3/5] Per cpuset dirty ratio calculation Christoph Lameter
2007-01-20  3:10 ` [PATCH 4/5] Cpuset aware writeback during reclaim Christoph Lameter
2007-01-20  3:10 ` [PATCH 5/5] Throttle vm writeout per cpuset Christoph Lameter
2007-01-23 18:52 [PATCH 0/5] Cpuset aware writeback V2 Christoph Lameter
2007-01-23 18:52 ` [PATCH 1/5] Add a map to to track dirty pages per node Christoph Lameter
2007-01-25  3:04   ` Ethan Solomita
2007-01-25  5:52     ` Christoph Lameter

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20070128213813.GH33919298@melbourne.sgi.com \
    --to=dgc@sgi.com \
    --cc=a.p.zijlstra@chello.nl \
    --cc=ak@suse.de \
    --cc=akpm@osdl.org \
    --cc=clameter@sgi.com \
    --cc=linux-mm@kvack.org \
    --cc=menage@google.com \
    --cc=nickpiggin@yahoo.com.au \
    --cc=pj@sgi.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox