Andrew Morton | 9d0243b | 2006-01-08 01:00:39 -0800 | [diff] [blame] | 1 | /* |
| 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 */ |
| 13 | int sysctl_drop_caches; |
| 14 | |
Al Viro | 01a05b3 | 2010-03-23 06:06:58 -0400 | [diff] [blame] | 15 | static void drop_pagecache_sb(struct super_block *sb, void *unused) |
Andrew Morton | 9d0243b | 2006-01-08 01:00:39 -0800 | [diff] [blame] | 16 | { |
Jan Kara | eccb95c | 2008-04-29 00:59:37 -0700 | [diff] [blame] | 17 | struct inode *inode, *toput_inode = NULL; |
Andrew Morton | 9d0243b | 2006-01-08 01:00:39 -0800 | [diff] [blame] | 18 | |
| 19 | spin_lock(&inode_lock); |
| 20 | list_for_each_entry(inode, &sb->s_inodes, i_sb_list) { |
Wu Fengguang | b6fac63 | 2009-04-02 16:56:34 -0700 | [diff] [blame] | 21 | if (inode->i_state & (I_FREEING|I_CLEAR|I_WILL_FREE|I_NEW)) |
Andrew Morton | 9d0243b | 2006-01-08 01:00:39 -0800 | [diff] [blame] | 22 | continue; |
Jan Kara | af065b8 | 2008-04-29 00:59:39 -0700 | [diff] [blame] | 23 | if (inode->i_mapping->nrpages == 0) |
| 24 | continue; |
Jan Kara | eccb95c | 2008-04-29 00:59:37 -0700 | [diff] [blame] | 25 | __iget(inode); |
| 26 | spin_unlock(&inode_lock); |
Mike Waychison | 2869735 | 2009-06-16 15:32:59 -0700 | [diff] [blame] | 27 | invalidate_mapping_pages(inode->i_mapping, 0, -1); |
Jan Kara | eccb95c | 2008-04-29 00:59:37 -0700 | [diff] [blame] | 28 | iput(toput_inode); |
| 29 | toput_inode = inode; |
| 30 | spin_lock(&inode_lock); |
Andrew Morton | 9d0243b | 2006-01-08 01:00:39 -0800 | [diff] [blame] | 31 | } |
| 32 | spin_unlock(&inode_lock); |
Jan Kara | eccb95c | 2008-04-29 00:59:37 -0700 | [diff] [blame] | 33 | iput(toput_inode); |
Andrew Morton | 9d0243b | 2006-01-08 01:00:39 -0800 | [diff] [blame] | 34 | } |
| 35 | |
Adrian Bunk | 07d45da | 2008-04-29 00:58:57 -0700 | [diff] [blame] | 36 | static void drop_slab(void) |
Andrew Morton | 9d0243b | 2006-01-08 01:00:39 -0800 | [diff] [blame] | 37 | { |
| 38 | int nr_objects; |
| 39 | |
| 40 | do { |
| 41 | nr_objects = shrink_slab(1000, GFP_KERNEL, 1000); |
| 42 | } while (nr_objects > 10); |
| 43 | } |
| 44 | |
| 45 | int drop_caches_sysctl_handler(ctl_table *table, int write, |
Alexey Dobriyan | 8d65af7 | 2009-09-23 15:57:19 -0700 | [diff] [blame] | 46 | void __user *buffer, size_t *length, loff_t *ppos) |
Andrew Morton | 9d0243b | 2006-01-08 01:00:39 -0800 | [diff] [blame] | 47 | { |
Alexey Dobriyan | 8d65af7 | 2009-09-23 15:57:19 -0700 | [diff] [blame] | 48 | proc_dointvec_minmax(table, write, buffer, length, ppos); |
Andrew Morton | 9d0243b | 2006-01-08 01:00:39 -0800 | [diff] [blame] | 49 | if (write) { |
| 50 | if (sysctl_drop_caches & 1) |
Al Viro | 01a05b3 | 2010-03-23 06:06:58 -0400 | [diff] [blame] | 51 | iterate_supers(drop_pagecache_sb, NULL); |
Andrew Morton | 9d0243b | 2006-01-08 01:00:39 -0800 | [diff] [blame] | 52 | if (sysctl_drop_caches & 2) |
| 53 | drop_slab(); |
| 54 | } |
| 55 | return 0; |
| 56 | } |