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: Kiyoshi Ueda <k-ueda@ct.jp.nec.com>,
	"Martin K. Petersen" <martin.petersen@oracle.com>,
	linux-kernel@vger.kernel.org, dm-devel@redhat.com,
	Mikulas Patocka <mpatocka@redhat.com>,
	Heinz Mauelshagen <mauelshagen@redhat.com>,
	stable@kernel.org, Milan Broz <mbroz@redhat.com>
Subject: [git pull] Additional device-mapper patches for 2.6.28
Date: Tue, 21 Oct 2008 17:59:01 +0100	[thread overview]
Message-ID: <20081021165901.GO5098@agk.fab.redhat.com> (raw)

Please pull from:

  master.kernel.org:/pub/scm/linux/kernel/git/agk/linux-2.6-dm.git
 
to get the following additional device-mapper patches for 2.6.28:
  
Alasdair G Kergon (1):
      dm exception store: refactor zero_area

Heinz Mauelshagen (1):
      dm raid1: separate region_hash interface part1

Kazuo Ito (1):
      dm kcopyd: avoid queue shuffle

Kiyoshi Ueda (2):
      dm: remove unused flush_all
      dm: tidy local_init

Martin K. Petersen (1):
      dm: mark split bio as cloned

Mikulas Patocka (5):
      dm snapshot: fix primary_pe race
      dm snapshot: drop unused last_percent
      dm exception store: fix misordered writes
      dm: publish array_too_big
      dm: remove dm header from targets

Milan Broz (3):
      dm crypt: tidy sector
      dm crypt: fix async split
      dm crypt: remove waitqueue

 drivers/md/Makefile             |    2 +-
 drivers/md/dm-crypt.c           |   56 +++-
 drivers/md/dm-delay.c           |    3 +-
 drivers/md/dm-exception-store.c |  108 ++++--
 drivers/md/dm-io.c              |    2 +-
 drivers/md/dm-kcopyd.c          |   14 +-
 drivers/md/dm-linear.c          |    2 +-
 drivers/md/dm-log.c             |    2 +-
 drivers/md/dm-mpath.c           |    3 +-
 drivers/md/dm-path-selector.c   |    3 +-
 drivers/md/dm-raid1.c           |  791 +++++----------------------------------
 drivers/md/dm-region-hash.c     |  704 ++++++++++++++++++++++++++++++++++
 drivers/md/dm-round-robin.c     |    3 +-
 drivers/md/dm-snap.c            |   11 +-
 drivers/md/dm-snap.h            |    5 +-
 drivers/md/dm-stripe.c          |    6 +-
 drivers/md/dm-zero.c            |    2 +-
 drivers/md/dm.c                 |   49 +--
 drivers/md/dm.h                 |    9 -
 include/linux/device-mapper.h   |    3 +
 include/linux/dm-region-hash.h  |  104 +++++
 21 files changed, 1084 insertions(+), 798 deletions(-)
 create mode 100644 drivers/md/dm-region-hash.c
 create mode 100644 include/linux/dm-region-hash.h

Thanks,
Alasdair
-- 
agk@redhat.com

WARNING: multiple messages have this Message-ID (diff)
From: Alasdair G Kergon <agk@redhat.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: dm-devel@redhat.com, linux-kernel@vger.kernel.org,
	Heinz Mauelshagen <mauelshagen@redhat.com>,
	Kiyoshi Ueda <k-ueda@ct.jp.nec.com>,
	Mikulas Patocka <mpatocka@redhat.com>,
	Milan Broz <mbroz@redhat.com>,
	Kazuo Ito <ito.kazuo@oss.ntt.co.jp>,
	"Martin K. Petersen" <martin.petersen@oracle.com>,
	stable@kernel.org
Subject: [git pull] Additional device-mapper patches for 2.6.28
Date: Tue, 21 Oct 2008 17:59:01 +0100	[thread overview]
Message-ID: <20081021165901.GO5098@agk.fab.redhat.com> (raw)

Please pull from:

  master.kernel.org:/pub/scm/linux/kernel/git/agk/linux-2.6-dm.git
 
to get the following additional device-mapper patches for 2.6.28:
  
Alasdair G Kergon (1):
      dm exception store: refactor zero_area

Heinz Mauelshagen (1):
      dm raid1: separate region_hash interface part1

Kazuo Ito (1):
      dm kcopyd: avoid queue shuffle

Kiyoshi Ueda (2):
      dm: remove unused flush_all
      dm: tidy local_init

Martin K. Petersen (1):
      dm: mark split bio as cloned

Mikulas Patocka (5):
      dm snapshot: fix primary_pe race
      dm snapshot: drop unused last_percent
      dm exception store: fix misordered writes
      dm: publish array_too_big
      dm: remove dm header from targets

Milan Broz (3):
      dm crypt: tidy sector
      dm crypt: fix async split
      dm crypt: remove waitqueue

 drivers/md/Makefile             |    2 +-
 drivers/md/dm-crypt.c           |   56 +++-
 drivers/md/dm-delay.c           |    3 +-
 drivers/md/dm-exception-store.c |  108 ++++--
 drivers/md/dm-io.c              |    2 +-
 drivers/md/dm-kcopyd.c          |   14 +-
 drivers/md/dm-linear.c          |    2 +-
 drivers/md/dm-log.c             |    2 +-
 drivers/md/dm-mpath.c           |    3 +-
 drivers/md/dm-path-selector.c   |    3 +-
 drivers/md/dm-raid1.c           |  791 +++++----------------------------------
 drivers/md/dm-region-hash.c     |  704 ++++++++++++++++++++++++++++++++++
 drivers/md/dm-round-robin.c     |    3 +-
 drivers/md/dm-snap.c            |   11 +-
 drivers/md/dm-snap.h            |    5 +-
 drivers/md/dm-stripe.c          |    6 +-
 drivers/md/dm-zero.c            |    2 +-
 drivers/md/dm.c                 |   49 +--
 drivers/md/dm.h                 |    9 -
 include/linux/device-mapper.h   |    3 +
 include/linux/dm-region-hash.h  |  104 +++++
 21 files changed, 1084 insertions(+), 798 deletions(-)
 create mode 100644 drivers/md/dm-region-hash.c
 create mode 100644 include/linux/dm-region-hash.h

Thanks,
Alasdair
-- 
agk@redhat.com

             reply	other threads:[~2008-10-21 16:59 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-10-21 16:59 Alasdair G Kergon [this message]
2008-10-21 16:59 ` [git pull] Additional device-mapper patches for 2.6.28 Alasdair G Kergon
2008-10-21 17:04 ` [stable] " Greg KH
2008-10-21 17:04   ` Greg KH
2008-10-21 17:12   ` Mikulas Patocka
2008-10-21 17:12     ` Mikulas Patocka
2008-10-21 17:31     ` Greg KH
2008-10-21 17:35   ` Alasdair G Kergon
2008-10-21 17:35     ` 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=20081021165901.GO5098@agk.fab.redhat.com \
    --to=agk@redhat.com \
    --cc=dm-devel@redhat.com \
    --cc=k-ueda@ct.jp.nec.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=martin.petersen@oracle.com \
    --cc=mauelshagen@redhat.com \
    --cc=mbroz@redhat.com \
    --cc=mpatocka@redhat.com \
    --cc=stable@kernel.org \
    --cc=torvalds@linux-foundation.org \
    /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.