diff mbox

[1,of,2] DM Exception Store: return zero when empty

Message ID 200909231524.n8NFOw03029884@hydrogen.msp.redhat.com (mailing list archive)
State Superseded, archived
Delegated to: Alasdair Kergon
Headers show

Commit Message

Jonthan Brassow Sept. 23, 2009, 3:24 p.m. UTC
Patch name: dm-exception-store-return-zero-when-empty.patch

When the snapshot is empty, return 0 as the number of allocated sectors.
This will be needed to properly notify userspace that merging is finished.

Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
Reviewed-by: Mike Snitzer <snitzer@redhat.com>
Reviewed-by: Jonathan Brassow <jbrassow@redhat.com>

--
dm-devel mailing list
dm-devel@redhat.com
https://www.redhat.com/mailman/listinfo/dm-devel

Comments

Alasdair G Kergon Sept. 24, 2009, 12:51 p.m. UTC | #1
On Wed, Sep 23, 2009 at 10:24:58AM -0500, Jon Brassow wrote:
> When the snapshot is empty, return 0 as the number of allocated sectors.
> This will be needed to properly notify userspace that merging is finished.

A kernel/userspace interface change and visible to the user in their tools.
Needs discussion.
 
Alasdair

--
dm-devel mailing list
dm-devel@redhat.com
https://www.redhat.com/mailman/listinfo/dm-devel
Mike Snitzer Sept. 29, 2009, 3:38 p.m. UTC | #2
On Thu, Sep 24 2009 at  8:51am -0400,
Alasdair G Kergon <agk@redhat.com> wrote:

> On Wed, Sep 23, 2009 at 10:24:58AM -0500, Jon Brassow wrote:
> > When the snapshot is empty, return 0 as the number of allocated sectors.
> > This will be needed to properly notify userspace that merging is finished.
> 
> A kernel/userspace interface change and visible to the user in their tools.
> Needs discussion.

I'd be quite surprised if any users' scripts had the intelligence that
the persistent exception store always used the first 2 chunks.

I view this patch as a fix and would like to see it pushed for
2.6.32-rcX

This patch is also a prerequisite for some patches I just posted to
lvm-devel:
http://www.redhat.com/archives/lvm-devel/2009-September/msg00145.html

--
dm-devel mailing list
dm-devel@redhat.com
https://www.redhat.com/mailman/listinfo/dm-devel
diff mbox

Patch

Index: linux-2.6/drivers/md/dm-snap-persistent.c
===================================================================
--- linux-2.6.orig/drivers/md/dm-snap-persistent.c
+++ linux-2.6/drivers/md/dm-snap-persistent.c
@@ -492,8 +492,12 @@  static struct pstore *get_info(struct dm
 static void persistent_fraction_full(struct dm_exception_store *store,
 				     sector_t *numerator, sector_t *denominator)
 {
-	*numerator = get_info(store)->next_free * store->chunk_size;
-	*denominator = get_dev_size(store->cow->bdev);
+	/*
+	 * Compensate for the first two chunks that are always allocated.
+	 * Make sure that we return 0 when there are no exceptions.
+	 */
+	*numerator = (get_info(store)->next_free - 2) * store->chunk_size;
+	*denominator = get_dev_size(store->cow->bdev) - 2 * store->chunk_size;
 }
 
 static void persistent_dtr(struct dm_exception_store *store)