summaryrefslogtreecommitdiff
path: root/fs/xfs
diff options
context:
space:
mode:
authorAndrew Morton <akpm@linux-foundation.org>2013-08-28 00:18:06 (GMT)
committerAl Viro <viro@zeniv.linux.org.uk>2013-09-10 22:56:31 (GMT)
commitaddbda40bed47d8942658fca93e14b5f1cbf009a (patch)
treec5423586f0b01c4f950d23262d06957b3fa22759 /fs/xfs
parente80dfa19976b884db1ac2bc5d7d6ca0a4027bd1c (diff)
downloadlinux-fsl-qoriq-addbda40bed47d8942658fca93e14b5f1cbf009a.tar.xz
xfs-convert-buftarg-lru-to-generic-code-fix
fix warnings Cc: Dave Chinner <dchinner@redhat.com> Cc: Glauber Costa <glommer@openvz.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/xfs')
-rw-r--r--fs/xfs/xfs_buf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/xfs/xfs_buf.c b/fs/xfs/xfs_buf.c
index 665ff792..76c595a 100644
--- a/fs/xfs/xfs_buf.c
+++ b/fs/xfs/xfs_buf.c
@@ -1536,7 +1536,7 @@ xfs_buftarg_isolate(
return LRU_REMOVED;
}
-static long
+static unsigned long
xfs_buftarg_shrink_scan(
struct shrinker *shrink,
struct shrink_control *sc)
@@ -1544,7 +1544,7 @@ xfs_buftarg_shrink_scan(
struct xfs_buftarg *btp = container_of(shrink,
struct xfs_buftarg, bt_shrinker);
LIST_HEAD(dispose);
- long freed;
+ unsigned long freed;
unsigned long nr_to_scan = sc->nr_to_scan;
freed = list_lru_walk_node(&btp->bt_lru, sc->nid, xfs_buftarg_isolate,
@@ -1560,7 +1560,7 @@ xfs_buftarg_shrink_scan(
return freed;
}
-static long
+static unsigned long
xfs_buftarg_shrink_count(
struct shrinker *shrink,
struct shrink_control *sc)