Fixes below warning from commit 3cb108f941deb "dax-add-support-for-fsync-sync-v6" in -next. fs/dax.c: In function ‘__dax_pmd_fault’: fs/dax.c:916:15: warning: passing argument 1 of ‘__dax_dbg’ from incompatible pointer type dax_pmd_dbg(bdev, address, ^ fs/dax.c:738:13: note: expected ‘struct buffer_head *’ but argument is of type ‘struct block_device *’ static void __dax_dbg(struct buffer_head *bh, unsigned long address, Cc: Ross Zwisler <ross.zwisler@xxxxxxxxxxxxxxx> Signed-off-by: Dan Williams <dan.j.williams@xxxxxxxxx> --- fs/dax.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/dax.c b/fs/dax.c index 4ff61b412383..41cf4ee0b859 100644 --- a/fs/dax.c +++ b/fs/dax.c @@ -913,7 +913,7 @@ int __dax_pmd_fault(struct vm_area_struct *vma, unsigned long address, error = dax_radix_entry(mapping, pgoff, dax.sector, true, true); if (error) { - dax_pmd_dbg(bdev, address, + dax_pmd_dbg(&bh, address, "PMD radix insertion failed"); goto fallback; } -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>