diff options
Diffstat (limited to 'net/tipc/link.h')
-rw-r--r-- | net/tipc/link.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/net/tipc/link.h b/net/tipc/link.h index 8a6c1026644d..424b1dfe436b 100644 --- a/net/tipc/link.h +++ b/net/tipc/link.h | |||
@@ -112,7 +112,6 @@ struct tipc_stats { | |||
112 | * @continuity_interval: link continuity testing interval [in ms] | 112 | * @continuity_interval: link continuity testing interval [in ms] |
113 | * @abort_limit: # of unacknowledged continuity probes needed to reset link | 113 | * @abort_limit: # of unacknowledged continuity probes needed to reset link |
114 | * @state: current state of link FSM | 114 | * @state: current state of link FSM |
115 | * @blocked: indicates if link has been administratively blocked | ||
116 | * @fsm_msg_cnt: # of protocol messages link FSM has sent in current state | 115 | * @fsm_msg_cnt: # of protocol messages link FSM has sent in current state |
117 | * @proto_msg: template for control messages generated by link | 116 | * @proto_msg: template for control messages generated by link |
118 | * @pmsg: convenience pointer to "proto_msg" field | 117 | * @pmsg: convenience pointer to "proto_msg" field |
@@ -162,7 +161,6 @@ struct tipc_link { | |||
162 | u32 continuity_interval; | 161 | u32 continuity_interval; |
163 | u32 abort_limit; | 162 | u32 abort_limit; |
164 | int state; | 163 | int state; |
165 | int blocked; | ||
166 | u32 fsm_msg_cnt; | 164 | u32 fsm_msg_cnt; |
167 | struct { | 165 | struct { |
168 | unchar hdr[INT_H_SIZE]; | 166 | unchar hdr[INT_H_SIZE]; |
@@ -312,11 +310,6 @@ static inline int link_reset_reset(struct tipc_link *l_ptr) | |||
312 | return l_ptr->state == RESET_RESET; | 310 | return l_ptr->state == RESET_RESET; |
313 | } | 311 | } |
314 | 312 | ||
315 | static inline int link_blocked(struct tipc_link *l_ptr) | ||
316 | { | ||
317 | return l_ptr->exp_msg_count || l_ptr->blocked; | ||
318 | } | ||
319 | |||
320 | static inline int link_congested(struct tipc_link *l_ptr) | 313 | static inline int link_congested(struct tipc_link *l_ptr) |
321 | { | 314 | { |
322 | return l_ptr->out_queue_size >= l_ptr->queue_limit[0]; | 315 | return l_ptr->out_queue_size >= l_ptr->queue_limit[0]; |