LCOV - code coverage report
Current view: top level - fs - drop_caches.c (source / functions) Hit Total Coverage
Test: fstests of 6.5.0-rc4-xfsx @ Mon Jul 31 20:08:34 PDT 2023 Lines: 35 35 100.0 %
Date: 2023-07-31 20:08:34 Functions: 2 2 100.0 %

          Line data    Source code
       1             : // SPDX-License-Identifier: GPL-2.0
       2             : /*
       3             :  * Implement the manual drop-all-pagecache function
       4             :  */
       5             : 
       6             : #include <linux/pagemap.h>
       7             : #include <linux/kernel.h>
       8             : #include <linux/mm.h>
       9             : #include <linux/fs.h>
      10             : #include <linux/writeback.h>
      11             : #include <linux/sysctl.h>
      12             : #include <linux/gfp.h>
      13             : #include "internal.h"
      14             : 
      15             : /* A global variable is a bit ugly, but it keeps the code simple */
      16             : int sysctl_drop_caches;
      17             : 
      18       46156 : static void drop_pagecache_sb(struct super_block *sb, void *unused)
      19             : {
      20       46156 :         struct inode *inode, *toput_inode = NULL;
      21             : 
      22       46156 :         spin_lock(&sb->s_inode_list_lock);
      23    23089979 :         list_for_each_entry(inode, &sb->s_inodes, i_sb_list) {
      24    23043823 :                 spin_lock(&inode->i_lock);
      25             :                 /*
      26             :                  * We must skip inodes in unusual state. We may also skip
      27             :                  * inodes without pages but we deliberately won't in case
      28             :                  * we need to reschedule to avoid softlockups.
      29             :                  */
      30    23043823 :                 if ((inode->i_state & (I_FREEING|I_WILL_FREE|I_NEW)) ||
      31    23043823 :                     (mapping_empty(inode->i_mapping) && !need_resched())) {
      32    17366487 :                         spin_unlock(&inode->i_lock);
      33    17366487 :                         continue;
      34             :                 }
      35     5677336 :                 __iget(inode);
      36     5677336 :                 spin_unlock(&inode->i_lock);
      37     5677336 :                 spin_unlock(&sb->s_inode_list_lock);
      38             : 
      39     5677336 :                 invalidate_mapping_pages(inode->i_mapping, 0, -1);
      40     5677336 :                 iput(toput_inode);
      41     5677336 :                 toput_inode = inode;
      42             : 
      43     5677336 :                 cond_resched();
      44     5677336 :                 spin_lock(&sb->s_inode_list_lock);
      45             :         }
      46       46156 :         spin_unlock(&sb->s_inode_list_lock);
      47       46156 :         iput(toput_inode);
      48       46156 : }
      49             : 
      50        1020 : int drop_caches_sysctl_handler(struct ctl_table *table, int write,
      51             :                 void *buffer, size_t *length, loff_t *ppos)
      52             : {
      53        1020 :         int ret;
      54             : 
      55        1020 :         ret = proc_dointvec_minmax(table, write, buffer, length, ppos);
      56        1020 :         if (ret)
      57             :                 return ret;
      58        1020 :         if (write) {
      59        1020 :                 static int stfu;
      60             : 
      61        1020 :                 if (sysctl_drop_caches & 1) {
      62         812 :                         iterate_supers(drop_pagecache_sb, NULL);
      63         812 :                         count_vm_event(DROP_PAGECACHE);
      64             :                 }
      65        1020 :                 if (sysctl_drop_caches & 2) {
      66         965 :                         drop_slab();
      67         965 :                         count_vm_event(DROP_SLAB);
      68             :                 }
      69        1020 :                 if (!stfu) {
      70        1020 :                         pr_info("%s (%d): drop_caches: %d\n",
      71             :                                 current->comm, task_pid_nr(current),
      72             :                                 sysctl_drop_caches);
      73             :                 }
      74        1020 :                 stfu |= sysctl_drop_caches & 4;
      75             :         }
      76             :         return 0;
      77             : }

Generated by: LCOV version 1.14