From: Tom Yan <tom.ty89@gmail.com>
To: qemu-block@nongnu.org, kwolf@redhat.com, mreitz@redhat.com,
qemu-devel@nongnu.org
Cc: Tom Yan <tom.ty89@gmail.com>
Subject: [PATCH v4 2/2] file-posix: add sg_get_max_segments that actually works with sg
Date: Fri, 4 Sep 2020 10:09:07 +0800 [thread overview]
Message-ID: <20200904020907.241550-2-tom.ty89@gmail.com> (raw)
In-Reply-To: <20200904020907.241550-1-tom.ty89@gmail.com>
sg devices have different major/minor than their corresponding
block devices. Using sysfs to get max segments never really worked
for them.
Fortunately the sg driver provides an ioctl to get sg_tablesize,
which is apparently equivalent to max segments.
Signed-off-by: Tom Yan <tom.ty89@gmail.com>
---
block/file-posix.c | 17 ++++++++++++++++-
1 file changed, 16 insertions(+), 1 deletion(-)
diff --git a/block/file-posix.c b/block/file-posix.c
index 411a23cf99..9e37594145 100644
--- a/block/file-posix.c
+++ b/block/file-posix.c
@@ -1178,6 +1178,21 @@ static int sg_get_max_transfer_length(int fd)
#endif
}
+static int sg_get_max_segments(int fd)
+{
+#ifdef SG_GET_SG_TABLESIZE
+ long max_segments = 0;
+
+ if (ioctl(fd, SG_GET_SG_TABLESIZE, &max_segments) == 0) {
+ return max_segments;
+ } else {
+ return -errno;
+ }
+#else
+ return -ENOSYS;
+#endif
+}
+
static int get_max_transfer_length(int fd)
{
#if defined(BLKSECTGET) && defined(BLKSSZGET)
@@ -1268,7 +1283,7 @@ static void hdev_refresh_limits(BlockDriverState *bs, Error **errp)
bs->bl.max_transfer = pow2floor(ret);
}
- ret = get_max_segments(s->fd);
+ ret = bs->sg ? sg_get_max_segments(s->fd) : get_max_segments(s->fd);
if (ret > 0) {
bs->bl.max_transfer = MIN_NON_ZERO(bs->bl.max_transfer,
ret * qemu_real_host_page_size);
--
2.28.0
next prev parent reply other threads:[~2020-09-04 2:10 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-09-04 2:09 [PATCH v4 1/2] file-posix: split hdev_refresh_limits from raw_refresh_limits Tom Yan
2020-09-04 2:09 ` Tom Yan [this message]
2020-09-06 10:58 ` [PATCH v4 2/2] file-posix: add sg_get_max_segments that actually works with sg Tom Yan
2020-09-06 11:04 ` Tom Yan
2020-09-06 12:53 ` Maxim Levitsky
2020-09-06 15:26 ` Tom Yan
2020-09-06 17:05 ` Maxim Levitsky
2020-09-06 19:50 ` Dmitry Fomichev
2020-09-07 1:29 ` Tom Yan
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=20200904020907.241550-2-tom.ty89@gmail.com \
--to=tom.ty89@gmail.com \
--cc=kwolf@redhat.com \
--cc=mreitz@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.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;
as well as URLs for NNTP newsgroup(s).