1 // SPDX-License-Identifier: GPL-2.0
3 * Implement the manual drop-all-pagecache function
6 #include <linux/kernel.h>
9 #include <linux/writeback.h>
10 #include <linux/sysctl.h>
11 #include <linux/gfp.h>
14 /* A global variable is a bit ugly, but it keeps the code simple */
15 int sysctl_drop_caches
;
17 static void drop_pagecache_sb(struct super_block
*sb
, void *unused
)
19 struct inode
*inode
, *toput_inode
= NULL
;
21 spin_lock(&sb
->s_inode_list_lock
);
22 list_for_each_entry(inode
, &sb
->s_inodes
, i_sb_list
) {
23 spin_lock(&inode
->i_lock
);
24 if ((inode
->i_state
& (I_FREEING
|I_WILL_FREE
|I_NEW
)) ||
25 (inode
->i_mapping
->nrpages
== 0)) {
26 spin_unlock(&inode
->i_lock
);
30 spin_unlock(&inode
->i_lock
);
31 spin_unlock(&sb
->s_inode_list_lock
);
33 invalidate_mapping_pages(inode
->i_mapping
, 0, -1);
37 spin_lock(&sb
->s_inode_list_lock
);
39 spin_unlock(&sb
->s_inode_list_lock
);
43 int drop_caches_sysctl_handler(struct ctl_table
*table
, int write
,
44 void __user
*buffer
, size_t *length
, loff_t
*ppos
)
48 ret
= proc_dointvec_minmax(table
, write
, buffer
, length
, ppos
);
54 if (sysctl_drop_caches
& 1) {
55 iterate_supers(drop_pagecache_sb
, NULL
);
56 count_vm_event(DROP_PAGECACHE
);
58 if (sysctl_drop_caches
& 2) {
60 count_vm_event(DROP_SLAB
);
63 pr_info("%s (%d): drop_caches: %d\n",
64 current
->comm
, task_pid_nr(current
),
67 stfu
|= sysctl_drop_caches
& 4;