summaryrefslogtreecommitdiffstats
path: root/user_channel/channel_layer.cpp
diff options
context:
space:
mode:
authorVernon Mauery <vernon.mauery@linux.intel.com>2018-11-28 11:02:43 -0800
committerVernon Mauery <vernon.mauery@linux.intel.com>2019-01-11 16:59:29 +0000
commit583171207c4f9a091abe3f867cc415e7f9aa514b (patch)
tree66b0b2749541d4fea840ee00a684c585e362a678 /user_channel/channel_layer.cpp
parent54012504ba816fd0659b497a3c7e1c50f7c0f2d7 (diff)
downloadphosphor-host-ipmid-583171207c4f9a091abe3f867cc415e7f9aa514b.tar.gz
phosphor-host-ipmid-583171207c4f9a091abe3f867cc415e7f9aa514b.zip
ipmid: channel: add max transfer size property
Each channel can have a different maximum transfer size. This should be exposed so that it is easier to tell how many bytes it is possible to send or receive on a given channel. Change-Id: Ie277eb7a802edc1deeefe201a7560d371920f519 Signed-off-by: Vernon Mauery <vernon.mauery@linux.intel.com>
Diffstat (limited to 'user_channel/channel_layer.cpp')
-rw-r--r--user_channel/channel_layer.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/user_channel/channel_layer.cpp b/user_channel/channel_layer.cpp
index d173208..4cab58f 100644
--- a/user_channel/channel_layer.cpp
+++ b/user_channel/channel_layer.cpp
@@ -79,6 +79,11 @@ int getChannelActiveSessions(const uint8_t chNum)
return getChannelConfigObject().getChannelActiveSessions(chNum);
}
+size_t getChannelMaxTransferSize(uint8_t chNum)
+{
+ return getChannelConfigObject().getChannelMaxTransferSize(chNum);
+}
+
ipmi_ret_t ipmiChannelInit()
{
getChannelConfigObject();
OpenPOWER on IntegriCloud