2 * Implement the manual drop-all-pagecache function
5 #include <linux/kernel.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)
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))
23 invalidate_inode_pages(inode->i_mapping);
25 spin_unlock(&inode_lock);
28 void drop_pagecache(void)
30 struct super_block *sb;
34 list_for_each_entry(sb, &super_blocks, s_list) {
36 spin_unlock(&sb_lock);
37 down_read(&sb->s_umount);
39 drop_pagecache_sb(sb);
40 up_read(&sb->s_umount);
42 if (__put_super_and_need_restart(sb))
45 spin_unlock(&sb_lock);
53 nr_objects = shrink_slab(1000, GFP_KERNEL, 1000);
54 } while (nr_objects > 10);
57 int drop_caches_sysctl_handler(ctl_table *table, int write,
58 struct file *file, void __user *buffer, size_t *length, loff_t *ppos)
60 proc_dointvec_minmax(table, write, file, buffer, length, ppos);
62 if (sysctl_drop_caches & 1)
64 if (sysctl_drop_caches & 2)