All of lore.kernel.org
 help / color / mirror / Atom feed
From: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
To: dm-devel@redhat.com
Cc: mpatocka@redhat.com
Subject: Re: [PATCH 14/14] dm-multisnap-daniel
Date: Tue, 2 Mar 2010 09:57:31 +0900	[thread overview]
Message-ID: <20100302095648E.fujita.tomonori@lab.ntt.co.jp> (raw)
In-Reply-To: <1267489438-6271-15-git-send-email-snitzer@redhat.com>

On Mon,  1 Mar 2010 19:23:58 -0500
Mike Snitzer <snitzer@redhat.com> wrote:

> From: Mikulas Patocka <mpatocka@redhat.com>
> 
> An implementation of snapshot store.
> Designed by Daniel Phillips, ported to kernelspace by Fujita Tomonorig.

Thanks for putting my name here, however, I prefer "Fujita Tomonori" :)


> This implementation plugs as a module into dm-multisnapshot interface.
> 
> The interface is almost the same as in Mikulas' exception store. You have to
> specify "daniel" instead of "mikulas" as a type of exception store.
> The only supported chunk size is 16384 bytes (but the code is general enough and
> this restriction may be removed in the future).
> 
> Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
> ---
>  drivers/md/Kconfig               |   14 +
>  drivers/md/Makefile              |    2 +
>  drivers/md/dm-multisnap-daniel.c | 1711 ++++++++++++++++++++++++++++++++++++++
>  3 files changed, 1727 insertions(+), 0 deletions(-)
>  create mode 100644 drivers/md/dm-multisnap-daniel.c
> 
> diff --git a/drivers/md/Kconfig b/drivers/md/Kconfig
> index 0c3ce3b..c30bf70 100644
> --- a/drivers/md/Kconfig
> +++ b/drivers/md/Kconfig
> @@ -268,6 +268,20 @@ config DM_MULTISNAPSHOT_MIKULAS
>  	  A B+-tree-based log-structured storage allowing unlimited
>  	  number of snapshots.
>  
> +config DM_MULTISNAPSHOT_DANIEL
> +	tristate "Daniel's snapshot store"
> +	depends on DM_MULTISNAPSHOT
> +	---help---
> +	  Daniel Philips' exception store. The data structures were
> +	  designed by Daniel Phillips for Zumastore project, a porting
> +	  to kernel space was done by Fujita Tomonorig.

s/Tomonorig/Tomonori/;


(snip)

> +static int __init dm_multisnapshot_daniel_module_init(void)
> +{
> +	return dm_multisnap_register_exception_store(&dm_multisnap_daniel_store);
> +}
> +
> +static void __exit dm_multisnapshot_daniel_module_exit(void)
> +{
> +	dm_multisnap_unregister_exception_store(&dm_multisnap_daniel_store);
> +}
> +
> +module_init(dm_multisnapshot_daniel_module_init);
> +module_exit(dm_multisnapshot_daniel_module_exit);
> +
> +MODULE_DESCRIPTION(DM_NAME " multisnapshot Fujita/Daniel's exceptions store");
> +MODULE_AUTHOR("Fujita Tomonorig, Daniel Phillips");

s/Tomonorig/Tomonori/;

> +MODULE_LICENSE("GPL");


Thanks,

  reply	other threads:[~2010-03-02  0:57 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-03-02  0:23 [PATCH 00/14] mikulas' shared snapshot patches Mike Snitzer
2010-03-02  0:23 ` [PATCH 01/14] dm-multisnap-common Mike Snitzer
2010-03-02  0:23 ` [PATCH 02/14] dm-bufio Mike Snitzer
2010-03-02  0:23 ` [PATCH 03/14] dm-multisnap-mikulas-headers Mike Snitzer
2010-03-05 22:46   ` Mike Snitzer
2010-03-06  1:54     ` Mike Snitzer
2010-03-09  3:08     ` Mikulas Patocka
2010-03-09  3:30       ` Mike Snitzer
2010-03-02  0:23 ` [PATCH 04/14] dm-multisnap-mikulas-alloc Mike Snitzer
2010-03-02  0:23 ` [PATCH 05/14] dm-multisnap-mikulas-blocks Mike Snitzer
2010-03-02  0:23 ` [PATCH 06/14] dm-multisnap-mikulas-btree Mike Snitzer
2010-03-02  0:23 ` [PATCH 07/14] dm-multisnap-mikulas-commit Mike Snitzer
2010-03-02  0:23 ` [PATCH 08/14] dm-multisnap-mikulas-delete Mike Snitzer
2010-03-02  0:23 ` [PATCH 09/14] dm-multisnap-mikulas-freelist Mike Snitzer
2010-03-02  0:23 ` [PATCH 10/14] dm-multisnap-mikulas-io Mike Snitzer
2010-03-02  0:23 ` [PATCH 11/14] dm-multisnap-mikulas-snaps Mike Snitzer
2010-03-02  0:23 ` [PATCH 12/14] dm-multisnap-mikulas-common Mike Snitzer
2010-03-02  0:23 ` [PATCH 13/14] dm-multisnap-mikulas-config Mike Snitzer
2010-03-02  0:23 ` [PATCH 14/14] dm-multisnap-daniel Mike Snitzer
2010-03-02  0:57   ` FUJITA Tomonori [this message]
2010-03-02  0:32 ` [PATCH 00/14] mikulas' shared snapshot patches Mike Snitzer
2010-03-02 14:56 ` Mike Snitzer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20100302095648E.fujita.tomonori@lab.ntt.co.jp \
    --to=fujita.tomonori@lab.ntt.co.jp \
    --cc=dm-devel@redhat.com \
    --cc=mpatocka@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.