Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 257364
b: refs/heads/master
c: fcb94f7
h: refs/heads/master
v: v3
  • Loading branch information
Dave Chinner authored and Al Viro committed Jul 20, 2011
1 parent 0f34391 commit 3c8709c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e9299f5058595a655c3b207cda9635e28b9197e6
refs/heads/master: fcb94f72d3e0f4f34b326c2986da8e5996daf72c
16 changes: 11 additions & 5 deletions trunk/fs/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ EXPORT_SYMBOL(empty_aops);
struct inodes_stat_t inodes_stat;

static DEFINE_PER_CPU(unsigned int, nr_inodes);
static DEFINE_PER_CPU(unsigned int, nr_unused);

static struct kmem_cache *inode_cachep __read_mostly;

Expand All @@ -109,7 +110,11 @@ static int get_nr_inodes(void)

static inline int get_nr_inodes_unused(void)
{
return inodes_stat.nr_unused;
int i;
int sum = 0;
for_each_possible_cpu(i)
sum += per_cpu(nr_unused, i);
return sum < 0 ? 0 : sum;
}

int get_nr_dirty_inodes(void)
Expand All @@ -127,6 +132,7 @@ int proc_nr_inodes(ctl_table *table, int write,
void __user *buffer, size_t *lenp, loff_t *ppos)
{
inodes_stat.nr_inodes = get_nr_inodes();
inodes_stat.nr_unused = get_nr_inodes_unused();
return proc_dointvec(table, write, buffer, lenp, ppos);
}
#endif
Expand Down Expand Up @@ -340,7 +346,7 @@ static void inode_lru_list_add(struct inode *inode)
spin_lock(&inode_lru_lock);
if (list_empty(&inode->i_lru)) {
list_add(&inode->i_lru, &inode_lru);
inodes_stat.nr_unused++;
this_cpu_inc(nr_unused);
}
spin_unlock(&inode_lru_lock);
}
Expand All @@ -350,7 +356,7 @@ static void inode_lru_list_del(struct inode *inode)
spin_lock(&inode_lru_lock);
if (!list_empty(&inode->i_lru)) {
list_del_init(&inode->i_lru);
inodes_stat.nr_unused--;
this_cpu_dec(nr_unused);
}
spin_unlock(&inode_lru_lock);
}
Expand Down Expand Up @@ -656,7 +662,7 @@ static void prune_icache(int nr_to_scan)
(inode->i_state & ~I_REFERENCED)) {
list_del_init(&inode->i_lru);
spin_unlock(&inode->i_lock);
inodes_stat.nr_unused--;
this_cpu_dec(nr_unused);
continue;
}

Expand Down Expand Up @@ -693,7 +699,7 @@ static void prune_icache(int nr_to_scan)
spin_unlock(&inode->i_lock);

list_move(&inode->i_lru, &freeable);
inodes_stat.nr_unused--;
this_cpu_dec(nr_unused);
}
if (current_is_kswapd())
__count_vm_events(KSWAPD_INODESTEAL, reap);
Expand Down

0 comments on commit 3c8709c

Please sign in to comment.