aboutsummaryrefslogtreecommitdiffstats
path: root/fs/cifs/cifsacl.c
diff options
context:
space:
mode:
authorAl Viro <viro@ZenIV.linux.org.uk>2011-05-29 13:46:08 +0100
committerLinus Torvalds <torvalds@linux-foundation.org>2011-05-29 11:17:34 -0700
commitef1d57599dc904fdb31b8e9b5336350d21a1fde1 (patch)
tree4e3f7d49c5a8c27efd5a1009131f4b3f87eff503 /fs/cifs/cifsacl.c
parentmm, rmap: Add yet more comments to page_get_anon_vma/page_lock_anon_vma (diff)
downloadlinux-dev-ef1d57599dc904fdb31b8e9b5336350d21a1fde1.tar.xz
linux-dev-ef1d57599dc904fdb31b8e9b5336350d21a1fde1.zip
cifs/ubifs: Fix shrinker API change fallout
Commit 1495f230fa77 ("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>
Diffstat (limited to 'fs/cifs/cifsacl.c')
-rw-r--r--fs/cifs/cifsacl.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/cifs/cifsacl.c b/fs/cifs/cifsacl.c
index 8f1700623b41..21de1d6d5849 100644
--- a/fs/cifs/cifsacl.c
+++ b/fs/cifs/cifsacl.c
@@ -74,8 +74,9 @@ shrink_idmap_tree(struct rb_root *root, int nr_to_scan, int *nr_rem,
* Run idmap cache shrinker.
*/
static int
-cifs_idmap_shrinker(struct shrinker *shrink, int nr_to_scan, gfp_t gfp_mask)
+cifs_idmap_shrinker(struct shrinker *shrink, struct shrink_control *sc)
{
+ int nr_to_scan = sc->nr_to_scan;
int nr_del = 0;
int nr_rem = 0;
struct rb_root *root;