cifs/ubifs: Fix shrinker API change fallout

Commit 1495f230fa ("vmscan: change shrinker API by passing
shrink_control struct") changed the API of ->shrink(), but missed ubifs
and cifs instances.

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Al Viro
2011-05-29 13:46:08 +01:00
committed by Linus Torvalds
parent bc658c9603
commit ef1d57599d
3 changed files with 5 additions and 3 deletions

View File

@@ -277,8 +277,9 @@ static int kick_a_thread(void)
return 0;
}
int ubifs_shrinker(struct shrinker *shrink, int nr, gfp_t gfp_mask)
int ubifs_shrinker(struct shrinker *shrink, struct shrink_control *sc)
{
int nr = sc->nr_to_scan;
int freed, contention = 0;
long clean_zn_cnt = atomic_long_read(&ubifs_clean_zn_cnt);