mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-14 15:54:15 +08:00
GFS2: Separate LRU scanning from shrinker
This breaks out the LRU scanning function from the shrinker in preparation for adding other callers to the LRU scanner. Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
This commit is contained in:
parent
6abb7c2577
commit
2a00585593
@ -1376,23 +1376,19 @@ void gfs2_glock_complete(struct gfs2_glock *gl, int ret)
|
|||||||
gfs2_glock_put(gl);
|
gfs2_glock_put(gl);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gfs2_scan_glock_lru - Scan the LRU looking for locks to demote
|
||||||
|
* @nr: The number of entries to scan
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
static int gfs2_shrink_glock_memory(struct shrinker *shrink,
|
static void gfs2_scan_glock_lru(int nr)
|
||||||
struct shrink_control *sc)
|
|
||||||
{
|
{
|
||||||
struct gfs2_glock *gl;
|
struct gfs2_glock *gl;
|
||||||
int may_demote;
|
int may_demote;
|
||||||
int nr_skipped = 0;
|
int nr_skipped = 0;
|
||||||
int nr = sc->nr_to_scan;
|
|
||||||
gfp_t gfp_mask = sc->gfp_mask;
|
|
||||||
LIST_HEAD(skipped);
|
LIST_HEAD(skipped);
|
||||||
|
|
||||||
if (nr == 0)
|
|
||||||
goto out;
|
|
||||||
|
|
||||||
if (!(gfp_mask & __GFP_FS))
|
|
||||||
return -1;
|
|
||||||
|
|
||||||
spin_lock(&lru_lock);
|
spin_lock(&lru_lock);
|
||||||
while(nr && !list_empty(&lru_list)) {
|
while(nr && !list_empty(&lru_list)) {
|
||||||
gl = list_entry(lru_list.next, struct gfs2_glock, gl_lru);
|
gl = list_entry(lru_list.next, struct gfs2_glock, gl_lru);
|
||||||
@ -1425,7 +1421,17 @@ static int gfs2_shrink_glock_memory(struct shrinker *shrink,
|
|||||||
list_splice(&skipped, &lru_list);
|
list_splice(&skipped, &lru_list);
|
||||||
atomic_add(nr_skipped, &lru_count);
|
atomic_add(nr_skipped, &lru_count);
|
||||||
spin_unlock(&lru_lock);
|
spin_unlock(&lru_lock);
|
||||||
out:
|
}
|
||||||
|
|
||||||
|
static int gfs2_shrink_glock_memory(struct shrinker *shrink,
|
||||||
|
struct shrink_control *sc)
|
||||||
|
{
|
||||||
|
if (sc->nr_to_scan) {
|
||||||
|
if (!(sc->gfp_mask & __GFP_FS))
|
||||||
|
return -1;
|
||||||
|
gfs2_scan_glock_lru(sc->nr_to_scan);
|
||||||
|
}
|
||||||
|
|
||||||
return (atomic_read(&lru_count) / 100) * sysctl_vfs_cache_pressure;
|
return (atomic_read(&lru_count) / 100) * sysctl_vfs_cache_pressure;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user