diff options
| author | Grant Likely <grant.likely@secretlab.ca> | 2010-05-25 02:38:26 -0400 |
|---|---|---|
| committer | Grant Likely <grant.likely@secretlab.ca> | 2010-05-25 02:38:26 -0400 |
| commit | b1e50ebcf24668e57f058deb48b0704b5391ed0f (patch) | |
| tree | 17e1b69b249d0738317b732186340c9dd053f1a1 /net/tipc/link.h | |
| parent | 0c2a2ae32793e3500a15a449612485f5d17dd431 (diff) | |
| parent | 7e125f7b9cbfce4101191b8076d606c517a73066 (diff) | |
Merge remote branch 'origin' into secretlab/next-spi
Diffstat (limited to 'net/tipc/link.h')
| -rw-r--r-- | net/tipc/link.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/net/tipc/link.h b/net/tipc/link.h index 6a51e38ad25c..2e5385c47d30 100644 --- a/net/tipc/link.h +++ b/net/tipc/link.h | |||
| @@ -292,4 +292,39 @@ static inline u32 lesser(u32 left, u32 right) | |||
| 292 | return less_eq(left, right) ? left : right; | 292 | return less_eq(left, right) ? left : right; |
| 293 | } | 293 | } |
| 294 | 294 | ||
| 295 | |||
| 296 | /* | ||
| 297 | * Link status checking routines | ||
| 298 | */ | ||
| 299 | |||
| 300 | static inline int link_working_working(struct link *l_ptr) | ||
| 301 | { | ||
| 302 | return (l_ptr->state == WORKING_WORKING); | ||
| 303 | } | ||
| 304 | |||
| 305 | static inline int link_working_unknown(struct link *l_ptr) | ||
| 306 | { | ||
| 307 | return (l_ptr->state == WORKING_UNKNOWN); | ||
| 308 | } | ||
| 309 | |||
| 310 | static inline int link_reset_unknown(struct link *l_ptr) | ||
| 311 | { | ||
| 312 | return (l_ptr->state == RESET_UNKNOWN); | ||
| 313 | } | ||
| 314 | |||
| 315 | static inline int link_reset_reset(struct link *l_ptr) | ||
| 316 | { | ||
| 317 | return (l_ptr->state == RESET_RESET); | ||
| 318 | } | ||
| 319 | |||
| 320 | static inline int link_blocked(struct link *l_ptr) | ||
| 321 | { | ||
| 322 | return (l_ptr->exp_msg_count || l_ptr->blocked); | ||
| 323 | } | ||
| 324 | |||
| 325 | static inline int link_congested(struct link *l_ptr) | ||
| 326 | { | ||
| 327 | return (l_ptr->out_queue_size >= l_ptr->queue_limit[0]); | ||
| 328 | } | ||
| 329 | |||
| 295 | #endif | 330 | #endif |
