• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/tipc/

Lines Matching refs:bearer

2  * net/tipc/bearer.h: Include file for TIPC bearer code
50 * @enable_bearer: routine which enables a bearer
51 * @disable_bearer: routine which disables a bearer
52 * @addr2str: routine which converts bearer's address to string form
55 * @priority: default link (and bearer) priority
80 * struct bearer - TIPC bearer information available to internal users
81 * @publ: bearer information available to privileged users
82 * @media: ptr to media structure associated with bearer
83 * @priority: default link priority for bearer
85 * @identity: array index of this bearer within TIPC bearer array
87 * @links: list of non-congested links associated with bearer
88 * @cong_links: list of congested links associated with bearer
89 * @continue_count: # of times bearer has resumed after congestion or blocking
90 * @active: non-zero if bearer structure is represents a bearer
91 * @net_plane: network plane ('A' through 'H') currently associated with bearer
92 * @nodes: indicates which nodes in cluster can be reached through bearer
95 struct bearer {
117 extern struct bearer *tipc_bearers;
123 void tipc_bearer_add_dest(struct bearer *b_ptr, u32 dest);
124 void tipc_bearer_remove_dest(struct bearer *b_ptr, u32 dest);
125 void tipc_bearer_schedule(struct bearer *b_ptr, struct link *l_ptr);
126 struct bearer *tipc_bearer_find_interface(const char *if_name);
127 int tipc_bearer_resolve_congestion(struct bearer *b_ptr, struct link *l_ptr);
130 void tipc_bearer_lock_push(struct bearer *b_ptr);
134 * tipc_bearer_send- sends buffer to destination over bearer
144 * 1) mark the bearer as blocked,
145 * 2) call tipc_continue() once the bearer is able to send again.
151 static inline int tipc_bearer_send(struct bearer *b_ptr, struct sk_buff *buf,
158 * tipc_bearer_congested - determines if bearer is currently congested
161 static inline int tipc_bearer_congested(struct bearer *b_ptr, struct link *l_ptr)