From: David Laight <[email protected]>
To: "[email protected]" <[email protected]>,
"[email protected]" <[email protected]>,
"[email protected]" <[email protected]>,
Jens Axboe <[email protected]>,
"David S. Miller" <[email protected]>,
Al Viro <[email protected]>,
linux-fsdevel <[email protected]>
Subject: [PATCH 5/9 next] scsi: Use iovec_import() instead of import_iovec().
Date: Tue, 15 Sep 2020 14:55:24 +0000 [thread overview]
Message-ID: <[email protected]> (raw)
iovec_import() has a safer calling convention than import_iovec().
Signed-off-by: David Laight <[email protected]>
---
block/scsi_ioctl.c | 14 ++++++++------
drivers/scsi/sg.c | 14 +++++++-------
2 files changed, 15 insertions(+), 13 deletions(-)
diff --git a/block/scsi_ioctl.c b/block/scsi_ioctl.c
index ef722f04f88a..0343918a84d3 100644
--- a/block/scsi_ioctl.c
+++ b/block/scsi_ioctl.c
@@ -331,20 +331,22 @@ static int sg_io(struct request_queue *q, struct gendisk *bd_disk,
ret = 0;
if (hdr->iovec_count) {
struct iov_iter i;
- struct iovec *iov = NULL;
+ struct iovec *iov;
#ifdef CONFIG_COMPAT
if (in_compat_syscall())
- ret = compat_import_iovec(rq_data_dir(rq),
+ iov = compat_iovec_import(rq_data_dir(rq),
hdr->dxferp, hdr->iovec_count,
- 0, &iov, &i);
+ NULL, &i);
else
#endif
- ret = import_iovec(rq_data_dir(rq),
+ iov = iovec_import(rq_data_dir(rq),
hdr->dxferp, hdr->iovec_count,
- 0, &iov, &i);
- if (ret < 0)
+ NULL, &i);
+ if (IS_ERR(iov)) {
+ ret = PTR_ERR(iov);
goto out_free_cdb;
+ }
/* SG_IO howto says that the shorter of the two wins */
iov_iter_truncate(&i, hdr->dxfer_len);
diff --git a/drivers/scsi/sg.c b/drivers/scsi/sg.c
index 20472aaaf630..1dbc0a74add5 100644
--- a/drivers/scsi/sg.c
+++ b/drivers/scsi/sg.c
@@ -1817,19 +1817,19 @@ sg_start_req(Sg_request *srp, unsigned char *cmd)
}
if (iov_count) {
- struct iovec *iov = NULL;
+ struct iovec *iov;
struct iov_iter i;
#ifdef CONFIG_COMPAT
if (in_compat_syscall())
- res = compat_import_iovec(rw, hp->dxferp, iov_count,
- 0, &iov, &i);
+ iov = compat_iovec_import(rw, hp->dxferp, iov_count,
+ NULL, &i);
else
#endif
- res = import_iovec(rw, hp->dxferp, iov_count,
- 0, &iov, &i);
- if (res < 0)
- return res;
+ iov = iovec_import(rw, hp->dxferp, iov_count,
+ NULL, &i);
+ if (IS_ERR(iov))
+ return PTR_ERR(iov);
iov_iter_truncate(&i, hp->dxfer_len);
if (!iov_iter_count(&i)) {
--
2.25.1
-
Registered Address Lakeside, Bramley Road, Mount Farm, Milton Keynes, MK1 1PT, UK
Registration No: 1397386 (Wales)
next reply other threads:[~2020-09-15 23:03 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-09-15 14:55 David Laight [this message]
2020-09-21 14:22 ` [PATCH 5/9 next] scsi: Use iovec_import() instead of import_iovec() Christoph Hellwig
2020-09-21 14:50 ` David Laight
2021-01-08 11:13 ` David Laight
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 \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
/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