mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-23 23:32:14 +00:00
tipc: eliminate link's reference to owner node
With the recent commit series, we have established a one-way dependency between the link aggregation (struct tipc_node) instances and their pertaining tipc_link instances. This has enabled quite significant code and structure simplifications. In this commit, we eliminate the field 'owner', which points to an instance of struct tipc_node, from struct tipc_link, and replace it with a pointer to struct net, which is the only external reference now needed by a link instance. Signed-off-by: Jon Maloy <jon.maloy@ericsson.com> Reviewed-by: Ying Xue <ying.xue@windriver.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
7214bcf875
commit
c72fa872a2
4 changed files with 29 additions and 22 deletions
|
@ -1226,7 +1226,7 @@ int tipc_bcast_init(struct net *net)
|
|||
spin_lock_init(&tipc_net(net)->bclock);
|
||||
bb->node.net = net;
|
||||
|
||||
if (!tipc_link_bc_create(&bb->node, 0, 0,
|
||||
if (!tipc_link_bc_create(net, 0, 0,
|
||||
U16_MAX,
|
||||
BCLINK_WIN_DEFAULT,
|
||||
0,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue