Searched refs:digipeat (Results 1 – 11 of 11) sorted by relevance
/linux-4.1.27/net/ax25/ |
D | ax25_route.c | 58 kfree(s->digipeat); in ax25_rt_device_down() 64 kfree(s->digipeat); in ax25_rt_device_down() 92 kfree(ax25_rt->digipeat); in ax25_rt_add() 93 ax25_rt->digipeat = NULL; in ax25_rt_add() 95 if ((ax25_rt->digipeat = kmalloc(sizeof(ax25_digi), GFP_ATOMIC)) == NULL) { in ax25_rt_add() 99 ax25_rt->digipeat->lastrepeat = -1; in ax25_rt_add() 100 ax25_rt->digipeat->ndigi = route->digi_count; in ax25_rt_add() 102 ax25_rt->digipeat->repeated[i] = 0; in ax25_rt_add() 103 ax25_rt->digipeat->calls[i] = route->digi_addr[i]; in ax25_rt_add() 120 ax25_rt->digipeat = NULL; in ax25_rt_add() [all …]
|
D | ax25_ip.c | 110 ax25_digi *digipeat = NULL; in ax25_ip_xmit() local 120 digipeat = route->digipeat; in ax25_ip_xmit() 180 &dst_c, digipeat, dev); in ax25_ip_xmit() 198 if (digipeat != NULL) { in ax25_ip_xmit() 199 if ((ourskb = ax25_rt_build_path(skb, src, dst, route->digipeat)) == NULL) { in ax25_ip_xmit()
|
D | ax25_in.c | 383 if (dp.ndigi && !ax25->digipeat && in ax25_rcv() 384 (ax25->digipeat = kmalloc(sizeof(ax25_digi), GFP_ATOMIC)) == NULL) { in ax25_rcv() 393 kfree(ax25->digipeat); in ax25_rcv() 394 ax25->digipeat = NULL; in ax25_rcv() 397 memcpy(ax25->digipeat, &reverse_dp, sizeof(ax25_digi)); in ax25_rcv()
|
D | af_ax25.c | 222 if (s->digipeat == NULL) in ax25_find_cb() 224 if (ax25digicmp(s->digipeat, digi) != 0) in ax25_find_cb() 227 if (s->digipeat != NULL && s->digipeat->ndigi != 0) in ax25_find_cb() 935 if (oax25->digipeat != NULL) { in ax25_make_new() 936 ax25->digipeat = kmemdup(oax25->digipeat, sizeof(ax25_digi), in ax25_make_new() 938 if (ax25->digipeat == NULL) { in ax25_make_new() 1174 kfree(ax25->digipeat); in ax25_connect() 1175 ax25->digipeat = NULL; in ax25_connect() 1243 ax25->digipeat = digi; in ax25_connect() 1412 if (ax25->digipeat != NULL) { in ax25_getname() [all …]
|
D | ax25_out.c | 72 ax25->digipeat = kmemdup(digi, sizeof(*digi), GFP_ATOMIC); in ax25_send_frame() 73 if (ax25->digipeat == NULL) { in ax25_send_frame() 341 headroom = ax25_addr_size(ax25->digipeat); in ax25_transmit_buffer() 359 ax25_addr_build(ptr, &ax25->source_addr, &ax25->dest_addr, ax25->digipeat, type, ax25->modulus); in ax25_transmit_buffer()
|
/linux-4.1.27/net/netrom/ |
D | nr_route.c | 145 nr_neigh->digipeat = NULL; in nr_add_node() 156 nr_neigh->digipeat = kmemdup(ax25_digi, in nr_add_node() 159 if (nr_neigh->digipeat == NULL) { in nr_add_node() 427 nr_neigh->digipeat = NULL; in nr_add_neigh() 438 nr_neigh->digipeat = kmemdup(ax25_digi, sizeof(*ax25_digi), in nr_add_neigh() 440 if (nr_neigh->digipeat == NULL) { in nr_add_neigh() 791 ret = nr_add_node(nr_src, "", &ax25->dest_addr, ax25->digipeat, in nr_route_frame() 854 nr_neigh->digipeat, nr_neigh->dev); in nr_route_frame() 972 if (nr_neigh->digipeat != NULL) { in nr_neigh_show() 973 for (i = 0; i < nr_neigh->digipeat->ndigi; i++) in nr_neigh_show() [all …]
|
/linux-4.1.27/net/rose/ |
D | rose_route.c | 96 rose_neigh->digipeat = NULL; in rose_add_node() 112 rose_neigh->digipeat = in rose_add_node() 114 if (rose_neigh->digipeat == NULL) { in rose_add_node() 120 rose_neigh->digipeat->ndigi = rose_route->ndigis; in rose_add_node() 121 rose_neigh->digipeat->lastrepeat = -1; in rose_add_node() 124 rose_neigh->digipeat->calls[i] = in rose_add_node() 126 rose_neigh->digipeat->repeated[i] = 0; in rose_add_node() 243 kfree(rose_neigh->digipeat); in rose_remove_neigh() 253 kfree(rose_neigh->digipeat); in rose_remove_neigh() 382 sn->digipeat = NULL; in rose_add_loopback_neigh() [all …]
|
D | rose_link.c | 112 neigh->ax25 = ax25_send_frame(skb, 260, rose_call, &neigh->callsign, neigh->digipeat, neigh->dev); in rose_send_frame() 135 neigh->ax25 = ax25_find_cb(rose_call, &neigh->callsign, neigh->digipeat, neigh->dev); in rose_link_up()
|
/linux-4.1.27/include/net/ |
D | netrom.h | 88 ax25_digi *digipeat; member 138 kfree(nr_neigh->digipeat); in nr_neigh_put()
|
D | ax25.h | 190 ax25_digi *digipeat; member 229 ax25_digi *digipeat; member 260 kfree(ax25->digipeat); in ax25_cb_put()
|
D | rose.h | 93 ax25_digi *digipeat; member
|