The patch titled Subject: dax: fix dax_pmd_dbg build warning has been removed from the -mm tree. Its filename was dax-add-support-for-fsync-sync-v6-fix.patch This patch was dropped because it was folded into dax-add-support-for-fsync-sync.patch ------------------------------------------------------ From: Dan Williams <dan.j.williams@xxxxxxxxx> Subject: dax: fix dax_pmd_dbg build warning 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, Signed-off-by: Dan Williams <dan.j.williams@xxxxxxxxx> Cc: Ross Zwisler <ross.zwisler@xxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/dax.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/dax.c~dax-add-support-for-fsync-sync-v6-fix fs/dax.c --- a/fs/dax.c~dax-add-support-for-fsync-sync-v6-fix +++ a/fs/dax.c @@ -914,7 +914,7 @@ int __dax_pmd_fault(struct vm_area_struc 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; } _ Patches currently in -mm which might be from dan.j.williams@xxxxxxxxx are dax-add-support-for-fsync-sync.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html