diff options
author | Ursula Braun <ubraun@linux.ibm.com> | 2019-10-09 10:07:43 +0200 |
---|---|---|
committer | Jakub Kicinski <jakub.kicinski@netronome.com> | 2019-10-10 04:45:44 +0200 |
commit | a2351c5d86d7acf8eef17fba4ac1fc5b305a37c0 (patch) | |
tree | d4c18665dfe7307bba2a462c171a15bf4d67aa55 /include/net/smc.h | |
parent | net: stmmac: dwmac-mediatek: fix wrong delay value issue when resume back (diff) | |
download | linux-a2351c5d86d7acf8eef17fba4ac1fc5b305a37c0.tar.xz linux-a2351c5d86d7acf8eef17fba4ac1fc5b305a37c0.zip |
net/smc: separate SMCD and SMCR link group lists
Currently SMCD and SMCR link groups are maintained in one list.
To facilitate abnormal termination handling they are split into
a separate list for SMCR link groups and separate lists for SMCD
link groups per SMCD device.
Signed-off-by: Ursula Braun <ubraun@linux.ibm.com>
Signed-off-by: Karsten Graul <kgraul@linux.ibm.com>
Signed-off-by: Jakub Kicinski <jakub.kicinski@netronome.com>
Diffstat (limited to 'include/net/smc.h')
-rw-r--r-- | include/net/smc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/net/smc.h b/include/net/smc.h index bd9c0fb3b577..c08e8c415673 100644 --- a/include/net/smc.h +++ b/include/net/smc.h @@ -75,6 +75,7 @@ struct smcd_dev { struct workqueue_struct *event_wq; u8 pnetid[SMC_MAX_PNETID_LEN]; bool pnetid_by_user; + struct list_head lgr_list; }; struct smcd_dev *smcd_alloc_dev(struct device *parent, const char *name, |