From: Brian Behlendorf Date: Fri, 19 Aug 2011 21:49:49 +0000 (-0700) Subject: Fix incompatible pointer type warning X-Git-Tag: zfs-0.6.0-rc6~26 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=95d9fd028b9a27294a1b807915de17877563bd6d;p=zfs 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 --- 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