All of lore.kernel.org
 help / color / mirror / Atom feed
From: Alasdair G Kergon <agk@redhat.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: dm-devel@redhat.com, linux-kernel@vger.kernel.org,
	Mike Snitzer <snitzer@redhat.com>, Milan Broz <mbroz@redhat.com>,
	Zdenek Kabelac <zkabelac@redhat.com>,
	Joe Thornber <thornber@redhat.com>,
	Jonathan Brassow <jbrassow@redhat.com>,
	Mandeep Singh Baines <msb@chromium.org>,
	Mikulas Patocka <mpatocka@redhat.com>,
	Namhyung Kim <namhyung@gmail.com>,
	Jens Axboe <jaxboe@fusionio.com>,
	"Martin K. Petersen" <martin.petersen@oracle.com>,
	Neil Brown <neilb@suse.de>
Subject: [git pull] device-mapper enhancements for 3.2
Date: Mon, 31 Oct 2011 21:12:40 +0000	[thread overview]
Message-ID: <20111031211240.GK2840@agk-dp.fab.redhat.com> (raw)

Please pull from:

  http://people.redhat.com/agk/git/linux-dm for-linus

to get the following device-mapper enhancements for inclusion in 3.2.

The highlight here is thin provisioning.  This includes a new snapshot
implementation that, unlike the existing implementation, performs well with
multiple snapshots of the same device (e.g. for backups).
More-detailed documentation is included in-tree.

The development of userspace LVM support is progressing well and and we
expect to have the first release of this out in the next month or so.
(To try this, people should check out git://sources.redhat.com/git/lvm2 and
follow lvm-devel@redhat.com.)

Thanks,
Alasdair

Alasdair G Kergon (4):
      dm table: add singleton feature
      dm table: add always writeable feature
      dm table: add immutable feature
      dm: export dm get md

Joe Thornber (2):
      dm: add persistent data library
      dm: add thin provisioning target

Jonathan Brassow (1):
      dm log userspace: fix comment hyphens

Jonathan E Brassow (2):
      dm log userspace: add log device dependency
      dm: raid fix device status indicator when array initializing

Mandeep Singh Baines (1):
      dm table: propagate non rotational flag

Mikulas Patocka (2):
      dm kcopyd: add dm_kcopyd_zero to zero an area
      dm: add bufio

Namhyung Kim (2):
      dm: use local printk ratelimit
      dm: remove superfluous smp_mb

 Documentation/device-mapper/dm-log.txt             |    2 +-
 Documentation/device-mapper/persistent-data.txt    |   84 +
 Documentation/device-mapper/thin-provisioning.txt  |  285 +++
 drivers/md/Kconfig                                 |   36 +
 drivers/md/Makefile                                |    4 +
 drivers/md/dm-bufio.c                              | 1699 ++++++++++++++
 drivers/md/dm-bufio.h                              |  112 +
 drivers/md/dm-ioctl.c                              |   11 +
 drivers/md/dm-kcopyd.c                             |   31 +-
 drivers/md/dm-log-userspace-base.c                 |   37 +-
 drivers/md/dm-raid.c                               |   48 +-
 drivers/md/dm-table.c                              |   73 +
 drivers/md/dm-thin-metadata.c                      | 1391 +++++++++++
 drivers/md/dm-thin-metadata.h                      |  156 ++
 drivers/md/dm-thin.c                               | 2428 ++++++++++++++++++++
 drivers/md/dm.c                                    |   21 +-
 drivers/md/dm.h                                    |    2 +
 drivers/md/persistent-data/Kconfig                 |    8 +
 drivers/md/persistent-data/Makefile                |   11 +
 drivers/md/persistent-data/dm-block-manager.c      |  620 +++++
 drivers/md/persistent-data/dm-block-manager.h      |  123 +
 drivers/md/persistent-data/dm-btree-internal.h     |  137 ++
 drivers/md/persistent-data/dm-btree-remove.c       |  566 +++++
 drivers/md/persistent-data/dm-btree-spine.c        |  244 ++
 drivers/md/persistent-data/dm-btree.c              |  805 +++++++
 drivers/md/persistent-data/dm-btree.h              |  145 ++
 .../persistent-data/dm-persistent-data-internal.h  |   19 +
 drivers/md/persistent-data/dm-space-map-checker.c  |  437 ++++
 drivers/md/persistent-data/dm-space-map-checker.h  |   26 +
 drivers/md/persistent-data/dm-space-map-common.c   |  705 ++++++
 drivers/md/persistent-data/dm-space-map-common.h   |  126 +
 drivers/md/persistent-data/dm-space-map-disk.c     |  335 +++
 drivers/md/persistent-data/dm-space-map-disk.h     |   25 +
 drivers/md/persistent-data/dm-space-map-metadata.c |  596 +++++
 drivers/md/persistent-data/dm-space-map-metadata.h |   33 +
 drivers/md/persistent-data/dm-space-map.h          |  134 ++
 .../md/persistent-data/dm-transaction-manager.c    |  400 ++++
 .../md/persistent-data/dm-transaction-manager.h    |  130 ++
 include/linux/device-mapper.h                      |   45 +-
 include/linux/dm-ioctl.h                           |    4 +-
 include/linux/dm-kcopyd.h                          |    4 +
 include/linux/dm-log-userspace.h                   |   18 +-
 42 files changed, 12079 insertions(+), 37 deletions(-)
 create mode 100644 Documentation/device-mapper/persistent-data.txt
 create mode 100644 Documentation/device-mapper/thin-provisioning.txt
 create mode 100644 drivers/md/dm-bufio.c
 create mode 100644 drivers/md/dm-bufio.h
 create mode 100644 drivers/md/dm-thin-metadata.c
 create mode 100644 drivers/md/dm-thin-metadata.h
 create mode 100644 drivers/md/dm-thin.c
 create mode 100644 drivers/md/persistent-data/Kconfig
 create mode 100644 drivers/md/persistent-data/Makefile
 create mode 100644 drivers/md/persistent-data/dm-block-manager.c
 create mode 100644 drivers/md/persistent-data/dm-block-manager.h
 create mode 100644 drivers/md/persistent-data/dm-btree-internal.h
 create mode 100644 drivers/md/persistent-data/dm-btree-remove.c
 create mode 100644 drivers/md/persistent-data/dm-btree-spine.c
 create mode 100644 drivers/md/persistent-data/dm-btree.c
 create mode 100644 drivers/md/persistent-data/dm-btree.h
 create mode 100644 drivers/md/persistent-data/dm-persistent-data-internal.h
 create mode 100644 drivers/md/persistent-data/dm-space-map-checker.c
 create mode 100644 drivers/md/persistent-data/dm-space-map-checker.h
 create mode 100644 drivers/md/persistent-data/dm-space-map-common.c
 create mode 100644 drivers/md/persistent-data/dm-space-map-common.h
 create mode 100644 drivers/md/persistent-data/dm-space-map-disk.c
 create mode 100644 drivers/md/persistent-data/dm-space-map-disk.h
 create mode 100644 drivers/md/persistent-data/dm-space-map-metadata.c
 create mode 100644 drivers/md/persistent-data/dm-space-map-metadata.h
 create mode 100644 drivers/md/persistent-data/dm-space-map.h
 create mode 100644 drivers/md/persistent-data/dm-transaction-manager.c
 create mode 100644 drivers/md/persistent-data/dm-transaction-manager.h

             reply	other threads:[~2011-10-31 21:12 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-10-31 21:12 Alasdair G Kergon [this message]
2011-11-01 22:05 ` [git pull] device-mapper enhancements for 3.2 Linus Torvalds
2011-11-01 22:05   ` Linus Torvalds
2011-11-02 10:25   ` [dm-devel] " Alasdair G Kergon

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=20111031211240.GK2840@agk-dp.fab.redhat.com \
    --to=agk@redhat.com \
    --cc=dm-devel@redhat.com \
    --cc=jaxboe@fusionio.com \
    --cc=jbrassow@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=martin.petersen@oracle.com \
    --cc=mbroz@redhat.com \
    --cc=mpatocka@redhat.com \
    --cc=msb@chromium.org \
    --cc=namhyung@gmail.com \
    --cc=neilb@suse.de \
    --cc=snitzer@redhat.com \
    --cc=thornber@redhat.com \
    --cc=torvalds@linux-foundation.org \
    --cc=zkabelac@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.