Lines Matching refs:total_objects
182 long total_objects; in super_cache_scan() local
204 total_objects = dentries + inodes + fs_objects + 1; in super_cache_scan()
205 if (!total_objects) in super_cache_scan()
206 total_objects = 1; in super_cache_scan()
209 dentries = mult_frac(sc->nr_to_scan, dentries, total_objects); in super_cache_scan()
210 inodes = mult_frac(sc->nr_to_scan, inodes, total_objects); in super_cache_scan()
211 fs_objects = mult_frac(sc->nr_to_scan, fs_objects, total_objects); in super_cache_scan()
238 long total_objects = 0; in super_cache_count() local
261 total_objects = sb->s_op->nr_cached_objects(sb, sc); in super_cache_count()
263 total_objects += list_lru_shrink_count(&sb->s_dentry_lru, sc); in super_cache_count()
264 total_objects += list_lru_shrink_count(&sb->s_inode_lru, sc); in super_cache_count()
266 if (!total_objects) in super_cache_count()
269 total_objects = vfs_pressure_ratio(total_objects); in super_cache_count()
270 return total_objects; in super_cache_count()