summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Morton <akpm@linux-foundation.org>2013-07-19 09:59:59 +1000
committerStephen Rothwell <sfr@canb.auug.org.au>2013-07-19 13:11:29 +1000
commitf6a64719c5375051b8cff9f0457ceee8967867a1 (patch)
treed801054336fb1b2b50d523b03cc92544811352c9
parenta986c88a83d01c35b485d527b5e61f1ec6650311 (diff)
xfs-convert-dquot-cache-lru-to-list_lru-fix
fix warnings Cc: Dave Chinner <dchinner@redhat.com> Cc: Glauber Costa <glommer@openvz.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
-rw-r--r--fs/xfs/xfs_qm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/xfs/xfs_qm.c b/fs/xfs/xfs_qm.c
index ce2120766e7a..6c4a587aac71 100644
--- a/fs/xfs/xfs_qm.c
+++ b/fs/xfs/xfs_qm.c
@@ -766,7 +766,7 @@ out_unlock_dirty:
return 3;
}
-static long
+static unsigned long
xfs_qm_shrink_scan(
struct shrinker *shrink,
struct shrink_control *sc)
@@ -774,7 +774,7 @@ xfs_qm_shrink_scan(
struct xfs_quotainfo *qi = container_of(shrink,
struct xfs_quotainfo, qi_shrinker);
struct xfs_qm_isolate isol;
- long freed;
+ unsigned long freed;
int error;
unsigned long nr_to_scan = sc->nr_to_scan;
@@ -802,7 +802,7 @@ xfs_qm_shrink_scan(
return freed;
}
-static long
+static unsigned long
xfs_qm_shrink_count(
struct shrinker *shrink,
struct shrink_control *sc)