Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 252749
b: refs/heads/master
c: ef1d575
h: refs/heads/master
i:
  252747: 3d2746f
v: v3
  • Loading branch information
Al Viro authored and Linus Torvalds committed May 29, 2011
1 parent 2c9b847 commit f4525b7
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: bc658c96037fc87463f0703ad2ea7c895344cb7e
refs/heads/master: ef1d57599dc904fdb31b8e9b5336350d21a1fde1
3 changes: 2 additions & 1 deletion trunk/fs/cifs/cifsacl.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
3 changes: 2 additions & 1 deletion trunk/fs/ubifs/shrinker.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down
2 changes: 1 addition & 1 deletion trunk/fs/ubifs/ubifs.h
Original file line number Diff line number Diff line change
Expand Up @@ -1614,7 +1614,7 @@ int ubifs_tnc_start_commit(struct ubifs_info *c, struct ubifs_zbranch *zroot);
int ubifs_tnc_end_commit(struct ubifs_info *c);

/* shrinker.c */
int ubifs_shrinker(struct shrinker *shrink, int nr_to_scan, gfp_t gfp_mask);
int ubifs_shrinker(struct shrinker *shrink, struct shrink_control *sc);

/* commit.c */
int ubifs_bg_thread(void *info);
Expand Down

0 comments on commit f4525b7

Please sign in to comment.