linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Andrew Morton <akpm@linux-foundation.org>
To: Christoph Lameter <clameter@sgi.com>
Cc: linux-mm@kvack.org
Subject: Re: [patch 13/14] dentries: Extract common code to remove dentry from lru
Date: Mon, 22 Oct 2007 14:29:39 -0700	[thread overview]
Message-ID: <20071022142939.1b815680.akpm@linux-foundation.org> (raw)
In-Reply-To: <20070925233008.523093726@sgi.com>

On Tue, 25 Sep 2007 16:25:56 -0700
Christoph Lameter <clameter@sgi.com> wrote:

> Extract the common code to remove a dentry from the lru into a new function
> dentry_lru_remove().
> 
> Two call sites used list_del() instead of list_del_init(). AFAIK the
> performance of both is the same. dentry_lru_remove() does a list_del_init().

list_del() will dirty two cachelines, but list_del_init() needs to dirty a
third, by writing to the to-be-removed list_head().

> As a result dentry->d_lru is now always empty when a dentry is freed.
> 
> Signed-off-by: Christoph Lameter <clameter@sgi.com>
> ---
>  fs/dcache.c |   42 ++++++++++++++----------------------------
>  1 files changed, 14 insertions(+), 28 deletions(-)
> 
> Index: linux-2.6.23-rc8-mm1/fs/dcache.c
> ===================================================================
> --- linux-2.6.23-rc8-mm1.orig/fs/dcache.c	2007-09-25 14:53:57.000000000 -0700
> +++ linux-2.6.23-rc8-mm1/fs/dcache.c	2007-09-25 14:57:09.000000000 -0700
> @@ -95,6 +95,14 @@ static void d_free(struct dentry *dentry
>  		call_rcu(&dentry->d_u.d_rcu, d_callback);
>  }
>  
> +static void dentry_lru_remove(struct dentry *dentry)
> +{
> +	if (!list_empty(&dentry->d_lru)) {
> +		list_del_init(&dentry->d_lru);
> +		dentry_stat.nr_unused--;
> +	}
> +}

So can we switch this to list_del()?

>  /*
>   * Release the dentry's inode, using the filesystem
>   * d_iput() operation if defined.
> @@ -212,13 +220,7 @@ repeat:
>  unhash_it:
>  	__d_drop(dentry);
>  kill_it:
> -	/* If dentry was on d_lru list
> -	 * delete it from there
> -	 */
> -	if (!list_empty(&dentry->d_lru)) {
> -		list_del(&dentry->d_lru);
> -		dentry_stat.nr_unused--;
> -	}
> +	dentry_lru_remove(dentry);
>  	dentry = d_kill(dentry);
>  	if (dentry)
>  		goto repeat;
> @@ -286,10 +288,7 @@ int d_invalidate(struct dentry * dentry)
>  static inline struct dentry * __dget_locked(struct dentry *dentry)
>  {
>  	atomic_inc(&dentry->d_count);
> -	if (!list_empty(&dentry->d_lru)) {
> -		dentry_stat.nr_unused--;
> -		list_del_init(&dentry->d_lru);
> -	}

No, we can't.

> +	dentry_lru_remove(dentry);
>  	return dentry;
>  }
>  
> @@ -405,10 +404,7 @@ static void prune_one_dentry(struct dent
>  
>  		if (dentry->d_op && dentry->d_op->d_delete)
>  			dentry->d_op->d_delete(dentry);
> -		if (!list_empty(&dentry->d_lru)) {
> -			list_del(&dentry->d_lru);
> -			dentry_stat.nr_unused--;
> -		}
> +		dentry_lru_remove(dentry);
>  		__d_drop(dentry);
>  		dentry = d_kill(dentry);
>  		spin_lock(&dcache_lock);
> @@ -597,10 +593,7 @@ static void shrink_dcache_for_umount_sub
>  
>  	/* detach this root from the system */
>  	spin_lock(&dcache_lock);
> -	if (!list_empty(&dentry->d_lru)) {
> -		dentry_stat.nr_unused--;
> -		list_del_init(&dentry->d_lru);
> -	}
> +	dentry_lru_remove(dentry);
>  	__d_drop(dentry);
>  	spin_unlock(&dcache_lock);
>  
> @@ -614,11 +607,7 @@ static void shrink_dcache_for_umount_sub
>  			spin_lock(&dcache_lock);
>  			list_for_each_entry(loop, &dentry->d_subdirs,
>  					    d_u.d_child) {
> -				if (!list_empty(&loop->d_lru)) {
> -					dentry_stat.nr_unused--;
> -					list_del_init(&loop->d_lru);
> -				}
> -
> +				dentry_lru_remove(dentry);
>  				__d_drop(loop);
>  				cond_resched_lock(&dcache_lock);
>  			}
> @@ -800,10 +789,7 @@ resume:
>  		struct dentry *dentry = list_entry(tmp, struct dentry, d_u.d_child);
>  		next = tmp->next;
>  
> -		if (!list_empty(&dentry->d_lru)) {
> -			dentry_stat.nr_unused--;
> -			list_del_init(&dentry->d_lru);
> -		}
> +		dentry_lru_remove(dentry);

Doesn't seem like a terribly good change to me - it's one of those
cant-measure-a-difference changes which add up to a slower kernel after
we've merged three years worth of them.

Perhaps not all of those list_del_init() callers actually need to be using
the _init version?

--
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-10-22 21:29 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-09-25 23:25 [patch 00/14] Misc cleanups / fixes Christoph Lameter
2007-09-25 23:25 ` [patch 01/14] Pagecache zeroing: zero_user_segment, zero_user_segments and zero_user Christoph Lameter
2007-09-25 23:25 ` [patch 02/14] Reiser4 portion of zero_user cleanup patch Christoph Lameter
2007-09-25 23:25 ` [patch 03/14] Move vmalloc_to_page() to mm/vmalloc Christoph Lameter
2007-09-25 23:25 ` [patch 04/14] vmalloc: add const to void ..tmp_kallsyms1.o.cmd ..tmp_kallsyms2.o.cmd ..tmp_vmlinux1.cmd ..tmp_vmlinux2.cmd .cf .cf1 .cf2 .cf3 .cfnet .config .config.old .gitignore .mailmap .missing-syscalls.d .pc .tmp_System.map .tmp_kallsyms1.S .tmp_kallsyms1.o .tmp_kallsyms2.S .tmp_kallsyms2.o .tmp_versions .tmp_vmlinux1 .tmp_vmlinux2 .version .vmlinux.cmd .vmlinux.o.cmd COPYING CREDITS Documentation Kbuild MAINTAINERS Makefile Module.symvers README REPORTING-BUGS System.map arch b block crypto drivers fs include init ipc kernel lib linux-2.6.23-rc8-mm1.tar.gz mips mm net patches scripts security sound tar-install test test_out usr vmlinux vmlinux.gz vmlinux.o vmlinux.sym xx parameters Christoph Lameter
2007-09-25 23:25 ` [patch 05/14] i386: Resolve dependency of asm-i386/pgtable.h on highmem.h Christoph Lameter
2007-09-25 23:25 ` [patch 06/14] is_vmalloc_addr(): Check if an address is within the vmalloc boundaries Christoph Lameter
2007-09-25 23:25 ` [patch 07/14] vmalloc: Clean up page array indexing Christoph Lameter
2007-09-25 23:25 ` [patch 08/14] vunmap: return page array passed on vmap() Christoph Lameter
2007-09-25 23:25 ` [patch 09/14] SLUB: Move count_partial() Christoph Lameter
2007-09-25 23:25 ` [patch 10/14] SLUB: Rename NUMA defrag_ratio to remote_node_defrag_ratio Christoph Lameter
2007-09-25 23:25 ` [patch 11/14] SLUB: Consolidate add_partial() and add_partial_tail() to one function Christoph Lameter
2007-09-25 23:25 ` [patch 12/14] VM: Allow get_page_unless_zero on compound pages Christoph Lameter
2007-09-25 23:25 ` [patch 13/14] dentries: Extract common code to remove dentry from lru Christoph Lameter
2007-10-22 21:29   ` Andrew Morton [this message]
2007-10-25  2:23     ` Christoph Lameter
2007-10-25  2:34       ` Andrew Morton
2007-10-25  2:50         ` Christoph Lameter
2007-10-25  3:03           ` Andrew Morton
2007-09-25 23:25 ` [patch 14/14] bufferhead: Revert constructor removal Christoph Lameter
2007-10-22 21:31   ` Andrew Morton
2007-10-25  2:25     ` Christoph Lameter
2007-09-27 20:25 ` [patch 00/14] Misc cleanups / fixes Andrew Morton

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=20071022142939.1b815680.akpm@linux-foundation.org \
    --to=akpm@linux-foundation.org \
    --cc=clameter@sgi.com \
    --cc=linux-mm@kvack.org \
    /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;
as well as URLs for NNTP newsgroup(s).