Re: [PATCH 09/11] dm-log-writes: add a log_writes_dax_pgoff helper

2021-11-01 Thread Mike Snitzer
On Wed, Oct 27 2021 at  9:36P -0400,
Dan Williams  wrote:

> On Sun, Oct 17, 2021 at 9:41 PM Christoph Hellwig  wrote:
> >
> > Add a helper to perform the entire remapping for DAX accesses.  This
> > helper open codes bdev_dax_pgoff given that the alignment checks have
> > already been done by the submitting file system and don't need to be
> > repeated.
> 
> Looks good.
> 
> Mike, ack?
> 

Acked-by: Mike Snitzer 

___
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/virtualization


Re: [PATCH 09/11] dm-log-writes: add a log_writes_dax_pgoff helper

2021-10-27 Thread Dan Williams
On Sun, Oct 17, 2021 at 9:41 PM Christoph Hellwig  wrote:
>
> Add a helper to perform the entire remapping for DAX accesses.  This
> helper open codes bdev_dax_pgoff given that the alignment checks have
> already been done by the submitting file system and don't need to be
> repeated.

Looks good.

Mike, ack?
___
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/virtualization


[PATCH 09/11] dm-log-writes: add a log_writes_dax_pgoff helper

2021-10-17 Thread Christoph Hellwig
Add a helper to perform the entire remapping for DAX accesses.  This
helper open codes bdev_dax_pgoff given that the alignment checks have
already been done by the submitting file system and don't need to be
repeated.

Signed-off-by: Christoph Hellwig 
---
 drivers/md/dm-log-writes.c | 42 +++---
 1 file changed, 17 insertions(+), 25 deletions(-)

diff --git a/drivers/md/dm-log-writes.c b/drivers/md/dm-log-writes.c
index 6d694526881d0..5aac60c1b774c 100644
--- a/drivers/md/dm-log-writes.c
+++ b/drivers/md/dm-log-writes.c
@@ -949,17 +949,21 @@ static int log_dax(struct log_writes_c *lc, sector_t 
sector, size_t bytes,
return 0;
 }
 
+static struct dax_device *log_writes_dax_pgoff(struct dm_target *ti,
+   pgoff_t *pgoff)
+{
+   struct log_writes_c *lc = ti->private;
+
+   *pgoff += (get_start_sect(lc->dev->bdev) >> PAGE_SECTORS_SHIFT);
+   return lc->dev->dax_dev;
+}
+
 static long log_writes_dax_direct_access(struct dm_target *ti, pgoff_t pgoff,
 long nr_pages, void **kaddr, pfn_t 
*pfn)
 {
-   struct log_writes_c *lc = ti->private;
-   sector_t sector = pgoff * PAGE_SECTORS;
-   int ret;
+   struct dax_device *dax_dev = log_writes_dax_pgoff(ti, );
 
-   ret = bdev_dax_pgoff(lc->dev->bdev, sector, nr_pages * PAGE_SIZE, 
);
-   if (ret)
-   return ret;
-   return dax_direct_access(lc->dev->dax_dev, pgoff, nr_pages, kaddr, pfn);
+   return dax_direct_access(dax_dev, pgoff, nr_pages, kaddr, pfn);
 }
 
 static size_t log_writes_dax_copy_from_iter(struct dm_target *ti,
@@ -968,11 +972,9 @@ static size_t log_writes_dax_copy_from_iter(struct 
dm_target *ti,
 {
struct log_writes_c *lc = ti->private;
sector_t sector = pgoff * PAGE_SECTORS;
+   struct dax_device *dax_dev = log_writes_dax_pgoff(ti, );
int err;
 
-   if (bdev_dax_pgoff(lc->dev->bdev, sector, ALIGN(bytes, PAGE_SIZE), 
))
-   return 0;
-
/* Don't bother doing anything if logging has been disabled */
if (!lc->logging_enabled)
goto dax_copy;
@@ -983,34 +985,24 @@ static size_t log_writes_dax_copy_from_iter(struct 
dm_target *ti,
return 0;
}
 dax_copy:
-   return dax_copy_from_iter(lc->dev->dax_dev, pgoff, addr, bytes, i);
+   return dax_copy_from_iter(dax_dev, pgoff, addr, bytes, i);
 }
 
 static size_t log_writes_dax_copy_to_iter(struct dm_target *ti,
  pgoff_t pgoff, void *addr, size_t 
bytes,
  struct iov_iter *i)
 {
-   struct log_writes_c *lc = ti->private;
-   sector_t sector = pgoff * PAGE_SECTORS;
+   struct dax_device *dax_dev = log_writes_dax_pgoff(ti, );
 
-   if (bdev_dax_pgoff(lc->dev->bdev, sector, ALIGN(bytes, PAGE_SIZE), 
))
-   return 0;
-   return dax_copy_to_iter(lc->dev->dax_dev, pgoff, addr, bytes, i);
+   return dax_copy_to_iter(dax_dev, pgoff, addr, bytes, i);
 }
 
 static int log_writes_dax_zero_page_range(struct dm_target *ti, pgoff_t pgoff,
  size_t nr_pages)
 {
-   int ret;
-   struct log_writes_c *lc = ti->private;
-   sector_t sector = pgoff * PAGE_SECTORS;
+   struct dax_device *dax_dev = log_writes_dax_pgoff(ti, );
 
-   ret = bdev_dax_pgoff(lc->dev->bdev, sector, nr_pages << PAGE_SHIFT,
-);
-   if (ret)
-   return ret;
-   return dax_zero_page_range(lc->dev->dax_dev, pgoff,
-  nr_pages << PAGE_SHIFT);
+   return dax_zero_page_range(dax_dev, pgoff, nr_pages << PAGE_SHIFT);
 }
 
 #else
-- 
2.30.2

___
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/virtualization