Searched refs:n_ptr (Results 1 - 11 of 11) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/tipc/
H A Dnode.c49 void node_print(struct print_buf *buf, struct tipc_node *n_ptr, char *str);
50 static void node_lost_contact(struct tipc_node *n_ptr);
51 static void node_established_contact(struct tipc_node *n_ptr);
72 struct tipc_node *n_ptr; local
77 for (n_ptr = tipc_nodes; n_ptr; n_ptr = n_ptr->next) {
78 if (addr < n_ptr->addr)
80 if (addr == n_ptr
123 tipc_node_delete(struct tipc_node *n_ptr) argument
140 tipc_node_link_up(struct tipc_node *n_ptr, struct link *l_ptr) argument
174 node_select_active_links(struct tipc_node *n_ptr) argument
202 tipc_node_link_down(struct tipc_node *n_ptr, struct link *l_ptr) argument
229 tipc_node_has_active_links(struct tipc_node *n_ptr) argument
235 tipc_node_has_redundant_links(struct tipc_node *n_ptr) argument
240 tipc_node_has_active_routes(struct tipc_node *n_ptr) argument
245 tipc_node_is_up(struct tipc_node *n_ptr) argument
252 struct tipc_node *n_ptr = tipc_node_find(l_ptr->addr); local
279 tipc_node_detach_link(struct tipc_node *n_ptr, struct link *l_ptr) argument
332 node_established_contact(struct tipc_node *n_ptr) argument
378 node_lost_contact(struct tipc_node *n_ptr) argument
462 struct tipc_node *n_ptr; local
507 tipc_node_select_router(struct tipc_node *n_ptr, u32 ref) argument
545 tipc_node_add_router(struct tipc_node *n_ptr, u32 router) argument
556 tipc_node_remove_router(struct tipc_node *n_ptr, u32 router) argument
576 struct tipc_node *n_ptr; local
594 struct tipc_node *n_ptr; local
646 struct tipc_node *n_ptr; local
[all...]
H A Dnode.h101 void tipc_node_delete(struct tipc_node *n_ptr);
103 void tipc_node_detach_link(struct tipc_node *n_ptr, struct link *l_ptr);
104 void tipc_node_link_down(struct tipc_node *n_ptr, struct link *l_ptr);
105 void tipc_node_link_up(struct tipc_node *n_ptr, struct link *l_ptr);
106 int tipc_node_has_active_links(struct tipc_node *n_ptr);
107 int tipc_node_has_redundant_links(struct tipc_node *n_ptr);
108 u32 tipc_node_select_router(struct tipc_node *n_ptr, u32 ref);
110 int tipc_node_is_up(struct tipc_node *n_ptr);
111 void tipc_node_add_router(struct tipc_node *n_ptr, u32 router);
112 void tipc_node_remove_router(struct tipc_node *n_ptr, u3
136 tipc_node_lock(struct tipc_node *n_ptr) argument
141 tipc_node_unlock(struct tipc_node *n_ptr) argument
[all...]
H A Dcluster.c118 struct tipc_node *n_ptr; local
124 n_ptr = c_ptr->nodes[n_num];
125 if (n_ptr && tipc_node_has_active_links(n_ptr))
126 return n_ptr->addr;
129 n_ptr = c_ptr->nodes[n_num];
130 if (n_ptr && tipc_node_has_active_links(n_ptr))
131 return n_ptr->addr;
136 void tipc_cltr_attach_node(struct cluster *c_ptr, struct tipc_node *n_ptr) argument
382 struct tipc_node *n_ptr; local
502 struct tipc_node *n_ptr; local
537 struct tipc_node *n_ptr; local
[all...]
H A Dzone.c117 struct tipc_node *n_ptr; local
125 n_ptr = tipc_cltr_select_node(c_ptr, ref);
126 if (n_ptr)
127 return n_ptr;
134 n_ptr = tipc_cltr_select_node(c_ptr, ref);
135 if (n_ptr)
136 return n_ptr;
H A Dbcast.c152 static void bclink_set_gap(struct tipc_node *n_ptr) argument
154 struct sk_buff *buf = n_ptr->bclink.deferred_head;
156 n_ptr->bclink.gap_after = n_ptr->bclink.gap_to =
157 mod(n_ptr->bclink.last_in);
159 n_ptr->bclink.gap_to = mod(buf_seqno(buf) - 1);
199 * @n_ptr: node that sent acknowledgement info
205 void tipc_bclink_acknowledge(struct tipc_node *n_ptr, u32 acked) argument
211 if (less_eq(acked, n_ptr->bclink.acked))
219 while (crs && less_eq(buf_seqno(crs), n_ptr
253 bclink_send_ack(struct tipc_node *n_ptr) argument
267 bclink_send_nack(struct tipc_node *n_ptr) argument
311 tipc_bclink_check_gap(struct tipc_node *n_ptr, u32 last_sent) argument
331 struct tipc_node *n_ptr = tipc_node_find(dest); local
541 tipc_bclink_acks_missing(struct tipc_node *n_ptr) argument
[all...]
H A Dbcast.h95 void tipc_bclink_acknowledge(struct tipc_node *n_ptr, u32 acked);
99 u32 tipc_bclink_acks_missing(struct tipc_node *n_ptr);
100 void tipc_bclink_check_gap(struct tipc_node *n_ptr, u32 seqno);
H A Ddiscover.c178 struct tipc_node *n_ptr = tipc_node_find(orig); local
182 if (n_ptr == NULL) {
183 n_ptr = tipc_node_create(orig);
184 if (!n_ptr)
187 spin_lock_bh(&n_ptr->lock);
188 link = n_ptr->links[b_ptr->identity];
193 spin_unlock_bh(&n_ptr->lock);
201 spin_unlock_bh(&n_ptr->lock);
210 spin_unlock_bh(&n_ptr->lock);
H A Dlink.c1071 struct tipc_node *n_ptr; local
1075 n_ptr = tipc_node_select(dest, selector);
1076 if (n_ptr) {
1077 tipc_node_lock(n_ptr);
1078 l_ptr = n_ptr->active_links[selector & 1];
1087 tipc_node_unlock(n_ptr);
1142 struct tipc_node *n_ptr; local
1151 n_ptr = tipc_node_select(destnode, selector);
1152 if (likely(n_ptr)) {
1153 tipc_node_lock(n_ptr);
1552 struct tipc_node *n_ptr; local
1598 struct tipc_node *n_ptr; local
1760 struct tipc_node *n_ptr; local
3138 struct tipc_node *n_ptr; local
[all...]
H A Dcluster.h74 void tipc_cltr_attach_node(struct cluster *c_ptr, struct tipc_node *n_ptr);
H A Dbearer.c616 struct tipc_node *n_ptr = l_ptr->owner; local
618 spin_lock_bh(&n_ptr->lock);
620 spin_unlock_bh(&n_ptr->lock);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/libexif-0.6.19/libexif/
H A Dexif-data.c514 unsigned int j, n_ptr = 0, n_thumb = 0; local
540 n_ptr++;
544 n_ptr++;
553 n_ptr++;
562 ts = *ds + (2 + (ifd->count + n_ptr + n_thumb) * 12 + 4);
573 (ExifShort) (ifd->count + n_ptr + n_thumb));
702 qsort (*d + 6 + offset - (ifd->count + n_ptr + n_thumb) * 12,
703 (ifd->count + n_ptr + n_thumb), 12,

Completed in 75 milliseconds