From: Jeff Moyer <jmoyer@redhat.com>
To: Joe Lawrence <joe.lawrence@stratus.com>
Cc: <linux-kernel@vger.kernel.org>, Jens Axboe <axboe@kernel.dk>
Subject: Re: [PATCH 2/2] block,scsi: convert and handle ERR_PTR from blk_get_request
Date: Tue, 03 Jun 2014 16:07:01 -0400 [thread overview]
Message-ID: <x49mwdtvjtm.fsf@segfault.boston.devel.redhat.com> (raw)
In-Reply-To: <1401396529-17275-3-git-send-email-joe.lawrence@stratus.com> (Joe Lawrence's message of "Thu, 29 May 2014 16:48:49 -0400")
Joe Lawrence <joe.lawrence@stratus.com> writes:
> diff --git a/block/bsg.c b/block/bsg.c
> index 420a5a9..2b1c322 100644
> --- a/block/bsg.c
> +++ b/block/bsg.c
> @@ -271,8 +271,8 @@ bsg_map_hdr(struct bsg_device *bd, struct sg_io_v4 *hdr, fmode_t has_write_perm,
> * map scatter-gather elements separately and string them to request
> */
> rq = blk_get_request(q, rw, GFP_KERNEL);
> - if (!rq)
> - return ERR_PTR(-ENOMEM);
> + if (IS_ERR(rq))
> + return rq;
> ret = blk_fill_sgv4_hdr_rq(q, rq, hdr, bd, has_write_perm);
> if (ret)
> goto out;
> @@ -284,8 +284,8 @@ bsg_map_hdr(struct bsg_device *bd, struct sg_io_v4 *hdr, fmode_t has_write_perm,
> }
>
> next_rq = blk_get_request(q, READ, GFP_KERNEL);
> - if (!next_rq) {
> - ret = -ENOMEM;
> + if (IS_ERR(next_rq)) {
> + ret = PTR_ERR(rq);
ITYM ret = PTR_ERR(next_rq), right?
> diff --git a/drivers/scsi/device_handler/scsi_dh_hp_sw.c b/drivers/scsi/device_handler/scsi_dh_hp_sw.c
> index 084062b..1cf4019 100644
> --- a/drivers/scsi/device_handler/scsi_dh_hp_sw.c
> +++ b/drivers/scsi/device_handler/scsi_dh_hp_sw.c
> @@ -117,7 +117,7 @@ static int hp_sw_tur(struct scsi_device *sdev, struct hp_sw_dh_data *h)
>
> retry:
> req = blk_get_request(sdev->request_queue, WRITE, GFP_NOIO);
> - if (!req)
> + if (IS_ERR(req))
> return SCSI_DH_RES_TEMP_UNAVAIL;
>
Don't we have an opportunity here to differentiate between enomem and
eio? I have no idea what the right SCSI_DH error would be, I'm just
asking the question.
> req->cmd_type = REQ_TYPE_BLOCK_PC;
> @@ -247,7 +247,7 @@ static int hp_sw_start_stop(struct hp_sw_dh_data *h)
> struct request *req;
>
> req = blk_get_request(h->sdev->request_queue, WRITE, GFP_ATOMIC);
> - if (!req)
> + if (IS_ERR(req))
> return SCSI_DH_RES_TEMP_UNAVAIL;
Same goes here.
Cheers,
Jeff
next prev parent reply other threads:[~2014-06-03 20:46 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-05-29 20:48 [PATCH 0/2] block,scsi: fixup blk_get_request dead queue scenarios Joe Lawrence
2014-05-29 20:48 ` [PATCH 1/2] block,scsi: verify return pointer from blk_get_request Joe Lawrence
2014-06-03 19:36 ` Jeff Moyer
2014-05-29 20:48 ` [PATCH 2/2] block,scsi: convert and handle ERR_PTR " Joe Lawrence
2014-06-03 19:45 ` Jeff Moyer
2014-06-03 20:21 ` Joe Lawrence
2014-06-03 20:07 ` Jeff Moyer [this message]
2014-06-03 21:26 ` Joe Lawrence
2014-06-04 18:07 ` Jeff Moyer
2014-06-17 10:33 ` Christoph Hellwig
2014-06-17 14:25 ` Joe Lawrence
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=x49mwdtvjtm.fsf@segfault.boston.devel.redhat.com \
--to=jmoyer@redhat.com \
--cc=axboe@kernel.dk \
--cc=joe.lawrence@stratus.com \
--cc=linux-kernel@vger.kernel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®