From: Luis Chamberlain <mcgrof@kernel.org>
To: axboe@kernel.dk, martin.petersen@oracle.com, jejb@linux.ibm.com,
kbusch@kernel.org, sagi@grimberg.me, adrian.hunter@intel.com,
beanhuo@micron.com, ulf.hansson@linaro.org, avri.altman@wdc.com,
swboyd@chromium.org, agk@redhat.com, snitzer@redhat.com,
josef@toxicpanda.com
Cc: linux-block@vger.kernel.org, bvanassche@acm.org,
linux-scsi@vger.kernel.org, linux-mmc@vger.kernel.org,
linux-kernel@vger.kernel.org, linux-nvme@lists.infradead.org,
ming.lei@redhat.com, hch@infradead.org, dm-devel@redhat.com,
nbd@other.debian.org, Luis Chamberlain <mcgrof@kernel.org>
Subject: [dm-devel] [PATCH v2 0/6] block: first batch of add_disk() error handling conversions
Date: Fri, 27 Aug 2021 12:04:58 -0700 [thread overview]
Message-ID: <20210827190504.3103362-1-mcgrof@kernel.org> (raw)
This v2 drops two of the scsi patches which Christoph pointed out were
not needed. It also fixes the nvme driver change to account for the
missing put of the ctrl. It also just appends the commits with the
respective reviewed tags. I've also dropped the mmc and dm patches
from this series as that is still pending discussion. I'll roll that
into the my next series after discussion is done.
The only patch which goes without a review tag is the nvme driver change.
These changes go rebased on Jen's latest axboe/for-next. The respective
full queue of my changes can be found on my git branch [0].
[0] https://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux-next.git/log/?h=20210827-for-axboe-add-disk-error-handling-next
Luis Chamberlain (6):
scsi/sd: add error handling support for add_disk()
scsi/sr: add error handling support for add_disk()
nvme: add error handling support for add_disk()
md: add error handling support for add_disk()
loop: add error handling support for add_disk()
nbd: add error handling support for add_disk()
drivers/block/loop.c | 9 ++++++++-
drivers/block/nbd.c | 6 +++++-
drivers/md/md.c | 7 ++++++-
drivers/nvme/host/core.c | 9 ++++++++-
drivers/scsi/sd.c | 6 +++++-
drivers/scsi/sr.c | 5 ++++-
6 files changed, 36 insertions(+), 6 deletions(-)
--
2.30.2
--
dm-devel mailing list
dm-devel@redhat.com
https://listman.redhat.com/mailman/listinfo/dm-devel
WARNING: multiple messages have this Message-ID (diff)
From: Luis Chamberlain <mcgrof@kernel.org>
To: axboe@kernel.dk, martin.petersen@oracle.com, jejb@linux.ibm.com,
kbusch@kernel.org, sagi@grimberg.me, adrian.hunter@intel.com,
beanhuo@micron.com, ulf.hansson@linaro.org, avri.altman@wdc.com,
swboyd@chromium.org, agk@redhat.com, snitzer@redhat.com,
josef@toxicpanda.com
Cc: hch@infradead.org, hare@suse.de, bvanassche@acm.org,
ming.lei@redhat.com, linux-scsi@vger.kernel.org,
linux-nvme@lists.infradead.org, linux-mmc@vger.kernel.org,
dm-devel@redhat.com, nbd@other.debian.org,
linux-block@vger.kernel.org, linux-kernel@vger.kernel.org,
Luis Chamberlain <mcgrof@kernel.org>
Subject: [PATCH v2 0/6] block: first batch of add_disk() error handling conversions
Date: Fri, 27 Aug 2021 12:04:58 -0700 [thread overview]
Message-ID: <20210827190504.3103362-1-mcgrof@kernel.org> (raw)
This v2 drops two of the scsi patches which Christoph pointed out were
not needed. It also fixes the nvme driver change to account for the
missing put of the ctrl. It also just appends the commits with the
respective reviewed tags. I've also dropped the mmc and dm patches
from this series as that is still pending discussion. I'll roll that
into the my next series after discussion is done.
The only patch which goes without a review tag is the nvme driver change.
These changes go rebased on Jen's latest axboe/for-next. The respective
full queue of my changes can be found on my git branch [0].
[0] https://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux-next.git/log/?h=20210827-for-axboe-add-disk-error-handling-next
Luis Chamberlain (6):
scsi/sd: add error handling support for add_disk()
scsi/sr: add error handling support for add_disk()
nvme: add error handling support for add_disk()
md: add error handling support for add_disk()
loop: add error handling support for add_disk()
nbd: add error handling support for add_disk()
drivers/block/loop.c | 9 ++++++++-
drivers/block/nbd.c | 6 +++++-
drivers/md/md.c | 7 ++++++-
drivers/nvme/host/core.c | 9 ++++++++-
drivers/scsi/sd.c | 6 +++++-
drivers/scsi/sr.c | 5 ++++-
6 files changed, 36 insertions(+), 6 deletions(-)
--
2.30.2
WARNING: multiple messages have this Message-ID (diff)
From: Luis Chamberlain <mcgrof@kernel.org>
To: axboe@kernel.dk, martin.petersen@oracle.com, jejb@linux.ibm.com,
kbusch@kernel.org, sagi@grimberg.me, adrian.hunter@intel.com,
beanhuo@micron.com, ulf.hansson@linaro.org, avri.altman@wdc.com,
swboyd@chromium.org, agk@redhat.com, snitzer@redhat.com,
josef@toxicpanda.com
Cc: hch@infradead.org, hare@suse.de, bvanassche@acm.org,
ming.lei@redhat.com, linux-scsi@vger.kernel.org,
linux-nvme@lists.infradead.org, linux-mmc@vger.kernel.org,
dm-devel@redhat.com, nbd@other.debian.org,
linux-block@vger.kernel.org, linux-kernel@vger.kernel.org,
Luis Chamberlain <mcgrof@kernel.org>
Subject: [PATCH v2 0/6] block: first batch of add_disk() error handling conversions
Date: Fri, 27 Aug 2021 12:04:58 -0700 [thread overview]
Message-ID: <20210827190504.3103362-1-mcgrof@kernel.org> (raw)
This v2 drops two of the scsi patches which Christoph pointed out were
not needed. It also fixes the nvme driver change to account for the
missing put of the ctrl. It also just appends the commits with the
respective reviewed tags. I've also dropped the mmc and dm patches
from this series as that is still pending discussion. I'll roll that
into the my next series after discussion is done.
The only patch which goes without a review tag is the nvme driver change.
These changes go rebased on Jen's latest axboe/for-next. The respective
full queue of my changes can be found on my git branch [0].
[0] https://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux-next.git/log/?h=20210827-for-axboe-add-disk-error-handling-next
Luis Chamberlain (6):
scsi/sd: add error handling support for add_disk()
scsi/sr: add error handling support for add_disk()
nvme: add error handling support for add_disk()
md: add error handling support for add_disk()
loop: add error handling support for add_disk()
nbd: add error handling support for add_disk()
drivers/block/loop.c | 9 ++++++++-
drivers/block/nbd.c | 6 +++++-
drivers/md/md.c | 7 ++++++-
drivers/nvme/host/core.c | 9 ++++++++-
drivers/scsi/sd.c | 6 +++++-
drivers/scsi/sr.c | 5 ++++-
6 files changed, 36 insertions(+), 6 deletions(-)
--
2.30.2
_______________________________________________
Linux-nvme mailing list
Linux-nvme@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-nvme
next reply other threads:[~2021-08-27 19:05 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-08-27 19:04 Luis Chamberlain [this message]
2021-08-27 19:04 ` [PATCH v2 0/6] block: first batch of add_disk() error handling conversions Luis Chamberlain
2021-08-27 19:04 ` Luis Chamberlain
2021-08-27 19:04 ` [dm-devel] [PATCH v2 1/6] scsi/sd: add error handling support for add_disk() Luis Chamberlain
2021-08-27 19:04 ` Luis Chamberlain
2021-08-27 19:04 ` Luis Chamberlain
2021-08-27 19:05 ` [dm-devel] [PATCH v2 2/6] scsi/sr: " Luis Chamberlain
2021-08-27 19:05 ` Luis Chamberlain
2021-08-27 19:05 ` Luis Chamberlain
2021-08-27 19:05 ` [dm-devel] [PATCH v2 3/6] nvme: " Luis Chamberlain
2021-08-27 19:05 ` Luis Chamberlain
2021-08-27 19:05 ` Luis Chamberlain
2021-08-28 7:11 ` [dm-devel] " Christoph Hellwig
2021-08-28 7:11 ` Christoph Hellwig
2021-08-28 7:11 ` Christoph Hellwig
2021-08-27 19:05 ` [dm-devel] [PATCH v2 4/6] md: " Luis Chamberlain
2021-08-27 19:05 ` Luis Chamberlain
2021-08-27 19:05 ` Luis Chamberlain
2021-08-27 19:05 ` [dm-devel] [PATCH v2 5/6] loop: " Luis Chamberlain
2021-08-27 19:05 ` Luis Chamberlain
2021-08-27 19:05 ` Luis Chamberlain
2021-08-27 19:05 ` [dm-devel] [PATCH v2 6/6] nbd: " Luis Chamberlain
2021-08-27 19:05 ` Luis Chamberlain
2021-08-27 19:05 ` Luis Chamberlain
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=20210827190504.3103362-1-mcgrof@kernel.org \
--to=mcgrof@kernel.org \
--cc=adrian.hunter@intel.com \
--cc=agk@redhat.com \
--cc=avri.altman@wdc.com \
--cc=axboe@kernel.dk \
--cc=beanhuo@micron.com \
--cc=bvanassche@acm.org \
--cc=dm-devel@redhat.com \
--cc=hch@infradead.org \
--cc=jejb@linux.ibm.com \
--cc=josef@toxicpanda.com \
--cc=kbusch@kernel.org \
--cc=linux-block@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mmc@vger.kernel.org \
--cc=linux-nvme@lists.infradead.org \
--cc=linux-scsi@vger.kernel.org \
--cc=martin.petersen@oracle.com \
--cc=ming.lei@redhat.com \
--cc=nbd@other.debian.org \
--cc=sagi@grimberg.me \
--cc=snitzer@redhat.com \
--cc=swboyd@chromium.org \
--cc=ulf.hansson@linaro.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.