thinkpad_acpi: Correct !CONFIG_THINKPAD_ACPI_VIDEO warning
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / fs / drop_caches.c
blob2195c213ab2f556b1aecf106ffa693c2249f850a
1 /*
2 * Implement the manual drop-all-pagecache function
3 */
5 #include <linux/kernel.h>
6 #include <linux/mm.h>
7 #include <linux/fs.h>
8 #include <linux/writeback.h>
9 #include <linux/sysctl.h>
10 #include <linux/gfp.h>
12 /* A global variable is a bit ugly, but it keeps the code simple */
13 int sysctl_drop_caches;
15 static void drop_pagecache_sb(struct super_block *sb, void *unused)
17 struct inode *inode, *toput_inode = NULL;
19 spin_lock(&inode_lock);
20 list_for_each_entry(inode, &sb->s_inodes, i_sb_list) {
21 if (inode->i_state & (I_FREEING|I_WILL_FREE|I_NEW))
22 continue;
23 if (inode->i_mapping->nrpages == 0)
24 continue;
25 __iget(inode);
26 spin_unlock(&inode_lock);
27 invalidate_mapping_pages(inode->i_mapping, 0, -1);
28 iput(toput_inode);
29 toput_inode = inode;
30 spin_lock(&inode_lock);
32 spin_unlock(&inode_lock);
33 iput(toput_inode);
36 static void drop_slab(void)
38 int nr_objects;
40 do {
41 nr_objects = shrink_slab(1000, GFP_KERNEL, 1000);
42 } while (nr_objects > 10);
45 int drop_caches_sysctl_handler(ctl_table *table, int write,
46 void __user *buffer, size_t *length, loff_t *ppos)
48 proc_dointvec_minmax(table, write, buffer, length, ppos);
49 if (write) {
50 if (sysctl_drop_caches & 1)
51 iterate_supers(drop_pagecache_sb, NULL);
52 if (sysctl_drop_caches & 2)
53 drop_slab();
55 return 0;