Lines Matching refs:u32
72 u32 sent_info; /* used in counting # sent packets */
73 u32 recv_info; /* used in counting # recv'd packets */
74 u32 sent_states;
75 u32 recv_states;
76 u32 sent_probes;
77 u32 recv_probes;
78 u32 sent_nacks;
79 u32 recv_nacks;
80 u32 sent_acks;
81 u32 sent_bundled;
82 u32 sent_bundles;
83 u32 recv_bundled;
84 u32 recv_bundles;
85 u32 retransmitted;
86 u32 sent_fragmented;
87 u32 sent_fragments;
88 u32 recv_fragmented;
89 u32 recv_fragments;
90 u32 link_congs; /* # port sends blocked by congestion */
91 u32 deferred_recv;
92 u32 duplicates;
93 u32 max_queue_sz; /* send queue size high water mark */
94 u32 accu_queue_sz; /* used for send queue size profiling */
95 u32 queue_sz_counts; /* used for send queue size profiling */
96 u32 msg_length_counts; /* used for message length profiling */
97 u32 msg_lengths_total; /* used for message length profiling */
98 u32 msg_length_profile[7]; /* used for msg. length profiling */
145 u32 addr;
154 u32 checkpoint;
155 u32 peer_session;
156 u32 peer_bearer_id;
157 u32 bearer_id;
158 u32 tolerance;
160 u32 abort_limit;
162 u32 fsm_msg_cnt;
168 u32 priority;
188 u32 next_out_no;
189 u32 window;
190 u32 last_retransmitted;
191 u32 stale_count;
194 u32 next_in_no;
195 u32 rcv_unacked;
227 int tipc_link_xmit_skb(struct net *net, struct sk_buff *skb, u32 dest,
228 u32 selector);
229 int tipc_link_xmit(struct net *net, struct sk_buff_head *list, u32 dest,
230 u32 selector);
233 void tipc_link_proto_xmit(struct tipc_link *l_ptr, u32 msg_typ, int prob,
234 u32 gap, u32 tolerance, u32 priority);
236 u32 tipc_link_defer_pkt(struct sk_buff_head *list, struct sk_buff *buf);
237 void tipc_link_set_queue_limits(struct tipc_link *l_ptr, u32 window);
239 struct sk_buff *start, u32 retransmits);
253 static inline u32 buf_seqno(struct sk_buff *buf) in buf_seqno()
258 static inline u32 mod(u32 x) in mod()
263 static inline int less_eq(u32 left, u32 right) in less_eq()
268 static inline int more(u32 left, u32 right) in more()
273 static inline int less(u32 left, u32 right) in less()
278 static inline u32 lesser(u32 left, u32 right) in lesser()
283 static inline u32 link_own_addr(struct tipc_link *l) in link_own_addr()