From: Bart Van Assche <Bart.VanAssche@sandisk.com>
To: "hch@lst.de" <hch@lst.de>, "axboe@fb.com" <axboe@fb.com>
Cc: "linux-scsi@vger.kernel.org" <linux-scsi@vger.kernel.org>,
"dm-devel@redhat.com" <dm-devel@redhat.com>,
"linux-block@vger.kernel.org" <linux-block@vger.kernel.org>,
"snitzer@redhat.com" <snitzer@redhat.com>
Subject: Re: split scsi passthrough fields out of struct request
Date: Tue, 24 Jan 2017 00:30:03 +0000 [thread overview]
Message-ID: <1485217789.2825.18.camel@sandisk.com> (raw)
In-Reply-To: <1485185361-29786-1-git-send-email-hch@lst.de>
[-- Attachment #1: Type: text/plain, Size: 1072 bytes --]
On Mon, 2017-01-23 at 16:29 +0100, Christoph Hellwig wrote:
> this series splits the support for SCSI passthrough commands from the
> main struct request.
Hello Christoph,
Sorry that I have not yet had the time to review these patches. But I
cloned git://git.infradead.org/users/hch/block.git, checked out the
block-pc-refactor branch, merged it with v4.10-rc5 and installed it on
a development server. Unfortunately a kernel oops occurred during boot
(see also the attached screenshot). gdb translates the crash address
into the following:
$ gdb vmlinux
(gdb) list *('__scsi_execute.isra.19'+0x13c)
0xffffffff814a690c is in __scsi_execute (drivers/scsi/scsi_lib.c:260).
255 memset(buffer + (bufflen - rq->resid_len), 0, rq->resid_len);
256
257 if (resid)
258 *resid = rq->resid_len;
259 if (rq->sense_len)
260 memcpy(sense, rq->sense, SCSI_SENSE_BUFFERSIZE);
261 ret = req->errors;
262 out:
263 blk_put_request(req);
264
Bart.
[-- Attachment #2: scsi-passthrough-fields.png --]
[-- Type: image/png, Size: 105799 bytes --]
prev parent reply other threads:[~2017-01-24 0:30 UTC|newest]
Thread overview: 66+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-01-23 15:29 split scsi passthrough fields out of struct request Christoph Hellwig
2017-01-23 15:29 ` [PATCH 01/16] block: fix elevator init check Christoph Hellwig
2017-01-24 7:02 ` Hannes Reinecke
2017-01-24 7:02 ` Hannes Reinecke
2017-01-24 15:06 ` Jens Axboe
2017-01-24 15:06 ` Jens Axboe
2017-01-24 15:10 ` Christoph Hellwig
2017-01-23 15:29 ` [PATCH 02/16] block: simplify blk_init_allocated_queue Christoph Hellwig
2017-01-24 7:37 ` Hannes Reinecke
2017-01-24 7:37 ` Hannes Reinecke
2017-01-23 15:29 ` [PATCH 03/16] block: allow specifying size for extra command data Christoph Hellwig
2017-01-24 8:10 ` Hannes Reinecke
2017-01-24 8:10 ` Hannes Reinecke
2017-01-23 15:29 ` [PATCH 04/16] dm: remove incomple BLOCK_PC support Christoph Hellwig
2017-01-24 8:22 ` Hannes Reinecke
2017-01-24 8:22 ` Hannes Reinecke
2017-01-23 15:29 ` [PATCH 05/16] dm: always defer request allocation to the owner of the request_queue Christoph Hellwig
2017-01-24 8:29 ` Hannes Reinecke
2017-01-24 8:29 ` Hannes Reinecke
2017-01-24 10:05 ` Mike Snitzer
2017-01-24 14:20 ` Christoph Hellwig
2017-01-24 16:39 ` Mike Snitzer
2017-01-24 19:52 ` Christoph Hellwig
2017-01-26 4:23 ` Junichi Nomura
2017-01-26 4:23 ` Junichi Nomura
2017-01-23 15:29 ` [PATCH 06/16] scsi_dh_rdac: switch to scsi_execute_req_flags() Christoph Hellwig
2017-01-23 15:29 ` [PATCH 07/16] scsi_dh_emc: " Christoph Hellwig
2017-01-23 15:29 ` [PATCH 08/16] scsi_dh_hp_sw: " Christoph Hellwig
2017-01-23 15:29 ` [PATCH 09/16] scsi: remove gfp_flags member in scsi_host_cmd_pool Christoph Hellwig
2017-01-24 8:31 ` Hannes Reinecke
2017-01-24 12:08 ` Johannes Thumshirn
2017-01-24 12:08 ` Johannes Thumshirn
2017-01-23 15:29 ` [PATCH 10/16] scsi: respect unchecked_isa_dma for blk-mq Christoph Hellwig
2017-01-24 11:06 ` Hannes Reinecke
2017-01-24 11:06 ` Hannes Reinecke
2017-01-23 15:29 ` [PATCH 11/16] scsi: remove scsi_cmd_dma_pool Christoph Hellwig
2017-01-24 11:07 ` Hannes Reinecke
2017-01-24 11:07 ` Hannes Reinecke
2017-01-23 15:29 ` [PATCH 12/16] scsi: remove __scsi_alloc_queue Christoph Hellwig
2017-01-24 11:08 ` Hannes Reinecke
2017-01-24 11:08 ` Hannes Reinecke
2017-01-24 11:24 ` Johannes Thumshirn
2017-01-24 11:24 ` Johannes Thumshirn
2017-01-23 15:29 ` [PATCH 13/16] scsi: allocate scsi_cmnd structures as part of struct request Christoph Hellwig
2017-01-24 12:57 ` Hannes Reinecke
2017-01-23 15:29 ` [PATCH 14/16] block/bsg: move queue creation into bsg_setup_queue Christoph Hellwig
2017-01-23 15:29 ` [PATCH 15/16] block: split scsi_request out of struct request Christoph Hellwig
2017-01-24 0:33 ` Bart Van Assche
2017-01-24 0:33 ` Bart Van Assche
2017-01-24 8:09 ` hch
2017-01-24 16:31 ` Bart Van Assche
2017-01-24 16:31 ` Bart Van Assche
2017-01-24 13:21 ` Hannes Reinecke
2017-01-24 13:21 ` Hannes Reinecke
2017-01-26 19:12 ` Bart Van Assche
2017-01-26 19:12 ` Bart Van Assche
2017-01-26 19:37 ` Christoph Hellwig
2017-01-26 19:37 ` Christoph Hellwig
2017-01-26 19:42 ` Jens Axboe
2017-01-26 19:42 ` Jens Axboe
2017-01-23 15:29 ` [PATCH 16/16] block: don't assign cmd_flags in __blk_rq_prep_clone Christoph Hellwig
2017-01-24 13:22 ` Hannes Reinecke
2017-01-24 13:22 ` Hannes Reinecke
2017-01-23 15:39 ` split scsi passthrough fields out of struct request Jens Axboe
2017-01-23 15:46 ` Christoph Hellwig
2017-01-24 0:30 ` Bart Van Assche [this message]
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=1485217789.2825.18.camel@sandisk.com \
--to=bart.vanassche@sandisk.com \
--cc=axboe@fb.com \
--cc=dm-devel@redhat.com \
--cc=hch@lst.de \
--cc=linux-block@vger.kernel.org \
--cc=linux-scsi@vger.kernel.org \
--cc=snitzer@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.