From: swise@opengridcomputing.com (Steve Wise)
Subject: [PATCH v3] nvmetcli: Support inline_data_size port parameter
Date: Mon, 9 Jul 2018 10:00:26 -0700 [thread overview]
Message-ID: <20180711181426.A7B3A2B939@smtp.opengridcomputing.com> (raw)
The port parameter attribute param_inline_data_size allows adjusting
the amount of inline data that can be included in a write IO. Setting
it to < 0 (or not setting it at all) allows the transport to choose a
reasonable default, which will be 0 if that transport does not support
inline. Setting it to 0 disables the transport from using inline_data.
And setting it to > 0 configures that port/transport to use that inline
data size, in bytes, if the transport supports it.
Signed_off_by: Steve Wise <swise at opengridcomputing.com>
---
Changes since v2:
- remove 'param' group from Referal class
Changes since v1:
- remove inline_data_size from the UIReferralNode class
- support older kernels w/o the new parameter
---
nvmet/nvme.py | 2 +-
nvmetcli | 13 +++++++++++++
2 files changed, 14 insertions(+), 1 deletion(-)
diff --git a/nvmet/nvme.py b/nvmet/nvme.py
index 8253ea9264b7..7ab0846bf835 100644
--- a/nvmet/nvme.py
+++ b/nvmet/nvme.py
@@ -609,7 +609,7 @@ class Port(CFSNode):
def __init__(self, portid, mode='any'):
super(Port, self).__init__()
- self.attr_groups = ['addr']
+ self.attr_groups = ['addr', 'param']
self._portid = int(portid)
self._path = "%s/ports/%d" % (self.configfs_dir, self._portid)
self._create_in_cfs(mode)
diff --git a/nvmetcli b/nvmetcli
index 6b102a235450..131d7845262c 100755
--- a/nvmetcli
+++ b/nvmetcli
@@ -374,6 +374,9 @@ class UIPortNode(UINode):
'trsvcid': ('string', 'Transport Service ID (e.g. IP Port)'),
'trtype': ('string', 'Transport Type (e.g. rdma or loop or fc)'),
}
+ ui_desc_param = {
+ 'inline_data_size': ('string', 'Port inline data size in bytes'),
+ }
def __init__(self, parent, cfnode):
UINode.__init__(self, str(cfnode.portid), parent, cfnode)
@@ -387,6 +390,16 @@ class UIPortNode(UINode):
trsvcid = self.cfnode.get_attr("addr", "trsvcid")
if trsvcid != "none":
info.append("trsvcid=%s" % trsvcid)
+
+ '''
+ Support older target driver w/o the inline_data_size parameter
+ '''
+ try:
+ inline_data_size = self.cfnode.get_attr("param", "inline_data_size")
+ except:
+ inline_data_size = "n/a"
+ if inline_data_size != "n/a":
+ info.append("inline_data_size=" + inline_data_size);
enabled = not (not self.cfnode.subsystems and not list(self.cfnode.referrals))
return (", ".join(info), True if enabled else 0)
--
1.8.3.1
next reply other threads:[~2018-07-09 17:00 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-07-09 17:00 Steve Wise [this message]
2018-07-17 13:27 ` [PATCH v3] nvmetcli: Support inline_data_size port parameter Christoph Hellwig
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=20180711181426.A7B3A2B939@smtp.opengridcomputing.com \
--to=swise@opengridcomputing.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 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).