]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
fs-convert-fs-shrinkers-to-new-scan-count-api-fix
authorAndrew Morton <akpm@linux-foundation.org>
Wed, 19 Jun 2013 00:06:50 +0000 (10:06 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Wed, 19 Jun 2013 07:26:47 +0000 (17:26 +1000)
fix warnings

Cc: Dave Chinner <dchinner@redhat.com>
Cc: Glauber Costa <glommer@openvz.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
fs/ext4/extents_status.c
fs/gfs2/glock.c
fs/gfs2/quota.c
fs/gfs2/quota.h
fs/mbcache.c
fs/nfs/dir.c
fs/nfs/internal.h
fs/nfsd/nfscache.c
fs/quota/dquot.c
fs/ubifs/shrinker.c
fs/ubifs/ubifs.h

index e75b776d40303b3a26d7066ca1331912ed10a24c..e0190f65b380442188cc71f79d429cba31862dfd 100644 (file)
@@ -893,18 +893,21 @@ static int ext4_inode_touch_time_cmp(void *priv, struct list_head *a,
        return 0;
 }
 
-static long ext4_es_count(struct shrinker *shrink, struct shrink_control *sc)
+static unsigned long ext4_es_count(struct shrinker *shrink,
+                                  struct shrink_control *sc)
 {
-       long nr;
-       struct ext4_sb_info *sbi = container_of(shrink,
-                                       struct ext4_sb_info, s_es_shrinker);
+       unsigned long nr;
+       struct ext4_sb_info *sbi;
+
+       sbi = container_of(shrink, struct ext4_sb_info, s_es_shrinker);
 
        nr = percpu_counter_read_positive(&sbi->s_extent_cache_cnt);
        trace_ext4_es_shrink_enter(sbi->s_sb, sc->nr_to_scan, nr);
        return nr;
 }
 
-static long ext4_es_scan(struct shrinker *shrink, struct shrink_control *sc)
+static unsigned long ext4_es_scan(struct shrinker *shrink,
+                                 struct shrink_control *sc)
 {
        struct ext4_sb_info *sbi = container_of(shrink,
                                        struct ext4_sb_info, s_es_shrinker);
@@ -912,7 +915,8 @@ static long ext4_es_scan(struct shrinker *shrink, struct shrink_control *sc)
        struct list_head *cur, *tmp;
        LIST_HEAD(skiped);
        int nr_to_scan = sc->nr_to_scan;
-       int ret = 0, nr_shrunk = 0;
+       int ret = 0;
+       unsigned long nr_shrunk = 0;
 
        spin_lock(&sbi->s_es_lru_lock);
 
index a7060a01046c9d0a6ec078903e9ffb9d514a689c..a9d8cafae041c77aad684065263e91abca9c3246 100644 (file)
@@ -1457,16 +1457,16 @@ static long gfs2_scan_glock_lru(int nr)
        return freed;
 }
 
-static long gfs2_glock_shrink_scan(struct shrinker *shrink,
-                                  struct shrink_control *sc)
+static unsigned long gfs2_glock_shrink_scan(struct shrinker *shrink,
+                                           struct shrink_control *sc)
 {
        if (!(sc->gfp_mask & __GFP_FS))
                return SHRINK_STOP;
        return gfs2_scan_glock_lru(sc->nr_to_scan);
 }
 
-static long gfs2_glock_shrink_count(struct shrinker *shrink,
-                                   struct shrink_control *sc)
+static unsigned long gfs2_glock_shrink_count(struct shrinker *shrink,
+                                            struct shrink_control *sc)
 {
        return vfs_pressure_ratio(atomic_read(&lru_count));
 }
index bb83036e65c1ed1163186aab3bfe993b0e0f026f..db441359ee8cd2f31fa4a980afe8c54a3f715447 100644 (file)
@@ -75,7 +75,8 @@ static LIST_HEAD(qd_lru_list);
 static atomic_t qd_lru_count = ATOMIC_INIT(0);
 static DEFINE_SPINLOCK(qd_lru_lock);
 
-long gfs2_qd_shrink_scan(struct shrinker *shrink, struct shrink_control *sc)
+unsigned long gfs2_qd_shrink_scan(struct shrinker *shrink,
+                                 struct shrink_control *sc)
 {
        struct gfs2_quota_data *qd;
        struct gfs2_sbd *sdp;
@@ -114,7 +115,8 @@ long gfs2_qd_shrink_scan(struct shrinker *shrink, struct shrink_control *sc)
        return freed;
 }
 
-long gfs2_qd_shrink_count(struct shrinker *shrink, struct shrink_control *sc)
+unsigned long gfs2_qd_shrink_count(struct shrinker *shrink,
+                                  struct shrink_control *sc)
 {
        return vfs_pressure_ratio(atomic_read(&qd_lru_count));
 }
index 4f61708339e911f09064c1f59c26dd57b2400b26..0f64d9deb1b027c892caaf377ec76681dbbfce4f 100644 (file)
@@ -53,10 +53,10 @@ static inline int gfs2_quota_lock_check(struct gfs2_inode *ip)
        return ret;
 }
 
-extern long gfs2_qd_shrink_count(struct shrinker *shrink,
-                                struct shrink_control *sc);
-extern long gfs2_qd_shrink_scan(struct shrinker *shrink,
-                                struct shrink_control *sc);
+extern unsigned long gfs2_qd_shrink_count(struct shrinker *shrink,
+                                         struct shrink_control *sc);
+extern unsigned long gfs2_qd_shrink_scan(struct shrinker *shrink,
+                                        struct shrink_control *sc);
 extern const struct quotactl_ops gfs2_quotactl_ops;
 
 #endif /* __QUOTA_DOT_H__ */
index dbb9e546d6e78a9b7e91a649330fe30cad24aa4b..e519e45bf6735e7f59dc7fef969451791e5e1cef 100644 (file)
@@ -149,14 +149,14 @@ forget:
  *
  * Returns the number of objects freed.
  */
-static long
+static unsigned long
 mb_cache_shrink_scan(struct shrinker *shrink, struct shrink_control *sc)
 {
        LIST_HEAD(free_list);
        struct mb_cache_entry *entry, *tmp;
        int nr_to_scan = sc->nr_to_scan;
        gfp_t gfp_mask = sc->gfp_mask;
-       long freed = 0;
+       unsigned long freed = 0;
 
        mb_debug("trying to free %d entries", nr_to_scan);
        spin_lock(&mb_cache_spinlock);
@@ -175,11 +175,11 @@ mb_cache_shrink_scan(struct shrinker *shrink, struct shrink_control *sc)
        return freed;
 }
 
-static long
+static unsigned long
 mb_cache_shrink_count(struct shrinker *shrink, struct shrink_control *sc)
 {
        struct mb_cache *cache;
-       long count = 0;
+       unsigned long count = 0;
 
        spin_lock(&mb_cache_spinlock);
        list_for_each_entry(cache, &mb_cache_list, c_cache_list) {
index b769a068be79198b24500137d72810801d238463..ee18b0672dac1d072381d3285060e05daa407c0c 100644 (file)
@@ -1964,7 +1964,7 @@ static void nfs_access_free_list(struct list_head *head)
        }
 }
 
-long
+unsigned long
 nfs_access_cache_scan(struct shrinker *shrink, struct shrink_control *sc)
 {
        LIST_HEAD(head);
@@ -2009,7 +2009,7 @@ remove_lru_entry:
        return freed;
 }
 
-long
+unsigned long
 nfs_access_cache_count(struct shrinker *shrink, struct shrink_control *sc)
 {
        return vfs_pressure_ratio(atomic_long_read(&nfs_access_nr_entries));
index 736284fa76db9a88d1e7d3e1947309cb5e313671..dd3760bcb602b4ea8c01f4fa48de2eb81d1966a3 100644 (file)
@@ -269,10 +269,10 @@ extern struct nfs_client *nfs_init_client(struct nfs_client *clp,
                           const char *ip_addr, rpc_authflavor_t authflavour);
 
 /* dir.c */
-extern long nfs_access_cache_count(struct shrinker *shrink,
-                                       struct shrink_control *sc);
-extern long nfs_access_cache_scan(struct shrinker *shrink,
-                                       struct shrink_control *sc);
+extern unsigned long nfs_access_cache_count(struct shrinker *shrink,
+                                           struct shrink_control *sc);
+extern unsigned long nfs_access_cache_scan(struct shrinker *shrink,
+                                          struct shrink_control *sc);
 struct dentry *nfs_lookup(struct inode *, struct dentry *, unsigned int);
 int nfs_create(struct inode *, struct dentry *, umode_t, bool);
 int nfs_mkdir(struct inode *, struct dentry *, umode_t);
index 5564c38f5d3e460c80aa621c24a7657df59ad40a..9186c7ce0b141b187a8b127a6608005a05ad53d1 100644 (file)
@@ -59,10 +59,10 @@ static unsigned int         longest_chain_cachesize;
 
 static int     nfsd_cache_append(struct svc_rqst *rqstp, struct kvec *vec);
 static void    cache_cleaner_func(struct work_struct *unused);
-static long    nfsd_reply_cache_count(struct shrinker *shrink,
-                                      struct shrink_control *sc);
-static long    nfsd_reply_cache_scan(struct shrinker *shrink,
-                                     struct shrink_control *sc);
+static unsigned long nfsd_reply_cache_count(struct shrinker *shrink,
+                                           struct shrink_control *sc);
+static unsigned long nfsd_reply_cache_scan(struct shrinker *shrink,
+                                          struct shrink_control *sc);
 
 static struct shrinker nfsd_reply_cache_shrinker = {
        .scan_objects = nfsd_reply_cache_scan,
@@ -270,10 +270,10 @@ cache_cleaner_func(struct work_struct *unused)
        spin_unlock(&cache_lock);
 }
 
-static long
+static unsigned long
 nfsd_reply_cache_count(struct shrinker *shrink, struct shrink_control *sc)
 {
-       long num;
+       unsigned long num;
 
        spin_lock(&cache_lock);
        num = num_drc_entries;
@@ -282,10 +282,11 @@ nfsd_reply_cache_count(struct shrinker *shrink, struct shrink_control *sc)
        return num;
 }
 
-static long
+static unsigned long
 nfsd_reply_cache_scan(struct shrinker *shrink, struct shrink_control *sc)
 {
-       long freed;
+       unsigned long freed;
+
        spin_lock(&cache_lock);
        freed = prune_cache_entries();
        spin_unlock(&cache_lock);
index 930a1b7ada568aa8797307792afdb80b0328fb28..b3d1ac9eb03023acf446d2c14ba96a148e1bed2b 100644 (file)
@@ -687,12 +687,12 @@ int dquot_quota_sync(struct super_block *sb, int type)
 }
 EXPORT_SYMBOL(dquot_quota_sync);
 
-static long
+static unsigned long
 dqcache_shrink_scan(struct shrinker *shrink, struct shrink_control *sc)
 {
        struct list_head *head;
        struct dquot *dquot;
-       long freed = 0;
+       unsigned long freed = 0;
 
        head = free_dquots.prev;
        while (head != &free_dquots && sc->nr_to_scan) {
@@ -708,7 +708,7 @@ dqcache_shrink_scan(struct shrinker *shrink, struct shrink_control *sc)
        return freed;
 }
 
-static long
+static unsigned long
 dqcache_shrink_count(struct shrinker *shrink, struct shrink_control *sc)
 {
        return vfs_pressure_ratio(
index e2cf4cbc050ea0ea27a445049b8f445f20ba19e3..68ce39965f0fc0ece7e44cce442a08928fe243c8 100644 (file)
@@ -277,9 +277,10 @@ static int kick_a_thread(void)
        return 0;
 }
 
-long ubifs_shrink_count(struct shrinker *shrink, struct shrink_control *sc)
+unsigned long ubifs_shrink_count(struct shrinker *shrink,
+                                struct shrink_control *sc)
 {
-       long clean_zn_cnt = atomic_long_read(&ubifs_clean_zn_cnt);
+       unsigned long clean_zn_cnt = atomic_long_read(&ubifs_clean_zn_cnt);
 
        /*
         * Due to the way UBIFS updates the clean znode counter it may
@@ -288,10 +289,12 @@ long ubifs_shrink_count(struct shrinker *shrink, struct shrink_control *sc)
        return clean_zn_cnt >= 0 ? clean_zn_cnt : 1;
 }
 
-long ubifs_shrink_scan(struct shrinker *shrink, struct shrink_control *sc)
+unsigned long ubifs_shrink_scan(struct shrinker *shrink,
+                               struct shrink_control *sc)
 {
-       int nr = sc->nr_to_scan;
-       int freed, contention = 0;
+       unsigned long nr = sc->nr_to_scan;
+       int contention = 0;
+       unsigned long freed;
        long clean_zn_cnt = atomic_long_read(&ubifs_clean_zn_cnt);
 
        if (!clean_zn_cnt) {
@@ -324,6 +327,6 @@ long ubifs_shrink_scan(struct shrinker *shrink, struct shrink_control *sc)
        }
 
 out:
-       dbg_tnc("%d znodes were freed, requested %d", freed, nr);
+       dbg_tnc("%lu znodes were freed, requested %lu", freed, nr);
        return freed;
 }
index bcdafcc265e50b217e1b43137ce416d43da22796..e8c8cfe1435c5cd05809404ea4de182741cd3bf4 100644 (file)
@@ -1624,8 +1624,10 @@ int ubifs_tnc_start_commit(struct ubifs_info *c, struct ubifs_zbranch *zroot);
 int ubifs_tnc_end_commit(struct ubifs_info *c);
 
 /* shrinker.c */
-long ubifs_shrink_scan(struct shrinker *shrink, struct shrink_control *sc);
-long ubifs_shrink_count(struct shrinker *shrink, struct shrink_control *sc);
+unsigned long ubifs_shrink_scan(struct shrinker *shrink,
+                               struct shrink_control *sc);
+unsigned long ubifs_shrink_count(struct shrinker *shrink,
+                                struct shrink_control *sc);
 
 /* commit.c */
 int ubifs_bg_thread(void *info);