blob: 52047cf4177f46033b906a59eeca90aa9f8390db [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>
Al Viro35cf7ba2010-03-22 21:13:53 -040011#include "internal.h"
Andrew Morton9d0243b2006-01-08 01:00:39 -080012
13/* A global variable is a bit ugly, but it keeps the code simple */
14int sysctl_drop_caches;
15
16static void drop_pagecache_sb(struct super_block *sb)
17{
Jan Karaeccb95c2008-04-29 00:59:37 -070018 struct inode *inode, *toput_inode = NULL;
Andrew Morton9d0243b2006-01-08 01:00:39 -080019
20 spin_lock(&inode_lock);
21 list_for_each_entry(inode, &sb->s_inodes, i_sb_list) {
Wu Fengguangb6fac632009-04-02 16:56:34 -070022 if (inode->i_state & (I_FREEING|I_CLEAR|I_WILL_FREE|I_NEW))
Andrew Morton9d0243b2006-01-08 01:00:39 -080023 continue;
Jan Karaaf065b82008-04-29 00:59:39 -070024 if (inode->i_mapping->nrpages == 0)
25 continue;
Jan Karaeccb95c2008-04-29 00:59:37 -070026 __iget(inode);
27 spin_unlock(&inode_lock);
Mike Waychison28697352009-06-16 15:32:59 -070028 invalidate_mapping_pages(inode->i_mapping, 0, -1);
Jan Karaeccb95c2008-04-29 00:59:37 -070029 iput(toput_inode);
30 toput_inode = inode;
31 spin_lock(&inode_lock);
Andrew Morton9d0243b2006-01-08 01:00:39 -080032 }
33 spin_unlock(&inode_lock);
Jan Karaeccb95c2008-04-29 00:59:37 -070034 iput(toput_inode);
Andrew Morton9d0243b2006-01-08 01:00:39 -080035}
36
Adrian Bunk07d45da2008-04-29 00:58:57 -070037static void drop_pagecache(void)
Andrew Morton9d0243b2006-01-08 01:00:39 -080038{
Al Viro6754af62010-03-22 20:09:33 -040039 struct super_block *sb, *n;
Andrew Morton9d0243b2006-01-08 01:00:39 -080040
41 spin_lock(&sb_lock);
Al Viro6754af62010-03-22 20:09:33 -040042 list_for_each_entry_safe(sb, n, &super_blocks, s_list) {
Al Viro551de6f2010-03-22 19:36:35 -040043 if (list_empty(&sb->s_instances))
44 continue;
Andrew Morton9d0243b2006-01-08 01:00:39 -080045 sb->s_count++;
46 spin_unlock(&sb_lock);
47 down_read(&sb->s_umount);
48 if (sb->s_root)
49 drop_pagecache_sb(sb);
50 up_read(&sb->s_umount);
51 spin_lock(&sb_lock);
Al Viro6754af62010-03-22 20:09:33 -040052 __put_super(sb);
Andrew Morton9d0243b2006-01-08 01:00:39 -080053 }
54 spin_unlock(&sb_lock);
55}
56
Adrian Bunk07d45da2008-04-29 00:58:57 -070057static void drop_slab(void)
Andrew Morton9d0243b2006-01-08 01:00:39 -080058{
59 int nr_objects;
60
61 do {
62 nr_objects = shrink_slab(1000, GFP_KERNEL, 1000);
63 } while (nr_objects > 10);
64}
65
66int drop_caches_sysctl_handler(ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -070067 void __user *buffer, size_t *length, loff_t *ppos)
Andrew Morton9d0243b2006-01-08 01:00:39 -080068{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -070069 proc_dointvec_minmax(table, write, buffer, length, ppos);
Andrew Morton9d0243b2006-01-08 01:00:39 -080070 if (write) {
71 if (sysctl_drop_caches & 1)
72 drop_pagecache();
73 if (sysctl_drop_caches & 2)
74 drop_slab();
75 }
76 return 0;
77}