blob: 6c6f73ba0868558e226ef9dc47869700418762d0 [file] [log] [blame]
Andrew Morton9d0243b2006-01-08 01:00:39 -08001/*
2 * Implement the manual drop-all-pagecache function
3 */
4
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>
11
12/* A global variable is a bit ugly, but it keeps the code simple */
13int sysctl_drop_caches;
14
Al Viro01a05b32010-03-23 06:06:58 -040015static void drop_pagecache_sb(struct super_block *sb, void *unused)
Andrew Morton9d0243b2006-01-08 01:00:39 -080016{
Jan Karaeccb95c2008-04-29 00:59:37 -070017 struct inode *inode, *toput_inode = NULL;
Andrew Morton9d0243b2006-01-08 01:00:39 -080018
19 spin_lock(&inode_lock);
20 list_for_each_entry(inode, &sb->s_inodes, i_sb_list) {
Dave Chinner250df6ed2011-03-22 22:23:36 +110021 spin_lock(&inode->i_lock);
22 if ((inode->i_state & (I_FREEING|I_WILL_FREE|I_NEW)) ||
23 (inode->i_mapping->nrpages == 0)) {
24 spin_unlock(&inode->i_lock);
Andrew Morton9d0243b2006-01-08 01:00:39 -080025 continue;
Dave Chinner250df6ed2011-03-22 22:23:36 +110026 }
Jan Karaeccb95c2008-04-29 00:59:37 -070027 __iget(inode);
Dave Chinner250df6ed2011-03-22 22:23:36 +110028 spin_unlock(&inode->i_lock);
Jan Karaeccb95c2008-04-29 00:59:37 -070029 spin_unlock(&inode_lock);
Mike Waychison28697352009-06-16 15:32:59 -070030 invalidate_mapping_pages(inode->i_mapping, 0, -1);
Jan Karaeccb95c2008-04-29 00:59:37 -070031 iput(toput_inode);
32 toput_inode = inode;
33 spin_lock(&inode_lock);
Andrew Morton9d0243b2006-01-08 01:00:39 -080034 }
35 spin_unlock(&inode_lock);
Jan Karaeccb95c2008-04-29 00:59:37 -070036 iput(toput_inode);
Andrew Morton9d0243b2006-01-08 01:00:39 -080037}
38
Adrian Bunk07d45da2008-04-29 00:58:57 -070039static void drop_slab(void)
Andrew Morton9d0243b2006-01-08 01:00:39 -080040{
41 int nr_objects;
42
43 do {
44 nr_objects = shrink_slab(1000, GFP_KERNEL, 1000);
45 } while (nr_objects > 10);
46}
47
48int drop_caches_sysctl_handler(ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -070049 void __user *buffer, size_t *length, loff_t *ppos)
Andrew Morton9d0243b2006-01-08 01:00:39 -080050{
Petr Holasekcb16e952011-03-23 16:43:09 -070051 int ret;
52
53 ret = proc_dointvec_minmax(table, write, buffer, length, ppos);
54 if (ret)
55 return ret;
Andrew Morton9d0243b2006-01-08 01:00:39 -080056 if (write) {
57 if (sysctl_drop_caches & 1)
Al Viro01a05b32010-03-23 06:06:58 -040058 iterate_supers(drop_pagecache_sb, NULL);
Andrew Morton9d0243b2006-01-08 01:00:39 -080059 if (sysctl_drop_caches & 2)
60 drop_slab();
61 }
62 return 0;
63}