dm-snap-transient.c 2.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
/*
 * Copyright (C) 2001-2002 Sistina Software (UK) Limited.
 * Copyright (C) 2006-2008 Red Hat GmbH
 *
 * This file is released under the GPL.
 */

#include "dm-exception-store.h"
#include "dm-snap.h"

#include <linux/mm.h>
#include <linux/pagemap.h>
#include <linux/vmalloc.h>
#include <linux/slab.h>
#include <linux/dm-io.h>

#define DM_MSG_PREFIX "transient snapshot"

/*-----------------------------------------------------------------
 * Implementation of the store for non-persistent snapshots.
 *---------------------------------------------------------------*/
struct transient_c {
	sector_t next_free;
};

static void transient_destroy(struct dm_exception_store *store)
{
	kfree(store->context);
}

31 32 33 34
static int transient_read_metadata(struct dm_exception_store *store,
				   int (*callback)(void *callback_context,
						   chunk_t old, chunk_t new),
				   void *callback_context)
35 36 37 38
{
	return 0;
}

39 40
static int transient_prepare_exception(struct dm_exception_store *store,
				       struct dm_snap_exception *e)
41
{
42
	struct transient_c *tc = store->context;
43 44 45 46 47 48 49 50 51 52 53
	sector_t size = get_dev_size(store->snap->cow->bdev);

	if (size < (tc->next_free + store->snap->chunk_size))
		return -1;

	e->new_chunk = sector_to_chunk(store->snap, tc->next_free);
	tc->next_free += store->snap->chunk_size;

	return 0;
}

54 55 56 57
static void transient_commit_exception(struct dm_exception_store *store,
				       struct dm_snap_exception *e,
				       void (*callback) (void *, int success),
				       void *callback_context)
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
{
	/* Just succeed */
	callback(callback_context, 1);
}

static void transient_fraction_full(struct dm_exception_store *store,
				    sector_t *numerator, sector_t *denominator)
{
	*numerator = ((struct transient_c *) store->context)->next_free;
	*denominator = get_dev_size(store->snap->cow->bdev);
}

int dm_create_transient(struct dm_exception_store *store)
{
	struct transient_c *tc;

74 75 76 77 78 79
	store->type.dtr = transient_destroy;
	store->type.read_metadata = transient_read_metadata;
	store->type.prepare_exception = transient_prepare_exception;
	store->type.commit_exception = transient_commit_exception;
	store->type.drop_snapshot = NULL;
	store->type.fraction_full = transient_fraction_full;
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98

	tc = kmalloc(sizeof(struct transient_c), GFP_KERNEL);
	if (!tc)
		return -ENOMEM;

	tc->next_free = 0;
	store->context = tc;

	return 0;
}

int dm_transient_snapshot_init(void)
{
	return 0;
}

void dm_transient_snapshot_exit(void)
{
}