]>
git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - fs/f2fs/shrinker.c
2 * f2fs shrinker support
3 * the basic infra was copied from fs/ubifs/shrinker.c
5 * Copyright (c) 2015 Motorola Mobility
6 * Copyright (c) 2015 Jaegeuk Kim <jaegeuk@kernel.org>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
13 #include <linux/f2fs_fs.h>
18 static LIST_HEAD(f2fs_list
);
19 static DEFINE_SPINLOCK(f2fs_list_lock
);
20 static unsigned int shrinker_run_no
;
22 static unsigned long __count_nat_entries(struct f2fs_sb_info
*sbi
)
24 long count
= NM_I(sbi
)->nat_cnt
- NM_I(sbi
)->dirty_nat_cnt
;
26 return count
> 0 ? count
: 0;
29 static unsigned long __count_free_nids(struct f2fs_sb_info
*sbi
)
31 long count
= NM_I(sbi
)->nid_cnt
[FREE_NID_LIST
] - MAX_FREE_NIDS
;
33 return count
> 0 ? count
: 0;
36 static unsigned long __count_extent_cache(struct f2fs_sb_info
*sbi
)
38 return atomic_read(&sbi
->total_zombie_tree
) +
39 atomic_read(&sbi
->total_ext_node
);
42 unsigned long f2fs_shrink_count(struct shrinker
*shrink
,
43 struct shrink_control
*sc
)
45 struct f2fs_sb_info
*sbi
;
47 unsigned long count
= 0;
49 spin_lock(&f2fs_list_lock
);
51 while (p
!= &f2fs_list
) {
52 sbi
= list_entry(p
, struct f2fs_sb_info
, s_list
);
54 /* stop f2fs_put_super */
55 if (!mutex_trylock(&sbi
->umount_mutex
)) {
59 spin_unlock(&f2fs_list_lock
);
61 /* count extent cache entries */
62 count
+= __count_extent_cache(sbi
);
64 /* shrink clean nat cache entries */
65 count
+= __count_nat_entries(sbi
);
67 /* count free nids cache entries */
68 count
+= __count_free_nids(sbi
);
70 spin_lock(&f2fs_list_lock
);
72 mutex_unlock(&sbi
->umount_mutex
);
74 spin_unlock(&f2fs_list_lock
);
78 unsigned long f2fs_shrink_scan(struct shrinker
*shrink
,
79 struct shrink_control
*sc
)
81 unsigned long nr
= sc
->nr_to_scan
;
82 struct f2fs_sb_info
*sbi
;
85 unsigned long freed
= 0;
87 spin_lock(&f2fs_list_lock
);
89 run_no
= ++shrinker_run_no
;
90 } while (run_no
== 0);
92 while (p
!= &f2fs_list
) {
93 sbi
= list_entry(p
, struct f2fs_sb_info
, s_list
);
95 if (sbi
->shrinker_run_no
== run_no
)
98 /* stop f2fs_put_super */
99 if (!mutex_trylock(&sbi
->umount_mutex
)) {
103 spin_unlock(&f2fs_list_lock
);
105 sbi
->shrinker_run_no
= run_no
;
107 /* shrink extent cache entries */
108 freed
+= f2fs_shrink_extent_tree(sbi
, nr
>> 1);
110 /* shrink clean nat cache entries */
112 freed
+= try_to_free_nats(sbi
, nr
- freed
);
114 /* shrink free nids cache entries */
116 freed
+= try_to_free_nids(sbi
, nr
- freed
);
118 spin_lock(&f2fs_list_lock
);
120 list_move_tail(&sbi
->s_list
, &f2fs_list
);
121 mutex_unlock(&sbi
->umount_mutex
);
125 spin_unlock(&f2fs_list_lock
);
129 void f2fs_join_shrinker(struct f2fs_sb_info
*sbi
)
131 spin_lock(&f2fs_list_lock
);
132 list_add_tail(&sbi
->s_list
, &f2fs_list
);
133 spin_unlock(&f2fs_list_lock
);
136 void f2fs_leave_shrinker(struct f2fs_sb_info
*sbi
)
138 f2fs_shrink_extent_tree(sbi
, __count_extent_cache(sbi
));
140 spin_lock(&f2fs_list_lock
);
141 list_del(&sbi
->s_list
);
142 spin_unlock(&f2fs_list_lock
);