Start using dax_pgoff() instead of bdev_dax_pgoff().

Signed-off-by: Vivek Goyal <[email protected]>
---
 drivers/dax/super.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/dax/super.c b/drivers/dax/super.c
index e9daa30e4250..ee35ecc61545 100644
--- a/drivers/dax/super.c
+++ b/drivers/dax/super.c
@@ -97,7 +97,7 @@ bool __generic_fsdax_supported(struct dax_device *dax_dev,
                return false;
        }
 
-       err = bdev_dax_pgoff(bdev, start, PAGE_SIZE, &pgoff);
+       err = dax_pgoff(get_start_sect(bdev), start, PAGE_SIZE, &pgoff);
        if (err) {
                pr_debug("%s: error: unaligned partition for dax\n",
                                bdevname(bdev, buf));
@@ -105,7 +105,7 @@ bool __generic_fsdax_supported(struct dax_device *dax_dev,
        }
 
        last_page = PFN_DOWN((start + sectors - 1) * 512) * PAGE_SIZE / 512;
-       err = bdev_dax_pgoff(bdev, last_page, PAGE_SIZE, &pgoff_end);
+       err = dax_pgoff(get_start_sect(bdev), last_page, PAGE_SIZE, &pgoff_end);
        if (err) {
                pr_debug("%s: error: unaligned partition for dax\n",
                                bdevname(bdev, buf));
-- 
2.20.1
_______________________________________________
Linux-nvdimm mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to