From 95d9fd028b9a27294a1b807915de17877563bd6d Mon Sep 17 00:00:00 2001 From: Brian Behlendorf Date: Fri, 19 Aug 2011 14:49:49 -0700 Subject: Fix incompatible pointer type warning This warning was accidentally introduced by commit f3ab88d6461dec46dea240763843f66300facfab which updated the .readpages() implementation. The fix is to simply cast the helper function to the appropriate type when passed. Signed-off-by: Brian Behlendorf --- module/zfs/zpl_file.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'module/zfs') diff --git a/module/zfs/zpl_file.c b/module/zfs/zpl_file.c index 53921d1a7..af46afddf 100644 --- a/module/zfs/zpl_file.c +++ b/module/zfs/zpl_file.c @@ -305,7 +305,8 @@ static int zpl_readpages(struct file *filp, struct address_space *mapping, struct list_head *pages, unsigned nr_pages) { - return (read_cache_pages(mapping, pages, zpl_readpage, filp)); + return (read_cache_pages(mapping, pages, + (filler_t *)zpl_readpage, filp)); } int -- cgit v1.2.3