* [PATCH] Support inline_data_size port parameter
@ 2018-07-02 15:25 Steve Wise
2018-07-02 15:31 ` Steve Wise
2018-07-03 9:04 ` Sagi Grimberg
0 siblings, 2 replies; 4+ messages in thread
From: Steve Wise @ 2018-07-02 15:25 UTC (permalink / 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>
---
nvmet/nvme.py | 4 ++--
nvmetcli | 7 +++++++
2 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/nvmet/nvme.py b/nvmet/nvme.py
index 8253ea9264b7..1aac7bc3fea3 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)
@@ -710,7 +710,7 @@ class Referral(CFSNode):
if not isinstance(port, Port):
raise CFSError("Invalid parent class")
- self.attr_groups = ['addr']
+ self.attr_groups = ['addr', 'param']
self.port = port
self._name = name
self._path = "%s/referrals/%s" % (self.port.path, self._name)
diff --git a/nvmetcli b/nvmetcli
index 6b102a235450..16528ace61ea 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,7 @@ class UIPortNode(UINode):
trsvcid = self.cfnode.get_attr("addr", "trsvcid")
if trsvcid != "none":
info.append("trsvcid=%s" % trsvcid)
+ info.append("inline_data_size=" + self.cfnode.get_attr("param", "inline_data_size"))
enabled = not (not self.cfnode.subsystems and not list(self.cfnode.referrals))
return (", ".join(info), True if enabled else 0)
@@ -493,6 +497,9 @@ class UIReferralNode(UINode):
'trtype': ('string', 'Transport Type (e.g. rdma or loop or fc)'),
'portid': ('number', 'Port identifier'),
}
+ ui_desc_param = {
+ 'inline_data_size': ('string', 'Port inline data size in bytes'),
+ }
def __init__(self, parent, cfnode):
UINode.__init__(self, cfnode.name, parent, cfnode)
--
1.8.3.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH] Support inline_data_size port parameter
2018-07-02 15:25 [PATCH] Support inline_data_size port parameter Steve Wise
@ 2018-07-02 15:31 ` Steve Wise
2018-07-03 9:04 ` Sagi Grimberg
1 sibling, 0 replies; 4+ messages in thread
From: Steve Wise @ 2018-07-02 15:31 UTC (permalink / raw)
Oops: forgot to add "nvmetcli" in the subject.
Steve.
On 7/2/2018 10:25 AM, Steve Wise wrote:
> 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>
> ---
> nvmet/nvme.py | 4 ++--
> nvmetcli | 7 +++++++
> 2 files changed, 9 insertions(+), 2 deletions(-)
>
> diff --git a/nvmet/nvme.py b/nvmet/nvme.py
> index 8253ea9264b7..1aac7bc3fea3 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)
> @@ -710,7 +710,7 @@ class Referral(CFSNode):
> if not isinstance(port, Port):
> raise CFSError("Invalid parent class")
>
> - self.attr_groups = ['addr']
> + self.attr_groups = ['addr', 'param']
> self.port = port
> self._name = name
> self._path = "%s/referrals/%s" % (self.port.path, self._name)
> diff --git a/nvmetcli b/nvmetcli
> index 6b102a235450..16528ace61ea 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,7 @@ class UIPortNode(UINode):
> trsvcid = self.cfnode.get_attr("addr", "trsvcid")
> if trsvcid != "none":
> info.append("trsvcid=%s" % trsvcid)
> + info.append("inline_data_size=" + self.cfnode.get_attr("param", "inline_data_size"))
> enabled = not (not self.cfnode.subsystems and not list(self.cfnode.referrals))
> return (", ".join(info), True if enabled else 0)
>
> @@ -493,6 +497,9 @@ class UIReferralNode(UINode):
> 'trtype': ('string', 'Transport Type (e.g. rdma or loop or fc)'),
> 'portid': ('number', 'Port identifier'),
> }
> + ui_desc_param = {
> + 'inline_data_size': ('string', 'Port inline data size in bytes'),
> + }
>
> def __init__(self, parent, cfnode):
> UINode.__init__(self, cfnode.name, parent, cfnode)
---
This email has been checked for viruses by Avast antivirus software.
https://www.avast.com/antivirus
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH] Support inline_data_size port parameter
2018-07-02 15:25 [PATCH] Support inline_data_size port parameter Steve Wise
2018-07-02 15:31 ` Steve Wise
@ 2018-07-03 9:04 ` Sagi Grimberg
2018-07-03 14:09 ` Steve Wise
1 sibling, 1 reply; 4+ messages in thread
From: Sagi Grimberg @ 2018-07-03 9:04 UTC (permalink / raw)
> @@ -493,6 +497,9 @@ class UIReferralNode(UINode):
> 'trtype': ('string', 'Transport Type (e.g. rdma or loop or fc)'),
> 'portid': ('number', 'Port identifier'),
> }
> + ui_desc_param = {
> + 'inline_data_size': ('string', 'Port inline data size in bytes'),
> + }
Umm, should a referral node have this?
Also, would this work with kernels that don't have it yet?
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH] Support inline_data_size port parameter
2018-07-03 9:04 ` Sagi Grimberg
@ 2018-07-03 14:09 ` Steve Wise
0 siblings, 0 replies; 4+ messages in thread
From: Steve Wise @ 2018-07-03 14:09 UTC (permalink / raw)
On 7/3/2018 4:04 AM, Sagi Grimberg wrote:
>
>> @@ -493,6 +497,9 @@ class UIReferralNode(UINode):
>> ????????? 'trtype': ('string', 'Transport Type (e.g. rdma or loop or
>> fc)'),
>> ????????? 'portid': ('number', 'Port identifier'),
>> ????? }
>> +??? ui_desc_param = {
>> +??????? 'inline_data_size': ('string', 'Port inline data size in
>> bytes'),
>> +??? }
>
> Umm, should a referral node have this?
>
I didn't know what a referral node is. :)? I'll remove it.
> Also, would this work with kernels that don't have it yet?
Yea, it doesn't work.? I'll fix that.?? How should it deal with that?
---
This email has been checked for viruses by Avast antivirus software.
https://www.avast.com/antivirus
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2018-07-03 14:09 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-02 15:25 [PATCH] Support inline_data_size port parameter Steve Wise
2018-07-02 15:31 ` Steve Wise
2018-07-03 9:04 ` Sagi Grimberg
2018-07-03 14:09 ` Steve Wise
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.