]>
Commit | Line | Data |
---|---|---|
9d0243bc AM |
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> | |
55fa6091 | 11 | #include "internal.h" |
9d0243bc AM |
12 | |
13 | /* A global variable is a bit ugly, but it keeps the code simple */ | |
14 | int sysctl_drop_caches; | |
15 | ||
01a05b33 | 16 | static void drop_pagecache_sb(struct super_block *sb, void *unused) |
9d0243bc | 17 | { |
eccb95ce | 18 | struct inode *inode, *toput_inode = NULL; |
9d0243bc | 19 | |
55fa6091 | 20 | spin_lock(&inode_sb_list_lock); |
9d0243bc | 21 | list_for_each_entry(inode, &sb->s_inodes, i_sb_list) { |
250df6ed DC |
22 | spin_lock(&inode->i_lock); |
23 | if ((inode->i_state & (I_FREEING|I_WILL_FREE|I_NEW)) || | |
24 | (inode->i_mapping->nrpages == 0)) { | |
25 | spin_unlock(&inode->i_lock); | |
af065b8a | 26 | continue; |
250df6ed | 27 | } |
eccb95ce | 28 | __iget(inode); |
250df6ed | 29 | spin_unlock(&inode->i_lock); |
55fa6091 | 30 | spin_unlock(&inode_sb_list_lock); |
28697355 | 31 | invalidate_mapping_pages(inode->i_mapping, 0, -1); |
eccb95ce JK |
32 | iput(toput_inode); |
33 | toput_inode = inode; | |
55fa6091 | 34 | spin_lock(&inode_sb_list_lock); |
9d0243bc | 35 | } |
55fa6091 | 36 | spin_unlock(&inode_sb_list_lock); |
eccb95ce | 37 | iput(toput_inode); |
9d0243bc AM |
38 | } |
39 | ||
07d45da6 | 40 | static void drop_slab(void) |
9d0243bc AM |
41 | { |
42 | int nr_objects; | |
a09ed5e0 YH |
43 | struct shrink_control shrink = { |
44 | .gfp_mask = GFP_KERNEL, | |
a09ed5e0 | 45 | }; |
9d0243bc | 46 | |
0ce3d744 | 47 | nodes_setall(shrink.nodes_to_scan); |
9d0243bc | 48 | do { |
1495f230 | 49 | nr_objects = shrink_slab(&shrink, 1000, 1000); |
9d0243bc AM |
50 | } while (nr_objects > 10); |
51 | } | |
52 | ||
1f7e0616 | 53 | int drop_caches_sysctl_handler(struct ctl_table *table, int write, |
8d65af78 | 54 | void __user *buffer, size_t *length, loff_t *ppos) |
9d0243bc | 55 | { |
cb16e95f PH |
56 | int ret; |
57 | ||
58 | ret = proc_dointvec_minmax(table, write, buffer, length, ppos); | |
59 | if (ret) | |
60 | return ret; | |
9d0243bc | 61 | if (write) { |
5509a5d2 DH |
62 | static int stfu; |
63 | ||
64 | if (sysctl_drop_caches & 1) { | |
01a05b33 | 65 | iterate_supers(drop_pagecache_sb, NULL); |
5509a5d2 DH |
66 | count_vm_event(DROP_PAGECACHE); |
67 | } | |
68 | if (sysctl_drop_caches & 2) { | |
9d0243bc | 69 | drop_slab(); |
5509a5d2 DH |
70 | count_vm_event(DROP_SLAB); |
71 | } | |
72 | if (!stfu) { | |
73 | pr_info("%s (%d): drop_caches: %d\n", | |
74 | current->comm, task_pid_nr(current), | |
75 | sysctl_drop_caches); | |
76 | } | |
77 | stfu |= sysctl_drop_caches & 4; | |
9d0243bc AM |
78 | } |
79 | return 0; | |
80 | } |