diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2006-07-25 11:28:18 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2006-09-22 23:24:29 -0400 |
commit | cfcea3e8c66c2dcde98d5c2693d4bff50b5cac97 (patch) | |
tree | ee7b995a48c43de7355fa33079ee7aaad020d6f3 /fs/nfs/inode.c | |
parent | 1c3c07e9f6cc50dab2aeb8051325e317d4f6c70e (diff) |
NFS: Add a global LRU list for the ACCESS cache
...in order to allow the addition of a memory shrinker.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs/inode.c')
-rw-r--r-- | fs/nfs/inode.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/nfs/inode.c b/fs/nfs/inode.c index b94ab060bb1e..6ed018c9aad2 100644 --- a/fs/nfs/inode.c +++ b/fs/nfs/inode.c | |||
@@ -1104,6 +1104,8 @@ static void init_once(void * foo, kmem_cache_t * cachep, unsigned long flags) | |||
1104 | INIT_LIST_HEAD(&nfsi->dirty); | 1104 | INIT_LIST_HEAD(&nfsi->dirty); |
1105 | INIT_LIST_HEAD(&nfsi->commit); | 1105 | INIT_LIST_HEAD(&nfsi->commit); |
1106 | INIT_LIST_HEAD(&nfsi->open_files); | 1106 | INIT_LIST_HEAD(&nfsi->open_files); |
1107 | INIT_LIST_HEAD(&nfsi->access_cache_entry_lru); | ||
1108 | INIT_LIST_HEAD(&nfsi->access_cache_inode_lru); | ||
1107 | INIT_RADIX_TREE(&nfsi->nfs_page_tree, GFP_ATOMIC); | 1109 | INIT_RADIX_TREE(&nfsi->nfs_page_tree, GFP_ATOMIC); |
1108 | atomic_set(&nfsi->data_updates, 0); | 1110 | atomic_set(&nfsi->data_updates, 0); |
1109 | nfsi->ndirty = 0; | 1111 | nfsi->ndirty = 0; |