aboutsummaryrefslogtreecommitdiffstats
path: root/net/tipc/node.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/tipc/node.h')
-rw-r--r--net/tipc/node.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/tipc/node.h b/net/tipc/node.h
index 68579c70748b..0657cbf1f5cd 100644
--- a/net/tipc/node.h
+++ b/net/tipc/node.h
@@ -85,13 +85,14 @@ struct tipc_node_bclink {
85 u32 deferred_size; 85 u32 deferred_size;
86 struct sk_buff_head deferdq; 86 struct sk_buff_head deferdq;
87 struct sk_buff *reasm_buf; 87 struct sk_buff *reasm_buf;
88 int inputq_map; 88 struct sk_buff_head namedq;
89 bool recv_permitted; 89 bool recv_permitted;
90}; 90};
91 91
92struct tipc_link_entry { 92struct tipc_link_entry {
93 struct tipc_link *link; 93 struct tipc_link *link;
94 u32 mtu; 94 u32 mtu;
95 struct sk_buff_head inputq;
95 struct tipc_media_addr maddr; 96 struct tipc_media_addr maddr;
96}; 97};
97 98