diff options
author | Hans Wippel <hwippel@linux.ibm.com> | 2018-06-28 19:05:08 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-06-30 13:42:25 +0200 |
commit | 1619f770589a183af56f248de261534b255122de (patch) | |
tree | e26d650e439f5a73e08726c8cb978c15020152fc /net/smc/smc_ism.c | |
parent | net/smc: add base infrastructure for SMC-D and ISM (diff) | |
download | linux-1619f770589a183af56f248de261534b255122de.tar.xz linux-1619f770589a183af56f248de261534b255122de.zip |
net/smc: add pnetid support for SMC-D and ISM
SMC-D relies on PNETIDs to find usable SMC-D/ISM devices for a SMC
connection. This patch adds SMC-D/ISM support to the current PNETID
implementation.
Signed-off-by: Hans Wippel <hwippel@linux.ibm.com>
Signed-off-by: Ursula Braun <ubraun@linux.ibm.com>
Suggested-by: Thomas Richter <tmricht@linux.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/smc/smc_ism.c')
-rw-r--r-- | net/smc/smc_ism.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/smc/smc_ism.c b/net/smc/smc_ism.c index ca1ce42fd49f..f44e4dff244a 100644 --- a/net/smc/smc_ism.c +++ b/net/smc/smc_ism.c @@ -13,6 +13,7 @@ #include "smc.h" #include "smc_core.h" #include "smc_ism.h" +#include "smc_pnet.h" struct smcd_dev_list smcd_dev_list = { .list = LIST_HEAD_INIT(smcd_dev_list.list), @@ -227,6 +228,7 @@ struct smcd_dev *smcd_alloc_dev(struct device *parent, const char *name, device_initialize(&smcd->dev); dev_set_name(&smcd->dev, name); smcd->ops = ops; + smc_pnetid_by_dev_port(parent, 0, smcd->pnetid); spin_lock_init(&smcd->lock); INIT_LIST_HEAD(&smcd->vlan); |