diff options
author | Jon Maloy <jon.maloy@ericsson.com> | 2018-03-15 18:48:52 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-03-18 00:11:46 +0300 |
commit | 64a52b26d5633d6efc35cdf1e0c627cc4189e55a (patch) | |
tree | e5d40c7be6e87953313e10ea698db475b6071725 /net/tipc/name_table.h | |
parent | 928df1880e24bcd47d6359ff86df24db3dfba3c3 (diff) | |
download | linux-64a52b26d5633d6efc35cdf1e0c627cc4189e55a.tar.xz |
tipc: remove zone publication list in name table
As a consequence of the previous commit we nan now eliminate zone scope
related lists in the name table. We start with name_table::publ_list[3],
which can now be replaced with two lists, one for node scope publications
and one for cluster scope publications.
Acked-by: Ying Xue <ying.xue@windriver.com>
Signed-off-by: Jon Maloy <jon.maloy@ericsson.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/tipc/name_table.h')
-rw-r--r-- | net/tipc/name_table.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/net/tipc/name_table.h b/net/tipc/name_table.h index 17652602d5e2..47f72cddfb39 100644 --- a/net/tipc/name_table.h +++ b/net/tipc/name_table.h @@ -88,12 +88,14 @@ struct publication { /** * struct name_table - table containing all existing port name publications * @seq_hlist: name sequence hash lists - * @publ_list: pulication lists + * @node_scope: all local publications with node scope + * @cluster_scope: all local publications with cluster scope * @local_publ_count: number of publications issued by this node */ struct name_table { struct hlist_head seq_hlist[TIPC_NAMETBL_SIZE]; - struct list_head publ_list[TIPC_PUBL_SCOPE_NUM]; + struct list_head node_scope; + struct list_head cluster_scope; u32 local_publ_count; }; |