hc
2024-02-20 102a0743326a03cd1a1202ceda21e175b7d3575c
kernel/net/tipc/bearer.h
....@@ -93,7 +93,8 @@
9393 * @raw2addr: convert from raw addr format to media addr format
9494 * @priority: default link (and bearer) priority
9595 * @tolerance: default time (in ms) before declaring link failure
96
- * @window: default window (in packets) before declaring link congestion
96
+ * @min_win: minimum window (in packets) before declaring link congestion
97
+ * @max_win: maximum window (in packets) before declaring link congestion
9798 * @mtu: max packet size bearer can support for media type not dependent on
9899 * underlying device MTU
99100 * @type_id: TIPC media identifier
....@@ -138,12 +139,15 @@
138139 * @pt: packet type for bearer
139140 * @rcu: rcu struct for tipc_bearer
140141 * @priority: default link priority for bearer
141
- * @window: default window size for bearer
142
+ * @min_win: minimum window (in packets) before declaring link congestion
143
+ * @max_win: maximum window (in packets) before declaring link congestion
142144 * @tolerance: default link tolerance for bearer
143145 * @domain: network domain to which links can be established
144146 * @identity: array index of this bearer within TIPC bearer array
145
- * @link_req: ptr to (optional) structure making periodic link setup requests
147
+ * @disc: ptr to link setup request
146148 * @net_plane: network plane ('A' through 'H') currently associated with bearer
149
+ * @up: bearer up flag (bit 0)
150
+ * @refcnt: tipc_bearer reference counter
147151 *
148152 * Note: media-specific code is responsible for initialization of the fields
149153 * indicated below when a bearer is enabled; TIPC's generic bearer code takes